
@font-face {
    font-family: 'Optima';
    src: local('Optima'), local('Optima-Regular'), url('https://fonts.cdnfonts.com/s/14685/Optima.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --dark-bg: #161616;
    --darker-bg: #0d0d0d;
    --text-light: #f4f4f4;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lora', 'Optima', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #111111 0%, #1e1e1e 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 17px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; }
.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 22px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 20px 50px;
    min-height: 115px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, min-height 0.3s ease;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    min-height: 158px;
}

/* Logo Styling */
.logo {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateX(0) translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 1001;
    transition: left 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo img {
    height: 94px;
    width: auto;
    object-fit: contain;
    transition: height 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled .logo {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.navbar.scrolled .logo img { height: 132px; }

.nav-links {
    position: fixed;
    top: 42px; right: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1001;
    transition: opacity 0.3s ease;
}
.nav-links.nav-scrolled:not(.active) { opacity: 0; pointer-events: none; }
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* Backdrop */
#menuBackdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1999;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
#menuBackdrop.active { display: block; }

/* Burger Menu */
.burger { display: none; cursor: pointer; z-index: 1001; }
.burger div {
    width: 25px; height: 2px;
    background-color: var(--gold);
    margin: 5px; transition: all 0.3s ease;
}
.navbar.scrolled .burger { display: block; position: absolute; right: 50px; }


/* Close button — ascuns implicit */
.nav-close { display: none; }

/* Side panel */
.nav-links.active {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed !important;
    top: 0 !important; right: 0; bottom: 0;
    width: 300px;
    background: #0d0d0d;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0 40px;
    gap: 0;
    z-index: 2000;
    overflow: hidden;
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: menuSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Linie aurie deasupra linkurilor */
.nav-links.active::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 36px;
    opacity: 0;
    animation: itemFadeIn 0.3s 0.1s ease forwards;
}

/* Linkuri */
.nav-links.active a {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 15px 0;
    color: #999;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
    text-align: center;
    transition: color 0.2s, letter-spacing 0.2s;
    opacity: 0;
    animation: itemSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.nav-links.active a:nth-of-type(1) { animation-delay: 0.07s; }
.nav-links.active a:nth-of-type(2) { animation-delay: 0.13s; }
.nav-links.active a:nth-of-type(3) { animation-delay: 0.19s; }
.nav-links.active a:nth-of-type(4) { animation-delay: 0.25s; }
.nav-links.active a:last-of-type { border-bottom: none; }
.nav-links.active a:hover { color: var(--gold); letter-spacing: 6px; }

/* Buton X — vizibil doar în panel deschis */
.nav-links.active .nav-close {
    display: flex;
    position: absolute;
    top: 28px; right: 28px;
    align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: none;
    color: var(--gold);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.25s;
    opacity: 0;
    animation: itemFadeIn 0.3s 0.08s ease forwards;
}
.nav-links.active .nav-close:hover { background: var(--gold); color: #000; transform: rotate(90deg); }

/* Animatie inchidere */
.nav-links.active.closing {
    animation: menuSlideOut 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}
.nav-links.active.closing a,
.nav-links.active.closing::before,
.nav-links.active.closing .nav-close {
    animation: none !important;
}

@keyframes menuSlideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}
@keyframes menuSlideOut {
    from { transform: translateX(0); }
    to   { transform: translateX(100%); }
}
@keyframes itemFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes itemSlideIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
}
.slide.active { opacity: 1; }
.slide video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); z-index: 2;
}
.hero-content { position: relative; z-index: 3; max-width: 800px; padding: 20px; display: flex; flex-direction: column; align-items: center; }
.hero-content h1 { font-size: 4.5rem; color: var(--gold); margin-bottom: 20px; letter-spacing: 3px; text-align: center; }
.hero-content p { font-size: 1.4rem; margin-bottom: 40px; letter-spacing: 1px; text-align: center; }

/* Buttons */
.btn-gold {
    background: var(--gold); color: #000;
    padding: 15px 40px; border: none;
    font-size: 1.2rem; font-family: var(--font-heading); font-weight: 600;
    cursor: pointer; transition: all 0.3s;
    text-decoration: none; display: inline-block; letter-spacing: 1px;
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: var(--gold);
    padding: 15px 40px; border: 1px solid var(--gold);
    font-size: 1.2rem; font-family: var(--font-heading); font-weight: 600;
    cursor: pointer; transition: all 0.3s; letter-spacing: 1px;
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); }
.disabled { opacity: 0.4 !important; cursor: not-allowed !important; pointer-events: none; }

/* Booking Section */
.booking-section { padding: 100px 20px; }
.container { max-width: 1000px; margin: 0 auto; }
.booking-form {
    background: rgba(6, 6, 6, 0.95);
    padding: 50px; border: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 30px rgba(212,175,55,0.08);
    border-radius: 8px;
}
.form-group { margin-bottom: 30px; }
.form-group label { display: block; color: var(--gold); margin-bottom: 12px; font-size: 1.2rem; font-family: var(--font-heading); letter-spacing: 1px; }
.form-row { display: flex; gap: 30px; }
.form-row .form-group { flex: 1; }

input[type="text"], input[type="date"], input[type="time"], select {
    width: 100%; padding: 15px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    color: white; font-size: 1.1rem; font-family: var(--font-body);
    transition: all 0.3s; border-radius: 4px;
}
select { background: #1a1a1a; }
select option { background: #1a1a1a; color: #ffffff; }

/* Date wrapper with calendar icon */
.date-wrap {
    position: relative;
}
.date-wrap .date-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(212,175,55,0.45);
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s;
}
.date-wrap:focus-within .date-icon { color: rgba(212,175,55,0.85); }
.date-wrap input[type="date"] { padding-left: 42px; }

/* Today / Tomorrow quick-select buttons next to date label */
.date-quick-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(212,175,55,0.7);
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    padding: 2px 9px;
    margin-left: 7px;
    vertical-align: middle;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.date-quick-btn:hover {
    color: var(--gold);
    background: rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.45);
}
.date-quick-btn.active {
    color: var(--gold);
    background: rgba(212,175,55,0.18);
    border-color: rgba(212,175,55,0.6);
}
input:focus, select:focus { outline: none; border-color: var(--gold); background: rgba(212, 175, 55, 0.05); }
.input-error { border-color: #ff4444 !important; }

/* Vehicle Cards - FIXED */
.vehicle-cards { display: flex; gap: 20px; }
.vehicle-card { flex: 1; position: relative; cursor: pointer; }
.vehicle-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.card-content {
    padding: 30px 20px; border: 2px solid rgba(212,175,55,0.22);
    text-align: center; transition: all 0.3s ease;
    background: rgba(0,0,0,0.4); border-radius: 6px;
}
.vehicle-card input:checked ~ .card-content {
    border-color: var(--gold); background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.card-content h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.6rem; }
.card-content p { font-size: 1.1rem; color: #ccc; }

.price-estimate {
    text-align: center; margin: 40px 0; font-size: 1.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 30px;
    font-family: var(--font-heading);
}
#priceDisplay {
    font-weight: bold; font-size: 2.5rem; margin-left: 15px;
    color: rgba(212,175,55,0.28);
    transition: color 0.35s ease;
    display: inline-block;
    min-width: 3ch;
}
#priceDisplay.price-active {
    color: var(--gold);
}
.terms-group { text-align: center; margin-bottom: 40px; font-size: 1.1rem; }
.terms-group a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); }
.action-buttons { display: flex; gap: 20px; justify-content: center; }

/* Services Section — Editorial Layout */
.services-section { padding: 120px 20px; border-top: 1px solid rgba(212,175,55,0.07); }
.services-editorial { max-width: 1060px; margin: 0 auto; border-top: 1px solid rgba(212,175,55,0.13); }

.service-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0 70px;
    padding: 64px 0 64px 24px;
    border-bottom: 1px solid rgba(212,175,55,0.13);
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.service-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-row:hover::before { transform: scaleY(1); }

.service-row-num {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,175,55,0.18);
    transition: -webkit-text-stroke-color 0.4s ease;
    text-align: center;
    user-select: none;
}
.service-row:hover .service-row-num { -webkit-text-stroke-color: rgba(212,175,55,0.55); }

.service-row-body h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.service-row-body p {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.9;
    max-width: 560px;
}

/* Partners Section */
.partners-section { padding: 100px 20px; background: rgba(6,6,6,0.92); text-align: center; border-top: 1px solid rgba(212,175,55,0.1); border-bottom: 1px solid rgba(212,175,55,0.1); }
.partners-text { max-width: 900px; margin: 0 auto 40px; color: #ddd; font-size: 1.2rem; line-height: 1.8; }
.club-logos { margin-bottom: 50px; }
.club-logos-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px 55px; margin-bottom: 40px; }
.club-logos-row img { height: 70px; max-width: 190px; object-fit: contain; filter: grayscale(100%) brightness(200%); opacity: 0.55; transition: all 0.4s ease; }
.club-logos-row img:hover { filter: grayscale(100%) brightness(300%) drop-shadow(0 0 10px rgba(212,175,55,0.85)); opacity: 1; transform: scale(1.07); }
@media (max-width: 700px) { .club-logos-row { gap: 18px 22px; margin-bottom: 22px; } .club-logos-row img { height: 32px; max-width: 100px; } }

/* Fleet Section */
.fleet-section { padding: 100px 20px; }
.fleet-grid { display: flex; gap: 50px; justify-content: center; flex-wrap: wrap; }
.fleet-card {
    width: 450px; cursor: pointer; transition: all 0.4s ease;
    border: 1px solid rgba(212,175,55,0.2); padding: 25px; text-align: center;
    background: rgba(5,5,5,0.95); border-radius: 8px;
}
.fleet-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.6); border-color: var(--gold); }
.fleet-card img { width: 100%; height: 280px; object-fit: cover; margin-bottom: 25px; border-radius: 4px; }
.fleet-card h3 { color: var(--gold); font-size: 2rem; margin-bottom: 10px; }
.fleet-card p { color: #aaa; font-style: italic; }

/* About Section — Manifesto Layout */
.about-section {
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212,175,55,0.07);
    background: linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
}
.about-ghost {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 13vw, 15rem);
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,175,55,0.038);
    letter-spacing: 0.18em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    text-transform: uppercase;
}
.about-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}
.about-pullquote {
    text-align: center;
    margin-bottom: 56px;
}
.about-pullquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.6vw, 3.4rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(244,244,244,0.9);
    line-height: 1.35;
    margin-bottom: 0;
}
.about-pullquote p em { color: var(--gold); font-style: italic; }

.about-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 56px;
}
.about-ornament::before,
.about-ornament::after {
    content: '';
    flex: 1;
    max-width: 110px;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
}
.about-ornament-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.45;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
}
.about-columns p {
    font-size: 1.08rem;
    color: #999;
    line-height: 1.95;
    margin-bottom: 0;
}

/* Modals */
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: #111; margin: 10% auto; padding: 50px;
    border: 1px solid var(--gold); width: 90%; max-width: 600px; position: relative;
    border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.close { color: var(--gold); position: absolute; top: 20px; right: 30px; font-size: 35px; font-weight: normal; cursor: pointer; transition: color 0.3s; }
.close:hover { color: #fff; }
.modal-content h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 20px; border-bottom: 1px solid rgba(212,175,55,0.2); padding-bottom: 15px; }
.modal-content p { font-size: 1.2rem; margin-bottom: 10px; color: #ddd; }
.modal-list { list-style: none; padding: 0; margin-top: 25px; text-align: left; }
.modal-list li { position: relative; padding-left: 35px; margin-bottom: 15px; color: #ddd; font-size: 1.1rem; }
.modal-list li::before {
    content: '–'; position: absolute; left: 0; top: 2px; color: var(--gold); font-weight: bold; font-size: 1.2rem;
}

/* Scroll Up Button */
#scrollUpBtn {
    display: none; position: fixed; bottom: 40px; right: 40px; z-index: 999;
    border: 1px solid var(--gold); outline: none; background-color: rgba(10,10,10,0.8); color: var(--gold);
    cursor: pointer; width: 50px; height: 50px; border-radius: 50%; font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); transition: all 0.3s;
    backdrop-filter: blur(5px);
}
#scrollUpBtn:hover { background-color: var(--gold); color: #000; transform: translateY(-5px); }

/* Google Maps Autocomplete Fix */
.pac-container {
    background-color: #111; border: 1px solid var(--gold);
    font-family: var(--font-body); color: white; z-index: 9999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
}
.pac-item { color: #ccc; border-top: 1px solid rgba(255,255,255,0.1); padding: 12px; cursor: pointer; font-size: 1.1rem; }
.pac-item:hover { background-color: rgba(212, 175, 55, 0.15); }
.pac-item-query { color: var(--gold); font-size: 1.2rem; }

/* ============================================
   FAQ Section
   ============================================ */
.faq-section { padding: 120px 20px; border-top: 1px solid rgba(212,175,55,0.07); }
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid rgba(212,175,55,0.13);
    overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(212,175,55,0.13); }

.faq-item summary {
    list-style: none;
    padding: 26px 50px 26px 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--text-light);
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%; transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 300;
    font-family: var(--font-heading);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
    line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }

.faq-answer {
    padding: 0 50px 28px 0;
    color: #999;
    font-size: 1.05rem;
    line-height: 1.9;
    animation: faqOpen 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer.faq-closing {
    animation: faqClose 0.22s cubic-bezier(0.4, 0, 1, 1) forwards;
}
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes faqClose {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-6px); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .nav-links:not(.active) { display: none; }
    .burger { display: block; }
    .hero-content h1 { font-size: 3rem; }
    .form-row { flex-direction: column; gap: 0; }
    .action-buttons { flex-direction: column; }
    .vehicle-cards { flex-direction: column; }
    /* Services mobile */
    .service-row { grid-template-columns: 1fr; gap: 12px 0; padding: 42px 0 42px 20px; }
    .service-row-num { font-size: 4.5rem; text-align: left; -webkit-text-stroke: 1px rgba(212,175,55,0.55); }
    .service-row-body h3 { font-size: 1.7rem; }
    /* About mobile */
    .about-columns { grid-template-columns: 1fr; gap: 28px; }
    .about-ghost { font-size: 3.5rem; }
}

/* ============================================
   THEME TOGGLE (burger menu)
   ============================================ */
/* Desktop: always visible inline with nav links */
.theme-toggle-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    opacity: 1;
    animation: none;
}

/* Mobile: hidden until burger panel opens */
@media (max-width: 768px) {
    .theme-toggle-row {
        display: none;
        margin-top: 30px;
        padding-top: 22px;
        border-top: 1px solid rgba(212,175,55,0.12);
        opacity: 0;
        animation: itemFadeIn 0.3s 0.32s ease forwards;
    }
    .nav-links.active .theme-toggle-row { display: flex; }
}

.theme-icon {
    color: rgba(212,175,55,0.5);
    flex-shrink: 0;
    transition: color 0.25s;
}
.theme-toggle-row:hover .theme-icon { color: rgba(212,175,55,0.85); }

.theme-switch-pill {
    width: 38px; height: 20px;
    border-radius: 10px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    position: relative;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    flex-shrink: 0;
}
.theme-switch-pill:hover { border-color: rgba(212,175,55,0.6); }
.theme-switch-knob {
    position: absolute;
    top: 2px; left: 2px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s;
}
body.light .theme-switch-knob {
    transform: translateX(18px);
    opacity: 1;
}
body.light .theme-switch-pill {
    background: rgba(212,175,55,0.22);
    border-color: rgba(212,175,55,0.55);
}

/* ============================================
   LIGHT MODE OVERRIDES
   ============================================ */
body.light {
    background: linear-gradient(135deg, #faf6ee 0%, #f3ede1 100%);
    color: #1c1508;
}

/* Navbar */
body.light .navbar.scrolled {
    background: rgba(245,240,228,0.97);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
/* Nav links stay white over dark hero; darken only on scrolled (light) navbar */
body.light .navbar.scrolled .nav-links a { color: #3a3020; }
body.light .navbar.scrolled .nav-links a:hover { color: var(--gold-hover); }

/* Burger panel */
body.light .nav-links.active {
    background: #faf7f1;
    border-left-color: rgba(212,175,55,0.25);
}
body.light .nav-links.active a { color: #6a5e44; }
body.light .nav-links.active a:hover { color: var(--gold); letter-spacing: 6px; }
body.light .theme-toggle-row { border-top-color: rgba(212,175,55,0.18); }

/* Booking form */
body.light .booking-form {
    background: rgba(255,255,255,0.88);
    box-shadow: 0 15px 40px rgba(120,90,20,0.1), 0 0 30px rgba(212,175,55,0.06);
}
body.light input[type="text"],
body.light input[type="date"],
body.light input[type="time"],
body.light select {
    background: rgba(212,175,55,0.04);
    border-color: rgba(0,0,0,0.14);
    color: #1c1508;
}
body.light select { background: #f5f0e7; }
body.light select option { background: #f5f0e7; color: #1c1508; }
body.light input:focus, body.light select:focus {
    background: rgba(212,175,55,0.08);
    border-color: var(--gold);
}
body.light input::placeholder { color: rgba(0,0,0,0.35); }

/* Vehicle cards */
body.light .card-content {
    background: rgba(255,255,255,0.75);
}
body.light .card-content p { color: #6a5e44; }
body.light .vehicle-card input:checked ~ .card-content {
    background: rgba(212,175,55,0.1);
}

/* Price estimate */
body.light .price-estimate { color: #1c1508; }
body.light .price-estimate { border-top-color: rgba(212,175,55,0.3); }

/* Services section */
body.light .service-row-body p { color: #6a5e44; }
body.light .services-section { border-top-color: rgba(212,175,55,0.12); }
body.light .services-editorial { border-top-color: rgba(212,175,55,0.2); }
body.light .service-row { border-bottom-color: rgba(212,175,55,0.18); }

/* Partners section */
body.light .partners-section {
    background: rgba(240,234,218,0.7);
    border-top-color: rgba(212,175,55,0.15);
    border-bottom-color: rgba(212,175,55,0.15);
}
body.light .partners-text { color: #4a3e26; }

/* Fleet cards */
body.light .fleet-card {
    background: #ffffff;
    border-color: rgba(212,175,55,0.28);
    box-shadow: 0 4px 20px rgba(120,90,20,0.08);
}
body.light .fleet-card:hover { box-shadow: 0 15px 30px rgba(120,90,20,0.15); border-color: var(--gold); }
body.light .fleet-card p { color: #2e2514; }

/* About section */
body.light .about-section {
    background: linear-gradient(180deg, #ede8de 0%, #e8e0d0 100%);
    border-top-color: rgba(212,175,55,0.1);
}
body.light .about-pullquote p { color: rgba(28,21,8,0.88); }
body.light .about-columns p { color: #6a5e44; }

/* FAQ */
body.light .faq-section { border-top-color: rgba(212,175,55,0.12); }
body.light .faq-item { border-bottom-color: rgba(212,175,55,0.18); }
body.light .faq-item:first-child { border-top-color: rgba(212,175,55,0.18); }
body.light .faq-item summary { color: #1c1508; }
body.light .faq-item summary:hover { color: var(--gold); }
body.light .faq-answer { color: #6a5e44; }

/* Modal */
body.light .modal-content {
    background: #fdf9f2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
body.light .modal-content p { color: #4a3e26; }
body.light .modal-list li { color: #4a3e26; }

/* Scroll-up button */
body.light #scrollUpBtn {
    background: rgba(245,240,228,0.92);
    box-shadow: 0 4px 15px rgba(120,90,20,0.15);
}

/* Autocomplete */
body.light .pac-container {
    background: #fdf9f2;
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
body.light .pac-item { color: #4a3e26; border-top-color: rgba(0,0,0,0.07); }
body.light .pac-item:hover { background: rgba(212,175,55,0.1); }

/* Terms */
body.light .terms-group { color: #4a3e26; }

/* Club logos — negre în light mode */
body.light .club-logos-row img { filter: grayscale(100%) brightness(0%); opacity: 0.6; }
body.light .club-logos-row img:hover { filter: grayscale(100%) brightness(0%) drop-shadow(0 0 8px rgba(212,175,55,0.7)); opacity: 1; }
