/* --- RESET & VARIABLES --- */
/* 🎨 THEME: Change --primary + --primary-rgb + --primary-dark to retheme the entire site */
:root {
    --primary: #FFB800;
    --primary-rgb: 255, 184, 0;
    --primary-dark: #e0a200;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --card: #141414;
    --card-2: #1a1a1a;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.08);
    --text-muted: #888;
    --text-light: #ccc;
    --radius: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =====================
   SCROLLBAR
===================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

/* =====================
   HERO SECTION
===================== */
.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(10,10,10,1) 100%),
                url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* =====================
   NAVIGATION
===================== */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 35px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid var(--border);
    max-width: 1200px;
    margin: 10px auto;
    width: 100%;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--white);
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover { opacity: 1; color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.contact-btn {
    background: var(--primary);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.contact-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
    transition: var(--transition);
}

.mobile-nav a:hover { opacity: 1; color: var(--primary); }

.mobile-nav .contact-btn { font-size: 16px; }

/* =====================
   HERO CONTENT
===================== */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 750px;
    padding: 60px 0 120px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 90px);
    line-height: 1;
    margin-bottom: 22px;
    letter-spacing: -2px;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 40px;
    max-width: 560px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-yellow {
    background: var(--primary);
    color: #000;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-yellow:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
    border: 1px solid var(--border);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover { background: var(--white); color: #000; }

/* =====================
   MEMBERSHIP BADGE
===================== */
.membership-card {
    position: absolute;
    bottom: 40px;
    left: 5%;
    background: #fff;
    color: #000;
    padding: 15px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    max-width: calc(100% - 10%);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.user-avatars { display: flex; align-items: center; flex-shrink: 0; }
.user-avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; object-fit: cover; }
.user-avatars img:first-child { margin-left: 0; }
.plus-circle {
    width: 28px; height: 28px; background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-left: -5px; font-weight: bold; border: 2px solid #fff; font-size: 13px;
}

.badge-info strong { display: block; font-size: 15px; white-space: nowrap; }
.badge-info span { font-size: 11px; color: #777; white-space: nowrap; }

/* =====================
   STATS BAR
===================== */
.stats-bar {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 5%;
}

.stats-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--primary);
    line-height: 1;
}

.stat-item span {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================
   SECTION COMMONS
===================== */
section { padding: 90px 5%; }

.section-intro { text-align: center; margin-bottom: 55px; }
.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
}
.section-intro p { color: var(--text-muted); font-size: 16px; }

.section-tag {
    display: inline-block;
    background: rgba(var(--primary-rgb),0.12);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(var(--primary-rgb),0.2);
}

/* =====================
   FLEET SECTION
===================== */
.fleet { max-width: 1300px; margin: auto; padding: 80px 5%; }

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.car-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
    min-width: 0;
    overflow: hidden;
}

.car-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb),0.08);
}

.car-img {
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 18px;
    position: relative;
}

.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.car-card:hover .car-img img { transform: scale(1.05); }

.car-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    border: 1px solid rgba(var(--primary-rgb),0.3);
}

.car-details h3 { margin-bottom: 10px; font-size: 18px; }
.specs { display: flex; gap: 15px; font-size: 12px; color: var(--text-muted); margin-bottom: 18px; flex-wrap: wrap; }
.specs span { display: flex; align-items: center; gap: 5px; }

.date-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; min-width: 0; overflow: hidden; }
.input-group { min-width: 0; overflow: hidden; }
.input-group label { display: block; font-size: 10px; color: var(--primary); text-transform: uppercase; margin-bottom: 5px; letter-spacing: 0.5px; }
.input-group input {
    width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box;
    background: #1e1e1e; border: 1px solid #2a2a2a;
    color: var(--white); padding: 10px 6px; border-radius: 8px; font-size: 11px; outline: none;
    transition: var(--transition);
}
.input-group input:focus { border-color: var(--primary); background: #222; }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.price { font-size: 20px; font-weight: 700; color: var(--primary); }
.price small { font-size: 12px; color: var(--text-muted); font-weight: 400; }

.whatsapp-btn {
    width: 100%;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover { background: #1ebe5b; transform: translateY(-2px); }

/* =====================
   HOW IT WORKS
===================== */
.how-it-works {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--card-2);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.step-item:hover { border-color: var(--primary); transform: translateY(-4px); }

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(var(--primary-rgb),0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 18px;
    font-size: 24px;
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb),0.2);
}

.step-item h4 { margin-bottom: 8px; font-size: 16px; }
.step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =====================
   WHY CHOOSE US
===================== */
.why-us { max-width: 1200px; margin: auto; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.why-image img { width: 100%; height: 500px; object-fit: cover; display: block; }

.why-image-badge {
    position: absolute;
    bottom: 25px;
    right: -20px;
    background: var(--primary);
    color: #000;
    padding: 18px 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.why-image-badge strong { display: block; font-size: 28px; font-family: 'Playfair Display', serif; }
.why-image-badge span { font-size: 11px; font-weight: 600; }

.why-content { padding: 20px 0; }
.why-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 16px; line-height: 1.2; }
.why-content > p { color: var(--text-muted); margin-bottom: 40px; font-size: 15px; line-height: 1.8; }

.features-list { display: flex; flex-direction: column; gap: 20px; }

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover { border-color: var(--primary); }

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(var(--primary-rgb),0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text h4 { margin-bottom: 4px; font-size: 15px; }
.feature-text p { font-size: 13px; color: var(--text-muted); }

/* =====================
   TESTIMONIALS
===================== */
.testimonials {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials-inner { max-width: 1200px; margin: auto; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--dark);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-card:hover { border-color: rgba(var(--primary-rgb),0.3); transform: translateY(-4px); }

.review-stars { color: var(--primary); margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }

.review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.reviewer img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.reviewer-info strong { display: block; font-size: 14px; }
.reviewer-info span { font-size: 12px; color: var(--text-muted); }

/* =====================
   FAQ SECTION
===================== */
.faq-section { max-width: 800px; margin: auto; padding: 90px 5%; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active { border-color: var(--primary); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question .arrow {
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question .arrow { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }

/* =====================
   CTA BANNER
===================== */
.cta-banner {
    max-width: 1200px;
    margin: 0 auto 90px;
    padding: 0 5%;
}

.cta-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 32px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); color: #000; margin-bottom: 8px; }
.cta-text p { color: rgba(0,0,0,0.65); font-size: 15px; }

.cta-actions { display: flex; gap: 15px; flex-wrap: wrap; position: relative; z-index: 1; }

.cta-btn-dark {
    background: #000;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-btn-dark:hover { background: #111; transform: translateY(-2px); }

.cta-btn-light {
    background: rgba(0,0,0,0.15);
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(0,0,0,0.2);
    transition: var(--transition);
    white-space: nowrap;
}

.cta-btn-light:hover { background: rgba(0,0,0,0.25); }

/* =====================
   FOOTER
===================== */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 70px 5% 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo { font-size: 22px; margin-bottom: 16px; display: flex; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 24px; max-width: 280px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--dark-2); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); text-decoration: none; font-size: 15px;
    transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: #000; border-color: var(--primary); }

.footer-col h4 { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; color: var(--text-light); }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; }
.footer-contact-item i { color: var(--primary); width: 16px; flex-shrink: 0; }
.footer-contact-item span { color: var(--text-muted); font-size: 14px; }

.footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p { color: var(--text-muted); font-size: 13px; }
.footer-bottom a { color: var(--primary); text-decoration: none; }

/* =====================
   FLOATING CALL BTN
===================== */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb),0.35);
    text-decoration: none;
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb),0.4); }
    70% { box-shadow: 0 0 0 14px rgba(var(--primary-rgb),0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb),0); }
}

.floating-call:hover { transform: scale(1.1); background: var(--primary-dark); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .contact-btn { display: none; }
    .hamburger { display: flex; }

    .hero { background-attachment: scroll; }

    h1 { letter-spacing: -1px; }

    .stats-inner { grid-template-columns: repeat(2, 1fr); }

    .why-grid { grid-template-columns: 1fr; }

    .cta-inner { padding: 40px 30px; flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 35px; }

    .footer-bottom { flex-direction: column; text-align: center; }

    .membership-card { display: none; }

    .date-inputs { grid-template-columns: 1fr; }

    section { padding: 60px 5%; }
}

@media (max-width: 480px) {
    .glass-nav { padding: 12px 20px; }

    .stats-inner { grid-template-columns: 1fr 1fr; gap: 15px; }

    .car-grid { grid-template-columns: 1fr; }

    .steps-grid { grid-template-columns: 1fr; }

    .hero-btns { flex-direction: column; }
    .btn-yellow, .btn-outline { text-align: center; }

    .cta-inner { padding: 30px 20px; }
    .cta-actions { flex-direction: column; }
    .cta-btn-dark, .cta-btn-light { text-align: center; }

    .faq-section { padding: 60px 5%; }
}