/* --- Variables & Reset --- */
:root {
    --primary: #7A2BFF;
    --primary-dark: #5e1ec9;
    --secondary: #F3E8FF; /* Light Lavender */
    --text-dark: #2D1B4E;
    --text-light: #666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #7A2BFF 0%, #9B6BFF 100%);
    --shadow: 0 4px 20px rgba(122, 43, 255, 0.1);
    --radius: 16px;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: var(--font-stack);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* --- Utilities --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--secondary);
}

.text-left { text-align: left; }
.mt-2 { margin-top: 1rem; }

/* --- Typography --- */
h1, h2, h3 {
    font-weight: 700;
    color: var(--text-dark);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 43, 255, 0.25);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 10px;
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.sub-logo {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-nav {
    background: #25D366; /* WA Color */
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 100px 0 120px;
    background-color: var(--secondary);
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-pill {
    background: rgba(122, 43, 255, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Decorative Shape */
.hero-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    border-radius: 100% 100% 0 0;
    transform: scaleX(1.5);
}

/* --- Grids --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Cards --- */
.card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.promo-card {
    border: 2px solid var(--primary);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.promo-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF4757;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-bottom-left-radius: 10px;
    font-weight: bold;
}

/* --- Pricelist Table --- */
.table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
}

.pricelist-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.pricelist-table th, .pricelist-table td {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.pricelist-table th {
    color: var(--primary);
    font-weight: 700;
}

.pricelist-table td:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

/* --- FAQ --- */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none; /* Hide default triangle */
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 20px 20px;
    color: var(--text-light);
    border-top: 1px solid #f0f0f0;
    margin-top: 0;
    padding-top: 15px;
}

/* --- Footer --- */
footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

footer a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    color: var(--primary);
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* --- Floating WA --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    z-index: 999;
    transition: 0.3s;
}

.floating-wa:hover {
    transform: scale(1.05);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .floating-wa span {
        display: none; /* Only show icon on mobile to save space */
    }
    
    .floating-wa {
        padding: 12px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}
