/* ============================================
   SERVIBEURRE — Premium Dark Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Colors — Dark Premium */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.06);

    /* Gold Accent */
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-dark: #b08a3e;
    --gold-glow: rgba(212, 168, 83, 0.25);
    --gold-subtle: rgba(212, 168, 83, 0.08);

    /* Text — Improved contrast */
    --text-primary: #f0ece4;
    --text-secondary: rgba(240, 236, 228, 0.78);
    --text-muted: rgba(240, 236, 228, 0.55);

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(212, 168, 83, 0.35);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px rgba(212, 168, 83, 0.18);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Nav */
    --nav-bg: rgba(10, 10, 15, 0.6);
    --nav-bg-scrolled: rgba(10, 10, 15, 0.92);
    --btn-primary-text: #0a0a0f;
    --hero-overlay-top: rgba(10, 10, 15, 0.3);
    --hero-overlay-mid: rgba(10, 10, 15, 0.6);
    --hero-overlay-bottom: rgba(10, 10, 15, 0.95);
    --mobile-menu-bg: rgba(10, 10, 15, 0.97);
}

/* ============================================
   LIGHT THEME — Butter Yellow
   ============================================ */
[data-theme="light"] {
    /* Backgrounds */
    --bg-primary: #FFF8E1;
    --bg-secondary: #FFFDF7;
    --bg-card: rgba(0, 0, 0, 0.015);
    --bg-card-hover: rgba(255, 160, 0, 0.06);
    --bg-glass: rgba(255, 193, 7, 0.06);

    /* Gold — Readable on cream (used as text color throughout) */
    --gold: #C67C00;
    --gold-light: #B06E00;
    --gold-dark: #8B5800;
    --gold-glow: rgba(255, 160, 0, 0.2);
    --gold-subtle: rgba(255, 193, 7, 0.1);

    /* Text */
    --text-primary: #2D2D2D;
    --text-secondary: #555555;
    --text-muted: #888888;

    /* Borders */
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(198, 124, 0, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 20px rgba(255, 160, 0, 0.12);

    /* Nav */
    --nav-bg: rgba(255, 248, 225, 0.85);
    --nav-bg-scrolled: rgba(255, 248, 225, 0.97);
    --btn-primary-text: #000000;
    --hero-overlay-top: rgba(255, 248, 225, 0.1);
    --hero-overlay-mid: rgba(255, 248, 225, 0.55);
    --hero-overlay-bottom: rgba(255, 248, 225, 0.97);
    --mobile-menu-bg: rgba(255, 248, 225, 0.98);
}

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

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', 'Inter', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.15) drop-shadow(0 0 20px rgba(212, 168, 83, 0.15));
    }
}

.section__subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
    background: var(--nav-bg-scrolled);
    padding: 0.5rem 5vw;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav__logo {
    width: 90px;
    height: auto;
    transition: transform 0.3s var(--ease-out);
    filter: brightness(1.1);
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.menu__link {
    position: relative;
    padding: 0.6rem 1rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    border-radius: var(--radius-sm);
}

.menu__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.4s var(--ease-out);
    transform: translateX(-50%);
    border-radius: 2px;
}

.menu__link:hover {
    color: var(--gold-light);
}

.menu__link:hover::after {
    width: 60%;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    color: var(--gold);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--gold-subtle);
    border-color: var(--border-hover);
    transform: scale(1.1) rotate(15deg);
}

.theme-toggle__icon--light,
.theme-toggle__icon--dark {
    position: absolute;
    transition: all 0.4s var(--ease-out);
}

/* Dark theme (default): show sun icon to switch to light */
.theme-toggle__icon--light {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle__icon--dark {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Light theme: show moon icon to switch to dark */
[data-theme="light"] .theme-toggle__icon--light {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="light"] .theme-toggle__icon--dark {
    opacity: 1;
    transform: rotate(0deg);
}

/* Hamburger Menu */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MAIN
   ============================================ */
main {
    padding-top: 70px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            var(--hero-overlay-top) 0%,
            var(--hero-overlay-mid) 50%,
            var(--hero-overlay-bottom) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    padding: var(--space-md);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12) 0%, rgba(232, 201, 122, 0.08) 100%);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: badgePulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.badge--animated {
    animation: badgePulse 3s ease-in-out infinite, badgeGlow 2s ease-in-out 0.5s;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 83, 0);
    }

    50% {
        box-shadow: 0 0 20px 2px rgba(212, 168, 83, 0.15);
    }
}

@keyframes badgeGlow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero__badge i {
    font-size: 0.75rem;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.hero__title .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--btn-primary-text);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
}

.btn--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn--outline:hover::before {
    opacity: 1;
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-3px) scale(1.02);
    background: var(--gold-subtle);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.15);
}

.btn--small {
    padding: 0.65rem 1.5rem;
    font-size: 0.88rem;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-secondary);
}

/* Section dividers with gold gradient */
section+section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow), var(--gold), var(--gold-glow), transparent);
    opacity: 0.5;
}

/* --- Animate on scroll --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about__content {
    flex: 1;
    max-width: 550px;
}

.about__content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about__image {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.about__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.about__image::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-lg) + 8px);
    border: 1px solid var(--gold-subtle);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about__image:hover::after {
    opacity: 1;
}

/* ============================================
   CARDS GRID (Products & Services)
   ============================================ */
.card__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Dynamic cursor-following glow */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(212, 168, 83, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-gold), 0 0 40px rgba(212, 168, 83, 0.06);
}

.card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.6s var(--ease-out);
    filter: brightness(0.9) saturate(0.95);
}

.card:hover .card__image {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

.card__content {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.card__text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: auto;
    padding-bottom: var(--space-sm);
}

.card__cta {
    margin-top: var(--space-sm);
}

.card__button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    background: var(--gold-subtle);
    color: var(--gold-light);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.card__button:hover {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.card__button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.card__button:hover i {
    transform: translateX(3px);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--space-xl) var(--space-md);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-header .btn {
    margin-top: var(--space-md);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
}

.toggle-icon {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle:checked+.faq-question .toggle-icon {
    transform: rotate(45deg);
    color: var(--gold-light);
}

.faq-toggle:checked+.faq-question {
    border-bottom: 1px solid var(--border);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: all 0.4s var(--ease-out);
    opacity: 0;
}

.faq-toggle:checked+.faq-question+.faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem;
    opacity: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    text-align: center;
}

.contact-info {
    margin-bottom: var(--space-md);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--gold-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.contact-details li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-details i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.contact-details a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold-light);
}

.cta-container {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-md);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s var(--ease-out);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-md) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: center;
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.footer__copyright,
.footer__creator {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer__creator {
    font-style: italic;
}

.footer__nav {
    margin-top: 0.3rem;
}

.footer__link {
    color: var(--text-secondary);
    font-size: 0.88rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: var(--gold-light);
    background: var(--gold-subtle);
}

/* ============================================
   LIGHT THEME — Overrides
   ============================================ */

/* Card Buttons — vibrant amber fill on hover */
[data-theme="light"] .card__button {
    background: rgba(255, 193, 7, 0.12);
    color: #8B5800;
    border-color: rgba(255, 160, 0, 0.25);
}

[data-theme="light"] .card__button:hover {
    background: linear-gradient(135deg, #FFD54F, #FFA000);
    color: #000000;
    border-color: #FFA000;
    box-shadow: 0 4px 16px rgba(255, 160, 0, 0.3);
}

/* Badge — Pure white bg with butter border */
[data-theme="light"] .hero__badge {
    background: #FFFFFF;
    border-color: rgba(255, 160, 0, 0.35);
    color: #8B5800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Titles — Dark to amber gradient */
[data-theme="light"] .section__title {
    background: linear-gradient(135deg, #2D2D2D 0%, #C67C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="light"] .about__content h2 {
    background: linear-gradient(135deg, #2D2D2D 0%, #C67C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Primary Button — Vibrant gradient */
[data-theme="light"] .btn--primary {
    background: linear-gradient(135deg, #FFD54F 0%, #FFA000 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.25);
}

[data-theme="light"] .btn--primary:hover {
    box-shadow: 0 8px 30px rgba(255, 160, 0, 0.4);
}

/* Outline Button */
[data-theme="light"] .btn--outline {
    border-color: rgba(0, 0, 0, 0.12);
    color: #2D2D2D;
}

[data-theme="light"] .btn--outline:hover {
    background: rgba(255, 224, 130, 0.25);
    color: #8B5800;
    border-color: #FFA000;
}

/* Nav — Menu Links */
[data-theme="light"] .menu__link {
    color: #555555;
}

[data-theme="light"] .menu__link:hover {
    color: #C67C00;
}

/* Nav logo — Use dark logo on light bg */
[data-theme="light"] .nav {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Cards — White on cream */
[data-theme="light"] .card {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 160, 0, 0.2);
    border-color: rgba(255, 160, 0, 0.35);
    transform: translateY(-5px);
}

[data-theme="light"] .card__image {
    filter: brightness(1) saturate(1.05);
}

[data-theme="light"] .card:hover .card__image {
    filter: brightness(1.05) saturate(1.15);
}

/* FAQ — White cards */
[data-theme="light"] .faq-item {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .faq-item:hover {
    background: #FFFFFF;
    border-color: rgba(255, 160, 0, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .faq-question h3 {
    color: #2D2D2D;
}

[data-theme="light"] .toggle-icon {
    color: #C67C00;
}

/* Contact */
[data-theme="light"] .contact-info h3 {
    color: #C67C00;
}

[data-theme="light"] .contact-details i {
    color: #FFA000;
}

/* WhatsApp Float */
[data-theme="light"] .whatsapp-float {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* About Image */
[data-theme="light"] .about__image img {
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Footer */
[data-theme="light"] .footer {
    background: #FFF3D6;
    border-top-color: rgba(0, 0, 0, 0.06);
}

/* Theme Toggle */
[data-theme="light"] .theme-toggle {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.1);
    color: #C67C00;
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(255, 224, 130, 0.3);
    border-color: rgba(255, 160, 0, 0.4);
}

/* Section dividers */
[data-theme="light"] section+section::before {
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), rgba(255, 160, 0, 0.5), rgba(255, 193, 7, 0.3), transparent);
    opacity: 0.7;
}


/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .about {
        flex-direction: column-reverse;
        text-align: center;
        gap: var(--space-md);
    }

    .about__image {
        max-width: 320px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--mobile-menu-bg);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px var(--space-md) var(--space-md);
        gap: 0.5rem;
        transition: right 0.4s var(--ease-out);
        border-left: 1px solid var(--border);
        z-index: 1000;
    }

    .nav__menu.open {
        right: 0;
    }

    .menu__link {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }

    .hero__content {
        padding: var(--space-md) var(--space-sm);
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 85%;
        justify-content: center;
    }

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

    .card {
        max-width: 420px;
        margin: 0 auto;
    }

    section {
        padding: var(--space-lg) var(--space-sm);
    }

    .section__title {
        font-size: 1.8rem;
    }

    .about {
        flex-direction: column-reverse;
        text-align: center;
        padding: var(--space-md) var(--space-sm);
    }

    .about__image {
        max-width: 280px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 18px;
        right: 18px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}