/* ============ Sondy Black Car LLC — static theme ============ */
:root {
    --bg: #050505;
    --paper: #121212;
    --surface: #1A1A1A;
    --gold: #C5A059;
    --goldhover: #B08D4A;
    --ivory: #F4F4F5;
    --muted: #A1A1AA;
    --faint: #71717A;
    --border: rgba(255, 255, 255, 0.1);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ivory);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .brand, .stat-num { font-family: 'Outfit', sans-serif; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--gold); color: #050505; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #27272A; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============ Reveal-on-scroll animation ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ============ Keyframes ============ */
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ken-burns { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.5); transform: scale(1); }
    50% { box-shadow: 0 0 0 14px rgba(197, 160, 89, 0); transform: scale(1.03); }
}
@keyframes gold-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.cta-pulse { animation: cta-pulse 2.2s ease-in-out infinite; }

/* ============ Typography helpers ============ */
.overline {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 16px;
}
h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; font-weight: 600; }
h3 { font-size: 18px; font-weight: 600; }
.gold-text { color: var(--gold); }
.section-sub { margin-top: 16px; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 420px; }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 14px 28px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: 'Manrope', sans-serif;
}
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--goldhover); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--ivory); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; padding: 16px; }
.btn-whatsapp { background: #25D366; color: #fff; margin-top: 20px; }
.btn-whatsapp:hover { background: #1eb855; }
.arrow { transition: transform 0.3s; }
.btn:hover .arrow, a:hover > .arrow { transform: translateX(4px); }

.link-arrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
}
.link-arrow:hover { color: var(--ivory); }
.link-arrow .arrow { display: inline-block; }

/* ============ Navbar ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}
.navbar.scrolled { background: rgba(0, 0, 0, 0.7); border-bottom-color: var(--border); }

.topbar {
    display: flex;
    justify-content: space-between;
    padding: 8px 96px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    letter-spacing: 0.05em;
}
.topbar-left { color: var(--faint); text-transform: uppercase; }
.topbar-right { display: flex; gap: 24px; }
.topbar-right a { color: var(--muted); transition: color 0.2s; }
.topbar-right a:hover { color: var(--gold); }

.nav-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    height: 80px;
    padding: 0 96px;
}
.brand { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; }
.brand span { color: var(--gold); }
.nav-links { display: flex; justify-content: center; gap: 40px; }
.nav-links a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--ivory); }

/* ============ Hero ============ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 104px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.hero-text { padding: 48px 96px; display: flex; flex-direction: column; justify-content: center; }
.hero h1 {
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 600;
}
.gold-line {
    margin-top: 32px;
    height: 1px;
    width: 96px;
    background: var(--gold);
    transform-origin: left;
    animation: gold-line 1.2s var(--ease) 0.6s both;
}
.hero-sub { margin-top: 32px; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 480px; }
.hero-cta { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.hero-stats {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 480px;
}
.stat-num { font-size: 24px; font-weight: 600; }
.stat-label { font-size: 11px; color: var(--faint); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-img-wrap { position: relative; min-height: 400px; overflow: hidden; }
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
    animation: ken-burns 20s ease-in-out infinite alternate;
}
.hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg), transparent 40%);
}

/* ============ Marquee ============ */
.marquee {
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--paper);
    padding: 24px 0;
    user-select: none;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: 22px;
    color: var(--muted);
    padding: 0 32px;
}
.marquee-dot { color: var(--gold); font-size: 10px; align-self: center; }

/* ============ Sections ============ */
.section { padding: 96px; border-bottom: 1px solid var(--border); }
.section-dark { background: var(--bg); }
.section-paper { background: var(--paper); }
.section-head { margin-bottom: 56px; max-width: 640px; }

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

/* ============ Cards ============ */
.card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 24px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: block;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 20px 40px -20px rgba(197, 160, 89, 0.3);
}
.section-dark .card { background: var(--paper); }
.section-paper .card { background: var(--surface); }

.icon { width: 22px; height: 22px; color: var(--gold); transition: transform 0.3s; }
.card:hover .icon { transform: scale(1.1); }
.card h3 { margin-top: 16px; }
.card p { font-size: 13px; line-height: 1.7; color: var(--muted); margin-top: 8px; }

.service-card .service-img { overflow: hidden; aspect-ratio: 16/9; margin: -24px -24px 20px; }
.service-card .service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.05); }
.card-link {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--faint);
    margin-top: 24px;
    transition: color 0.2s;
}
.service-card:hover .card-link { color: var(--gold); }
.card-link .arrow { display: inline-block; }

/* ============ Fleet ============ */
.fleet-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.photo-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.photo-card:hover { border-color: rgba(197, 160, 89, 0.4); }
.photo-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.7s var(--ease); }
.photo-card:hover img { transform: scale(1.05); }
.caption {
    margin: 12px 0 24px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--faint);
}
.fleet-info h3 { font-size: 24px; }
.fleet-model { font-size: 13px; color: var(--muted); margin-top: 4px; }
.fleet-meta { display: flex; gap: 24px; margin-top: 24px; font-size: 13px; color: var(--muted); }
.fleet-meta span { color: var(--muted); }
.feature-list { margin-top: 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); list-style: none; }
.feature-list li {
    font-size: 13px;
    color: var(--muted);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: "✓"; color: var(--gold); margin-right: 10px; font-size: 12px; }
.fleet-note { margin: 24px 0; font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ============ Testimonials ============ */
.testimonial .stars { color: var(--gold); font-size: 13px; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial blockquote { font-size: 13px; line-height: 1.7; color: var(--muted); }
.testimonial figcaption { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.t-name { font-size: 13px; font-weight: 600; color: var(--ivory); }
.t-context { font-size: 11px; color: var(--faint); margin-top: 4px; }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.faq-list { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); padding: 24px 4px; }
.faq-list details:last-child { border-bottom: none; }
.faq-list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.plus { color: var(--gold); font-size: 20px; transition: transform 0.3s; user-select: none; }
.faq-list details[open] .plus { transform: rotate(45deg); }
.faq-list details p { margin-top: 16px; font-size: 13px; line-height: 1.7; color: var(--muted); max-width: 640px; }

/* ============ Quote form ============ */
.quote-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.quote-form { background: var(--surface); border: 1px solid var(--border); border-radius: 2px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 12px 14px;
    color: var(--ivory);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-field input[type="date"], .form-field input[type="time"] { color-scheme: dark; }
.form-field textarea { resize: vertical; }
.form-hint { margin-top: 16px; text-align: center; font-size: 12px; color: var(--faint); }
.form-hint a { color: var(--gold); }

.quote-success {
    background: var(--surface);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 2px;
    padding: 48px 32px;
    text-align: center;
}
.success-check {
    width: 56px; height: 56px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-success h3 { font-size: 22px; margin-bottom: 12px; }
.quote-success p { font-size: 14px; line-height: 1.7; color: var(--muted); max-width: 400px; margin: 0 auto; }
.hidden { display: none; }

/* ============ Flyer ============ */
.flyer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.flyer-btns { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }
.flyer-card {
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 2px;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 0 60px -15px rgba(197, 160, 89, 0.25);
    transition: box-shadow 0.5s;
}
.flyer-card:hover { box-shadow: 0 0 80px -10px rgba(197, 160, 89, 0.4); }
.flyer-card img { width: 100%; transition: transform 0.7s var(--ease); }
.flyer-card:hover img { transform: scale(1.03); }

/* ============ Footer ============ */
.footer { padding: 80px 96px; background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; }
.footer-brand { font-size: 26px; }
.footer-tag { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 20px; max-width: 380px; }
.footer-motto { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-top: 20px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 20px;
    transition: border-color 0.2s;
    display: block;
}
.contact-card:hover { border-color: var(--gold); }
.contact-label { display: block; font-size: 11px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { display: block; font-size: 13px; font-weight: 600; margin-top: 6px; }
.break { word-break: break-all; }
.footer-note { font-size: 13px; color: var(--muted); margin-top: 32px; line-height: 1.7; }
.footer-bottom {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: var(--faint);
}

/* ============ WhatsApp FAB ============ */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: background 0.2s;
}
.whatsapp-fab:hover { background: #1eb855; }

/* ============ Toast ============ */
.toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);
    background: var(--surface);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--ivory);
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 100;
    pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 1200px) {
    .section, .hero-text { padding-left: 48px; padding-right: 48px; }
    .topbar, .nav-main, .footer { padding-left: 48px; padding-right: 48px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .topbar { display: none; }
    .navbar .nav-main { grid-template-columns: 1fr; height: auto; padding: 14px 24px; gap: 10px; text-align: center; }
    .brand { font-size: 24px; }
    .nav-links { gap: 20px; }
    .nav-cta { display: none; }
    .hero { grid-template-columns: 1fr; padding-top: 110px; }
    .hero-img-wrap { min-height: 320px; order: 2; }
    .hero-fade { background: linear-gradient(to top, var(--bg), transparent 40%); }
    .section { padding: 64px 24px; }
    .hero-text { padding: 40px 24px; }
    .fleet-grid, .faq-grid, .quote-grid, .flyer-grid, .footer-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer { padding: 56px 24px; }
}
@media (max-width: 560px) {
    .grid-4 { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
