/* === Variables === */
:root {
    --black: #0a0a0a;
    --dark: #141414;
    --dark-2: #1e1e1e;
    --dark-3: #2a2a2a;
    --gold: #c8a960;
    --gold-light: #d4b96e;
    --gold-dark: #a88b3d;
    --gold-glow: rgba(200, 169, 96, .15);
    --white: #f5f5f5;
    --gray: #999;
    --gray-light: #e0e0e0;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --header-h: 72px;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: .3s ease;
    --transition-slow: .6s cubic-bezier(.4,0,.2,1);
    --transition-bounce: .5s cubic-bezier(.34,1.56,.64,1);
}

/* === Keyframes === */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes hero-float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
@keyframes cta-line-pulse {
    0%, 100% { opacity: .3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}
@keyframes btn-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}
@keyframes whatsapp-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Scroll Reveal === */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-title { animation: none !important; }
    .hero-particles { display: none; }
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* === Layout === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 100;
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 169, 96, .1);
    transition: all var(--transition);
}
.header.scrolled {
    background: rgba(10, 10, 10, .95);
    box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .5px;
}
.logo span { color: var(--gold); }
.nav { display: flex; gap: 32px; }
.nav-link {
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    transition: color var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.header-cta { display: inline-flex; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 1px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transition: none;
}
.btn-primary:hover::after {
    animation: btn-shine .6s ease forwards;
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 169, 96, .25);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.3);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 169, 96, .05);
}
.btn-lg { padding: 16px 36px; font-size: .9rem; }
.btn-full { width: 100%; justify-content: center; }

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 40px) 24px 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}
/* Gold particles layer */
.hero-particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(200,169,96,.4), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(200,169,96,.3), transparent),
        radial-gradient(3px 3px at 50% 60%, rgba(200,169,96,.2), transparent),
        radial-gradient(2px 2px at 15% 80%, rgba(200,169,96,.3), transparent),
        radial-gradient(2px 2px at 70% 75%, rgba(200,169,96,.25), transparent),
        radial-gradient(3px 3px at 40% 15%, rgba(200,169,96,.2), transparent),
        radial-gradient(2px 2px at 90% 50%, rgba(200,169,96,.3), transparent);
    animation: hero-float 8s ease-in-out infinite;
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 96, .08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-small { min-height: 60vh; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(200, 169, 96, .05) 0%, transparent 60%);
}
.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: .06;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-subtitle {
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.hero-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--white) 0%, var(--gold-light) 25%, var(--white) 50%, var(--gold-light) 75%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s linear infinite;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 24px auto 0;
    border-radius: 2px;
}

/* === Sections === */
.section-label {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-desc {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 1rem;
    line-height: 1.7;
}

/* === Features === */
.features {
    padding: 80px 0;
    background: var(--dark);
    border-top: 1px solid rgba(200, 169, 96, .1);
    border-bottom: 1px solid rgba(200, 169, 96, .1);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.feature-card {
    text-align: center;
    padding: 32px 16px;
    border-radius: var(--radius-lg);
    background: var(--dark-2);
    border: 1px solid rgba(200, 169, 96, .08);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
/* Gold line on top, animated on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}
.feature-card:hover::before {
    width: 100%;
    left: 0;
    transform: none;
}
.feature-card:hover {
    border-color: rgba(200, 169, 96, .2);
    transform: translateY(-4px);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200, 169, 96, .1);
    color: var(--gold);
    margin-bottom: 16px;
    transition: all var(--transition);
}
.feature-card:hover .feature-icon {
    background: rgba(200, 169, 96, .15);
    box-shadow: 0 0 24px rgba(200, 169, 96, .15);
    transform: scale(1.1);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}
.feature-card p {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* === Services Preview (Home) === */
.services-preview {
    padding: 100px 0;
    text-align: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark);
    border: 1px solid rgba(200, 169, 96, .1);
    transition: all var(--transition);
}
.service-card:hover {
    border-color: rgba(200, 169, 96, .25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.service-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(200, 169, 96, .1);
    position: relative;
    overflow: hidden;
}
/* Unique gradients + geometric patterns per card */
.service-card-img.card-road {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.service-card-img.card-business {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1f 100%);
}
.service-card-img.card-airport {
    background: linear-gradient(135deg, #0f1923 0%, #1a2a3a 100%);
}
/* Geometric pattern overlay */
.service-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
        linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
        linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
        linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold));
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px;
}
/* Gold line bottom */
.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.service-card-body {
    padding: 28px;
}
.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gold-light);
}
.service-card-body p {
    color: var(--gray);
    font-size: .9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* === Why Us === */
.why-us {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.why-card {
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--dark-2);
    border: 1px solid rgba(200, 169, 96, .08);
    text-align: left;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
/* Corner accent */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-radius: 0 var(--radius-lg) 0 0;
    opacity: .3;
    transition: opacity var(--transition);
}
/* Bottom line animated */
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}
.why-card:hover::before { opacity: .7; }
.why-card:hover::after {
    width: 100%;
    left: 0;
    transform: none;
}
.why-card:hover {
    border-color: rgba(200, 169, 96, .2);
}
.why-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .3;
    margin-bottom: 16px;
    line-height: 1;
    transition: all var(--transition);
}
.why-card:hover .why-number {
    opacity: .6;
    transform: scale(1.1);
}
.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--gold-light);
}
.why-card p {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.6;
}

/* === CTA === */
.cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(200, 169, 96, .06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}
.cta-content { position: relative; z-index: 1; }
/* Pulsing line decoration */
.cta-line {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: var(--gold);
    animation: cta-line-pulse 3s ease-in-out infinite;
    border-radius: 1px;
}
/* Diamond decoration */
.cta-diamond {
    width: 12px;
    height: 12px;
    background: var(--gold);
    transform: rotate(45deg);
    margin: 0 auto 24px;
    opacity: .6;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 36px;
    line-height: 1.3;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Services Detail === */
.services-detail {
    padding: 80px 0;
}
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(200, 169, 96, .08);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-visual { order: 1; }
.service-text h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}
.service-text p {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.service-visual-inner {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
/* Unique visual backgrounds */
.visual-road { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.visual-airport { background: linear-gradient(135deg, #0f1923 0%, #1a2a3a 100%); }
.visual-gare { background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%); }
.visual-hotel { background: linear-gradient(135deg, #1a1520 0%, #2a1f2f 100%); }
.visual-business { background: linear-gradient(135deg, #151a1a 0%, #1f2a2a 100%); }
.visual-events { background: linear-gradient(135deg, #1a1518 0%, #2d1f25 100%); }

/* Animated gradient border */
.service-visual-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .3;
    transition: opacity var(--transition);
}
/* Inner glow on hover */
.service-visual-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(200,169,96,.08) 0%, transparent 60%);
    transition: all var(--transition);
}
.service-visual-inner:hover::before { opacity: .6; }
.service-visual-inner:hover::after {
    background: radial-gradient(circle at center, rgba(200,169,96,.15) 0%, transparent 60%);
}
.service-visual-inner svg {
    position: relative;
    z-index: 1;
}

/* === Contact === */
.contact-section {
    padding: 80px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-direct h2, .contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--gold-light);
}
.contact-direct > p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}
.contact-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    background: var(--dark);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 169, 96, .1);
    margin-bottom: 16px;
    transition: all var(--transition);
}
.contact-card:hover {
    border-color: rgba(200, 169, 96, .3);
}
.contact-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 96, .1);
    color: var(--gold);
}
.contact-card-icon.whatsapp {
    background: rgba(37, 211, 102, .1);
    color: #25d366;
}
.contact-card h3 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 4px;
}
.contact-phone {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-light);
    transition: color var(--transition);
}
.contact-phone:hover { color: var(--gold); }

/* FAQ */
.faq { margin-top: 48px; }
.faq h2 { margin-bottom: 24px; }
.faq-item {
    background: var(--dark);
    border: 1px solid rgba(200, 169, 96, .1);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item[open] { border-color: rgba(200, 169, 96, .25); }
.faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: .95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-item[open] .faq-answer {
    max-height: 200px;
}
.faq-answer p {
    padding: 0 20px 16px;
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.6;
}
/* Fallback for non-JS: show content directly */
.faq-item p {
    padding: 0 20px 16px;
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.6;
}

/* Form */
.contact-form-wrapper {
    background: var(--dark);
    border: 1px solid rgba(200, 169, 96, .1);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form { margin-top: 24px; }
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-2);
    border: 1px solid rgba(200, 169, 96, .15);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    opacity: .5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a960' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}
.form-status {
    margin-top: 16px;
    font-size: .9rem;
    text-align: center;
}
.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }

/* === WhatsApp Floating Button === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    transition: all var(--transition);
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}
.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    animation: whatsapp-bounce 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
    animation: none;
}

/* === Footer === */
.footer {
    background: var(--dark);
    border-top: none;
    padding: 0;
}
.footer-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .3;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 60px 0 40px;
}
.footer-brand p {
    color: var(--gray);
    font-size: .9rem;
    margin-top: 12px;
    line-height: 1.6;
}
.footer-links h4, .footer-contact h4 {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-links a, .footer-contact a {
    display: block;
    font-size: .9rem;
    color: var(--gray);
    margin-bottom: 8px;
    transition: all var(--transition);
    padding-left: 0;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}
.footer-bottom {
    border-top: 1px solid rgba(200, 169, 96, .08);
    padding: 20px 0;
}
.footer-bottom p {
    font-size: .8rem;
    color: var(--gray);
    text-align: center;
}

/* === Mobile === */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-line { display: none; }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(200, 169, 96, .1);
    }
    .nav.open { display: flex; }
    .nav-link.active::after { display: none; }
    .nav-toggle { display: block; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .header-cta { display: none; }

    .hero { min-height: 85vh; padding-top: calc(var(--header-h) + 32px); }
    .hero-small { min-height: 50vh; }
    .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .service-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-row.reverse .service-text,
    .service-row.reverse .service-visual { order: unset; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrapper { padding: 24px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; justify-content: center; }
}
