/* ==========================================================================
   LELUXE KIDS CATANDUVA - BRAND & LUXURY CSS DESIGN SYSTEM
   ========================================================================== */

/* DESIGN TOKENS & VARIABLES */
:root {
    /* Brand Metallic Gold Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F7E5A9;
    --gold-dark: #AA771C;
    --gold-gradient: linear-gradient(135deg, #FFE7A8 0%, #D4AF37 50%, #9B6E19 100%);
    --gold-glow: rgba(212, 175, 55, 0.35);

    /* Backgrounds & Neutral Tones */
    --bg-dark-obsidian: #0B0E14;
    --bg-dark-card: #141923;
    --bg-dark-card-hover: #1D2331;
    --bg-light-cream: #FDFBF7;
    --bg-light-rose: #FAF0E6;

    /* Text Colors */
    --text-gold: #F3E5AB;
    --text-white: #FFFFFF;
    --text-muted: #A0AEC0;
    --text-dark: #1A202C;
    --text-dark-muted: #4A5568;

    /* WhatsApp High Conversion Green */
    --wsp-green: #25D366;
    --wsp-green-hover: #1EBE57;
    --wsp-glow: rgba(37, 211, 102, 0.4);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadows & Transitions */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark-obsidian);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.gold-text { color: var(--gold-primary); }
.gold-sparkle { color: var(--gold-primary); margin-right: 6px; }

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* TOP ANNOUNCEMENT BAR */
.announcement-bar {
    background: linear-gradient(90deg, #11141D 0%, #2A2111 50%, #11141D 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 0.875rem;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar-link {
    background: var(--wsp-green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link:hover {
    background: var(--wsp-green-hover);
    transform: translateY(-1px);
}

/* MAIN NAVIGATION HEADER */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 14, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 52px;
    width: auto;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #E1306C;
}

.icon-social:hover {
    background: #E1306C;
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    background: var(--wsp-green);
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--wsp-glow);
}

.btn-whatsapp-header:hover {
    background: var(--wsp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--wsp-glow);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: radial-gradient(circle at 50% 20%, #1D180F 0%, #0B0E14 70%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.12);
    top: -100px;
    right: 10%;
}

.hero-glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(232, 162, 168, 0.1);
    bottom: -50px;
    left: 5%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--wsp-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* BUTTONS */
.btn-primary-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    font-weight: 800;
    padding: 16px 28px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px var(--wsp-glow);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px var(--wsp-glow);
}

.pulse-button {
    animation: btnPulse 2.5s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-hero-cta .whatsapp-icon-spin {
    font-size: 2rem;
}

.btn-hero-cta .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-hero-cta .btn-main {
    font-size: 1.05rem;
    line-height: 1.2;
}

.btn-hero-cta .btn-sub {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-secondary-gold {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-secondary-gold:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}

/* HERO TRUST BADGES */
.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.trust-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-white);
}

.trust-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* HERO MEDIA CARD */
.hero-image-card {
    position: relative;
    border-radius: var(--border-radius);
    padding: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-main-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.hero-image-card:hover .hero-main-img {
    transform: scale(1.03);
}

.hero-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-floating-badge {
    position: absolute;
    background: rgba(20, 25, 35, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.float-top-right {
    top: -20px;
    right: -20px;
}

.float-bottom-left {
    bottom: -20px;
    left: -20px;
}

.rating-stars {
    color: #FFD700;
}

.instagram-color {
    color: #E1306C;
    font-size: 1.2rem;
}

/* STATS BAR */
.stats-bar-section {
    background: var(--bg-dark-card);
    border-y: 1px solid rgba(212, 175, 55, 0.15);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.stat-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SECTION HEADERS */
.section-header {
    margin-bottom: 45px;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-description {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* QUIZ SECTION */
.quiz-section {
    padding: 90px 0;
    background: radial-gradient(circle at 50% 50%, #181D29 0%, #0B0E14 100%);
}

.luxury-glass-card {
    background: rgba(20, 25, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.quiz-step {
    margin-bottom: 35px;
}

.quiz-step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-gold);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.quiz-option-card {
    position: relative;
    cursor: pointer;
}

.quiz-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.option-content i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.option-content strong {
    font-size: 0.95rem;
}

.option-content span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.quiz-option-card input[type="radio"]:checked + .option-content {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-quiz-submit {
    font-size: 1.1rem;
    padding: 18px 40px;
    margin-top: 10px;
}

/* COLLECTIONS & PRODUCT SHOWCASE */
.collections-section {
    padding: 90px 0;
    background: var(--bg-dark-obsidian);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    font-weight: 800;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--bg-dark-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.badge-gold {
    background: var(--gold-gradient);
    color: #000;
}

.badge-rose {
    background: #E8A2A8;
    color: #000;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-sizes {
    font-size: 0.8rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-card-whatsapp {
    background: var(--wsp-green);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-card-whatsapp:hover {
    background: var(--wsp-green-hover);
}

/* CALLOUT BANNER */
.catalog-callout-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(20, 25, 35, 0.9) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--border-radius);
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.callout-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-gold);
    margin-bottom: 6px;
}

.callout-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* DIFFERENTIALS SECTION */
.differentials-section {
    padding: 80px 0;
    background: #0E121A;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.diff-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.diff-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px var(--gold-glow);
}

.diff-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.diff-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 90px 0;
    background: var(--bg-dark-obsidian);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* INSTAGRAM BANNER */
.instagram-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
    color: #fff;
}

.insta-big-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.insta-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.insta-header p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-instagram {
    background: #FFFFFF;
    color: #D62976;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    background: #FFF0F5;
}

/* LOCATION SECTION */
.location-section {
    padding: 90px 0;
    background: var(--bg-dark-obsidian);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-top: 3px;
}

.info-item strong {
    font-size: 1rem;
    color: var(--text-gold);
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hours-list {
    margin-top: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.link-highlight {
    color: var(--wsp-green);
    font-weight: 700;
}

.location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-maps {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-maps:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background: var(--bg-dark-card);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    transition: var(--transition);
    color: var(--gold-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* FOOTER */
.main-footer {
    background: #07090E;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 48px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--text-gold);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom {
    background: #040508;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* FLOATING WHATSAPP BUTTON & CHAT POPUP */
.floating-whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.floating-whatsapp-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--wsp-green);
    color: #fff;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px var(--wsp-glow);
    position: relative;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    background: var(--wsp-green-hover);
}

.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--wsp-green);
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.35); opacity: 0; }
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF3B30;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-chat-bubble {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 310px;
    background: #141923;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}

.whatsapp-chat-bubble.show {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-bubble-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.online-indicator {
    display: block;
    font-size: 0.75rem;
    color: var(--wsp-green);

}

.online-indicator .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--wsp-green);
    border-radius: 50%;
    margin-right: 4px;
}

.chat-bubble-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.chat-bubble-btn {
    background: var(--wsp-green);
    color: #fff;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .hero-grid, .location-grid {
        grid-template-columns: 1fr;
    }

    .hero-media-col {
        order: -1;
    }

    .products-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differentials-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quiz-options-grid, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(11, 14, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        font-size: 1.2rem;
    }

    .nav-menu.open {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .products-grid, .testimonials-grid, .differentials-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .quiz-options-grid, .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-trust-badges {
        grid-template-columns: 1fr;
    }

    .float-top-right, .float-bottom-left {
        position: static;
        margin-top: 10px;
    }
}
