@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&family=Outfit:wght@200;300;400;500;700&display=swap');

:root {
    --bg-dark: #000000;
    --bg-card: #080808;
    --bg-elevated: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent: #d4af37;
    /* Champagne Gold */
    --accent-hover: #f1c40f;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(212, 175, 55, 0.4);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-lux: 0 40px 80px rgba(0, 0, 0, 0.8);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 🌀 Reveal Animations */
.reveal-init {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition-slow);
}

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

/* ================= TYPOGRAPHY & STRUCTURE ================= */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 6rem;
    /* Increased from 4rem */
    position: relative;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.fleet-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    /* Pure obsidian black */
}

/* Smooth Scrolling context */
html {
    scroll-behavior: smooth;
    background: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
}

/* ================= HEADER (Capsule Style) ================= */
.header-mercedes {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    /* Slightly narrowed from 90% */
    max-width: 1200px;
    /* Reduced from 1400px for a more compact look */
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 60px;
    padding: 0.85rem 1.75rem;
    transition: var(--transition-slow);
}

.header-scrolled {
    top: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.75rem;
}

.header-inner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    /* Reduced from 3rem for narrower feel */
}

.header-mercedes .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.header-mercedes .logo-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    /* Increased from 1.6rem */
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    line-height: 1;
}

.header-mercedes .logo-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    /* Increased from 0.6rem */
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 5px;
}

.mercedes-nav {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
}

.mercedes-nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.5rem 0;
    opacity: 0.6;
    transition: var(--transition-fast);
    position: relative;
}

.mercedes-nav a:hover,
.mercedes-nav a.active {
    opacity: 1;
}

.mercedes-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

.header-util-link {
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.header-util-link:hover {
    opacity: 1;
    color: var(--accent);
}

.lang-switch-flags {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.5;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-flag:hover {
    opacity: 0.8;
}

.lang-flag.active {
    opacity: 1;
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Luxury Footer */
.main-footer {
    background: #050505;
    color: #ffffff;
    padding-top: 6rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
}

.footer-philosophy {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 320px;
}

.footer-social-lux {
    display: flex;
    gap: 1.5rem;
}

.footer-social-lux a {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-social-lux a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-value:hover {
    color: var(--accent);
}



.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-col {
        margin-bottom: 1rem;
    }

    .footer-title {
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 1px;
        background: var(--accent);
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-contact-item {
        align-items: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}



/* ================= BUTTONS (Minimalist Luxury) ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-slow);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: #000000;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.mt-4 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

/* ================= HERO (Cinematic & Clean) ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-vip-inner {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 3rem;
}

/* Luxury Hero Styles */
.hero-luxury {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    animation: kenBurns 20s ease-in-out infinite;
}

.mobile-banner {
    display: none;
}

.desktop-banner {
    display: block;
}

@media (max-width: 768px) {
    .mobile-banner {
        display: block;
        animation: none !important;
    }

    .desktop-banner {
        display: none;
    }
}

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

    50% {
        transform: scale(1.1);
    }

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    /* Reduced opacity and centered */
    z-index: 2;
}

.hero-content-inner {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    /* Signature Modern look */
    text-transform: uppercase;
}

.hero-pre-title {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.6em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.8;
}

.hero-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: transparent;
    border: none;
    padding: 0;
}

.hero-dikey-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Professional look */
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

.hero-vip-left {
    flex: 0 0 auto;
    max-width: 800px;
    padding-right: 2rem;
}

.hero-vip-right {
    flex-shrink: 0;
    margin-left: auto;
}

.hero-vip-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-vip-btn-wrap {
    margin-top: 1rem;
}

.btn-mercedes-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.btn-mercedes-outline:hover {
    background: #fff;
    color: #000;
}

.hero-vip-rating {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

/* ── Hero Booking Bar: Minimal & Elegant ── */
.hero-booking-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    /* Changed from 90% */
    max-width: 1100px;
    background: rgba(5, 5, 5, 0.55);
    /* Changed from 0.4 */
    backdrop-filter: blur(30px);
    /* Changed from 25px */
    -webkit-backdrop-filter: blur(30px);
    /* Changed from 25px */
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Changed from 0.15 */
    padding: 0;
    border-radius: 100px;
    z-index: 50;
    transition: var(--transition-slow);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    height: 85px;
    /* Added */
}

.hero-booking-bar:hover {
    border-color: rgba(212, 175, 55, 0.4);
    /* Changed from 0.35 */
    background: rgba(8, 8, 8, 0.8);
    /* Changed from 5,5,5,0.6 */
}

.hero-booking-bar .container {
    padding: 0;
    max-width: 100%;
    height: 100%;
}

.hero-booking-horizontal {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: 100%;
    /* Added */
}

.hero-booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    /* Changed from 0.2rem */
    flex: 1;
    position: relative;
    padding: 0 1.75rem;
    /* Removed vertical padding, handled by height/center */
    transition: background 0.3s;
    cursor: pointer;
    justify-content: center;
    height: 100%;
    /* Added */
}

.hero-booking-field:hover {
    background: rgba(212, 175, 55, 0.06);
    /* Changed from 0.05 */
}

.hero-booking-field:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 25px;
    /* Changed from 1.5rem */
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    /* Changed from 0.1 */
}

.hero-booking-field label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Changed from 0.4rem */
    margin-bottom: 0.3rem;
    /* Changed from 0.2rem */
    opacity: 0.9;
    /* Kept original opacity */
}

.hero-booking-field label i {
    font-size: 0.75rem;
    opacity: 0.8;
}

.field-input-group {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-booking-horizontal input,
.hero-booking-horizontal select {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem !important;
    /* Changed from 0.9rem */
    padding: 0 !important;
    cursor: pointer;
    transition: var(--transition-fast);
    /* Moved from end of snippet */
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: none !important;
}

.hero-booking-horizontal select {
    appearance: none;
    -webkit-appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="rgba(212, 175, 55, 0.6)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat right center / 12px;
    padding-right: 1.25rem !important;
}

.hero-booking-horizontal select option {
    background: #111;
    color: #fff;
}

.hero-booking-horizontal input[type="time"] {
    font-size: 0.75rem !important;
    opacity: 0.5;
    width: auto;
}

.hero-booking-horizontal input:focus,
.hero-booking-horizontal select:focus {
    color: var(--accent) !important;
}

.hero-booking-horizontal input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hero-booking-horizontal input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.hero-booking-horizontal .btn-find {
    margin: 0;
    height: 100%;
    padding: 0 2.5rem;
    font-size: 0.75rem;
    border-radius: 0;
    font-weight: 700;
    background: var(--accent);
    color: #000;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    align-self: stretch;
}

.hero-booking-horizontal .btn-find:hover {
    background: #fff;
    color: #000;
}

.hero-booking-form .form-group {
    margin-bottom: 0;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-form-row .form-group {
    min-width: 0;
}

.hero-form-row select,
.hero-form-row input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-vip-features {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.hero-features-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-feat-item {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-feat-text {
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.hero-feat-item:hover .hero-feat-text {
    color: var(--accent);
}

/* Included section */
.included-section {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.included-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.included-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.included-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.included-content .section-title {
    margin-bottom: 2rem;
}

.included-list {
    list-style: none;
}

.included-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.included-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Homepage fleet - 4 araç yan yana, geniş tasarım */
.fleet-section-home .vehicle-grid.homepage-fleet {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

@media (max-width: 1200px) {
    .fleet-section-home .vehicle-grid.homepage-fleet {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fleet-section-home .vehicle-grid.homepage-fleet {
        grid-template-columns: 1fr;
    }
}

.fleet-section-home .vehicle-card {
    min-height: 400px;
}

.fleet-section-home .vehicle-image {
    height: 200px;
}

.homepage-fleet .vehicle-specs {
    display: none;
}

/* Premium tribal - geniş ince bant, altın çizgiler */
.premium-tribal-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.premium-tribal-wrap {
    width: 100%;
    height: 2px;
    background: var(--border);
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-tribal-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--bg-dark);
    border: 1px solid var(--accent);
    transform: translate(-50%, -50%) rotate(45deg);
}

.premium-tribal-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.vehicle-specs-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.vehicle-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: var(--bg-elevated);
}

.homepage-fleet .vehicle-card .vehicle-placeholder {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--border) 100%);
}

/* Blog home */
.blog-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.blog-title-line {
    flex: 1;
    min-width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--border) 10%, var(--accent) 30%, var(--accent) 70%, var(--border) 90%, transparent);
}

.blog-title-center {
    margin: 0;
    flex-shrink: 0;
    text-align: center;
    color: var(--accent);
}

.blog-section {
    padding: 5rem 0;
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-grid-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .blog-grid-two {
        grid-template-columns: 1fr;
    }
}

.blog-section-home .blog-grid-two {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.blog-card-home {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blog-card-home:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.blog-card-img {
    aspect-ratio: 16/10;
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.blog-section-home .blog-card-img {
    aspect-ratio: 16/9;
    height: 140px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border);
}

.blog-section-home .blog-card-placeholder {
    font-size: 2rem;
}

.blog-card-home h3 {
    padding: 1.25rem 1.25rem 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    flex: 1;
}

.blog-section-home .blog-card-home h3 {
    padding: 0.9rem 1rem 0.4rem;
    font-size: 1.05rem;
}

.blog-card-excerpt {
    padding: 0 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-section-home .blog-card-excerpt {
    padding: 0 1rem;
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: auto;
}

.blog-section-home .blog-link {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
}

.blog-link i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.blog-card-home:hover .blog-link i {
    transform: translateX(4px);
}

/* Testimonials - text only stars */
.testimonial-card .testimonial-stars {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Sections */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.features-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* Luxury Vehicle Cards */
.vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lux);
}

.vehicle-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

.vehicle-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #151515, #0d0d0d);
}

.vehicle-name-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.vehicle-name-price h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vehicle-price-block {
    text-align: right;
}

.vehicle-price-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.vehicle-price-unit {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vehicle-specs-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.spec-item i {
    font-size: 1.1rem;
    color: var(--accent);
}

/* Fleet */
.fleet-section {
    padding: 5rem 0;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1280px) {
    .vehicle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vehicle-info .btn {
    margin-top: auto;
}

.btn-book-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--accent);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-book-card:hover {
    background: var(--accent);
    color: #000;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-dark) 100%);
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--text-secondary);
}

/* Fleet Filter - Left Sidebar Layout (Wide) */
.fleet-with-sidebar {
    padding: 2rem 0 4rem;
    width: 100%;
}

.fleet-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    align-items: start;
    min-height: 60vh;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 0 12px;
}

.fleet-with-sidebar .fleet-sidebar {
    position: sticky;
    top: 100px;
    padding: 0;
    min-width: 220px;
}

.fleet-with-sidebar .fleet-content {
    padding: 0 0 0 2rem;
    min-width: 0;
}

.filter-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    min-height: 400px;
}

.filter-panel-title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
}

.filter-form-vertical .filter-group {
    margin-bottom: 1.25rem;
}

.filter-form-vertical .filter-group:last-of-type {
    margin-bottom: 1.5rem;
}

.filter-form-vertical label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.filter-form-vertical select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    cursor: pointer;
    color-scheme: dark;
}

.filter-form-vertical select:focus {
    border-color: var(--accent);
    background: var(--bg-elevated);
    color: var(--text-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.filter-form-vertical select option {
    background: #1a1a1a;
    color: #ffffff;
}

.filter-form-vertical .btn {
    margin-top: 0.5rem;
}

.filter-form-vertical .btn-outline {
    margin-top: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.fleet-with-sidebar .vehicle-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

/* Advanced Fleet Components */
.fleet-categories-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fleet-categories-tabs::-webkit-scrollbar {
    display: none;
}

.tab-item {
    padding: 0.6rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tab-item:hover {
    color: #000;
    border-color: #000;
}

.tab-item.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.filter-form-vertical .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.filter-form-vertical .form-control:focus {
    border-color: #000;
}

/* Legacy fleet filter (kept for compatibility) */
.fleet-filter {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.filter-form .filter-row,
.filter-form .filter-grid {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-form select {
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    min-width: 140px;
}

.mb-2 {
    margin-bottom: 1rem;
}

.fleet-list {
    padding: 3rem 0;
}

/* Car Detail - Rental.al style */
.car-detail {
    padding: 7rem 0 4rem;
}

.car-detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.car-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: start;
}

.car-detail-left {
    min-width: 0;
}

.car-gallery-wrap {
    position: relative;
    margin-bottom: 0;
}

.car-gallery-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 0;
}

.car-gallery-main img {
    width: 100%;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.car-gallery-arrow {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.car-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.car-gallery-thumbs .thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
}

.car-gallery-thumbs .thumb:hover,
.car-gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--accent);
}

.car-video {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.car-specs-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.car-specs-row .spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.car-specs-row .spec-item i {
    font-size: 1.25rem;
    color: var(--accent);
}

.car-specs-row .spec-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.car-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
}

.car-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.car-prices-table .car-price-per-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.car-info-bullets {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.car-info-bullets i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.car-info-bullets ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.car-info-bullets li {
    padding: 0.35rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.car-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.car-insurance {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.car-insurance i {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.car-insurance strong {
    display: block;
    margin-bottom: 0.25rem;
}

.car-insurance span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.car-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.car-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.car-features-list li i {
    color: var(--accent);
    font-size: 0.8rem;
}

.car-booking-sidebar {
    position: sticky;
    top: 100px;
}

.car-booking-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.car-booking-box .form-group {
    margin-bottom: 1.25rem;
}

.car-booking-box .form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.car-booking-box select,
.car-booking-box input {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
}

.car-booking-box .time-input {
    margin-top: 0.5rem;
}

.car-booking-summary {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.booking-summary-row .car-total-price {
    font-size: 1.5rem;
    color: var(--accent);
}

.car-available {
    color: var(--success);
    font-size: 0.9rem;
}

.car-available i {
    margin-right: 0.35rem;
}

.btn-book-now {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.link-calendar {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.link-calendar:hover {
    text-decoration: underline;
}

.booking-form .form-group {
    margin-bottom: 1rem;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form-row .form-group {
    margin-bottom: 0;
    min-width: 0;
}

.booking-form-row select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.booking-form .time-input {
    margin-top: 0.25rem;
    width: 100%;
}

/* Checkout & Payment */
.checkout-section,
.payment-section {
    padding: 8rem 0 4rem;
}

.checkout-grid,
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.checkout-form-wrap h1,
.payment-methods h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-form-wrap .form-group {
    margin-bottom: 1rem;
}

.checkout-summary,
.payment-summary {
    position: sticky;
    top: 100px;
}

.checkout-summary h2,
.payment-summary h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.summary-car-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.summary-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.summary-details {
    list-style: none;
}

.summary-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-details .price {
    color: var(--accent);
    font-weight: 700;
}

.payment-options {
    margin-bottom: 1.5rem;
}

.payment-option {
    display: block;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.payment-option input {
    display: none;
}

.payment-option-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s;
}

.payment-option:hover .payment-option-inner,
.payment-option.active .payment-option-inner {
    border-color: var(--accent);
}

.payment-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.summary-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.summary-table {
    width: 100%;
}

.summary-table td {
    padding: 0.5rem 0;
}

.summary-table .total-row td {
    font-weight: 700;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.summary-table .price {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card strong {
    font-size: 0.9rem;
}

.contact-section {
    padding: 8rem 0;
}

/* Contact Premium */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/contact-bg.jpg') center/cover;
    /* Fallback if image doesn't exist */
    background-color: #000;
}

.contact-grid-premium {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card-lux {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-card-lux:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-content a,
.card-content p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-card .contact-social-flex {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.contact-social-flex a {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.contact-social-flex a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* Form Lux */
.contact-form-premium {
    background: var(--bg-elevated);
    padding: 4rem;
    border: 1px solid var(--border);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-secondary);
}

.lux-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group-lux {
    margin-bottom: 2rem;
}

.form-group-lux label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group-lux input,
.form-group-lux textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group-lux input:focus,
.form-group-lux textarea:focus {
    border-color: var(--accent);
}

.form-submit {
    margin-top: 3rem;
}

/* Map Wrapper */
.contact-map-wrapper {
    position: relative;
    height: 500px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-top: 5rem;
}

.map-container,
.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 1024px) {
    .contact-grid-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-premium {
        padding: 2.5rem;
    }
}

@media (max-width: 640px) {
    .lux-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-card-lux {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }
}

.alert {
    padding: 1.25rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* About - Premium */
.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920') center/cover no-repeat;
    opacity: 0.12;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1rem;
    border: 1px solid var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.about-hero-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.about-intro {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.about-intro-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.about-stat {
    padding: 1.5rem;
}

.about-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-values {
    padding: 5rem 0;
}

.about-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.about-value-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: rgba(202, 138, 4, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.about-value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-why {
    padding: 5rem 0;
    background: var(--bg-elevated);
}

.about-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-why-content .about-section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-why-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.about-why-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.about-why-list i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-why-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-why-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
}

.about-story {
    padding: 5rem 0;
}

.about-story-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-story-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border-top: 1px solid var(--border);
}

.about-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.about-cta-inner p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-why-image {
        order: -1;
        max-height: 280px;
    }

    .about-why-image img {
        min-height: 220px;
    }

    .about-why-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-buttons {
        flex-direction: column;
    }
}

/* Legacy about (kept for compatibility) */
.about-section {
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-features i {
    color: var(--accent);
}

/* Booking Success */
.booking-success {
    padding: 10rem 0 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.success-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.success-card h1 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
}

.success-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.booking-details {
    text-align: left;
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.booking-details p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Footer */
.main-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(202, 138, 4, 0.12);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Landing */
.landing-hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.landing-hero h1 {
    margin-bottom: 0.5rem;
}

.qb-form-inline {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.5rem 0;
}

.qb-form-inline input,
.qb-form-inline select {
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
}

.landing-fleet {
    padding: 3rem 0;
}

.landing-fleet h2 {
    margin-bottom: 2rem;
    text-align: center;
}

/* Content pages */
.content-section {
    padding: 3rem 0;
}

.container.narrow {
    max-width: 720px;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.content-card h2 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.5rem;
}

.content-card h2:first-child {
    margin-top: 0;
}

/* Delivery */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.delivery-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.delivery-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.locations-list h2 {
    margin-bottom: 1rem;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.blog-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.blog-card-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(0.9);
}

.blog-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.blog-placeholder {
    height: 100%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border);
}

.blog-content {
    padding: 0;
}

.blog-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card h2 a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-card:hover h2 a {
    color: var(--accent);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Single Blog Post */
.blog-single {
    padding: 8rem 0;
}

.blog-single .narrow {
    max-width: 800px;
}

.blog-single .blog-featured {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
    margin-bottom: 4rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.blog-single h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
}

.blog-meta {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.blog-body p {
    margin-bottom: 2rem;
}

.blog-body h2,
.blog-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    margin: 3rem 0 1.5rem;
    font-weight: 400;
}

/* Availability */
.availability-section {
    padding: 3rem 0;
}

.availability-legend {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .fleet-layout {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .fleet-sidebar {
        position: static;
    }

    .fleet-with-sidebar .fleet-content {
        padding: 1.5rem 0 0;
    }

    .car-detail-grid {
        grid-template-columns: 1fr;
    }

    .car-booking-sidebar {
        position: static;
        order: -1;
    }

    .car-features-list {
        grid-template-columns: 1fr;
    }

    .car-booking-box .form-group {
        margin-bottom: 1rem;
    }

    .booking-form-row {
        grid-template-columns: 1fr;
    }

    .checkout-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .car-info-sidebar {
        position: static;
    }

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

    .hero-vip-inner {
        flex-direction: column;
        padding-top: 0;
    }

    .hero-vip-left {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 5rem 1.5rem 1rem;
        text-align: left;
        max-width: none;
    }

    .hero-booking-bar {
        display: none !important;
    }

    .hero-booking-horizontal {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .hero-booking-horizontal .hero-booking-field {
        padding: 1.25rem;
        border-bottom: 1px solid var(--border);
    }

    .hero-booking-field:not(:last-child)::after {
        display: none;
    }

    .hero-booking-horizontal .btn-find {
        padding: 1.25rem;
        width: 100%;
    }

    .hero-vip-rating {
        display: block;
        text-align: center;
    }

    .included-inner {
        grid-template-columns: 1fr;
    }

    .included-image {
        order: -1;
    }

    .blog-grid-home {
        grid-template-columns: 1fr;
    }

    .hero-form-row {
        grid-template-columns: 1fr;
    }
}

/* ================= LUXURY FOOTER ================= */
.main-footer {
    background: #000000;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    font-family: 'Inter', sans-serif;
}

.footer-top .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.4em;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-philosophy {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-social-lux {
    display: flex;
    gap: 1.5rem;
}

.footer-social-lux a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.footer-social-lux a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.contact-value {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.contact-value:hover {
    color: var(--accent);
}

.footer-motto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.2;
    opacity: 0.95;
    max-width: 620px;
    margin: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-top .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-top .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ================= BRAND SHOWCASE SECTION ================= */
.brand-showcase-section {
    padding: 10rem 0;
    background: #000000;
    overflow: hidden;
}

.showcase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.showcase-text {
    flex: 1;
    max-width: 600px;
}

.showcase-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
}

.showcase-slogan {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.showcase-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
}

.showcase-image {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-image img {
    width: 80%;
    /* Reduced from 100% for a more minimal look */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.9));
    transition: var(--transition-slow);
}

.brand-showcase-section:hover .showcase-image img {
    transform: scale(1.05);
}

/* Glassmorphism accent behind image */
.showcase-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

@media (max-width: 1024px) {
    .showcase-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .showcase-text {
        order: 1;
        max-width: none;
    }

    .showcase-image {
        order: 2;
        width: 100%;
    }

    .showcase-image img {
        width: 100%;
        transform: none;
    }

    .showcase-desc {
        margin: 0 auto;
    }
}

/* ================= MINIMAL BLOG SECTION (Home) ================= */
.blog-section-home {
    padding: 6rem 0;
    background: #000000;
}

.blog-grid-home {
    display: grid;
    gap: 4rem;
    /* Increased gap for more air */
    max-width: 1000px;
    /* Narrower than container */
    margin: 0 auto;
}

.blog-grid-two {
    grid-template-columns: 1fr 1fr;
}

.blog-card-home {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 21/9;
    /* Cinematic wide format */
    overflow: hidden;
    border-radius: 0;
    /* Sharp corners for clean minimalism */
    margin-bottom: 1.5rem;
    background: var(--bg-elevated);
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(0.2) brightness(0.9);
}

.blog-card-home:hover .blog-card-img img {
    transform: scale(1.05);
    filter: grayscale(0) brightness(1);
}

.blog-card-home h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    /* Slightly smaller, more refined */
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.blog-card-excerpt {
    display: none;
    /* Removed for ultra-minimalism */
}

.blog-link {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.blog-card-home:hover .blog-link {
    gap: 1rem;
}

.blog-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.blog-title-line {
    flex-grow: 1;
    height: 1px;
    background: var(--border);
    max-width: 100px;
}

@media (max-width: 900px) {
    .blog-grid-two {
        grid-template-columns: 1fr;
    }

    .blog-title-line {
        display: none;
    }
}

/* ================= MOBILE OPTIMIZATIONS ================= */

/* 1. Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 2rem;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-short);
    transform-origin: center;
}

.menu-toggle.active .hamburger-line {
    background-color: #fff !important;
    /* Force white for maximum visibility on black menu */
    height: 3px;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* 2. Responsive Header Opt */
@media (max-width: 1024px) {
    .header-mercedes {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        padding: 2rem 1.5rem !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        background: rgba(0, 0, 0, 0.95) !important;
    }

    .header-inner-flex {
        padding: 0 !important;
        position: relative;
        justify-content: flex-end;
        /* Push toggle to the right */
    }

    .header-left {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .menu-toggle {
        display: flex;
        z-index: 2000;
        /* Extremely high to stay above nav */
        position: relative;
    }

    .mercedes-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition-slow);
        z-index: 1000;
        padding-top: 80px;
    }

    .mercedes-nav.active {
        right: 0;
    }

    .mercedes-nav a {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
        opacity: 0.8;
    }

    .mobile-only-flex {
        display: flex !important;
        gap: 2.5rem;
        margin-top: 3rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 60%;
        justify-content: center;
    }

    .mobile-only-flex .lang-flag {
        width: 35px;
        height: 35px;
        opacity: 0.7;
    }

    .mobile-only-flex .lang-flag.active {
        opacity: 1;
        transform: scale(1.2);
        border-color: var(--accent);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }

    .desktop-only-flex {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-mercedes {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 0.5rem 1rem;
        border-left: none;
        border-right: none;
        border-top: none;
    }
}

/* 3. Hero & Home Sections Mobile */
@media (max-width: 768px) {
    .hero-luxury {
        min-height: 100vh;
        padding-top: 60px;
    }

    .hero-main-title {
        font-size: 3rem;
        text-align: center;
        width: 100%;
        line-height: 1;
    }

    .hero-booking-horizontal {
        flex-direction: column;
        gap: 1.2rem;
    }

    .hero-booking-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 0;
    }

    .hero-booking-card {
        display: none !important;
        /* Explicitly ensure background/blur is gone */
    }

    .hero-booking-bar {
        display: none !important;
    }

    .included-inner,
    .showcase-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 3rem;
    }

    .included-image img {
        height: 300px;
    }
}

/* 4. Fleet & Car Detail Grid Refinements */
@media (max-width: 1024px) {
    .fleet-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .fleet-sidebar {
        width: 100%;
        position: static;
    }

    .car-detail-grid {
        grid-template-columns: 1fr;
    }

    .car-booking-sidebar {
        width: 100%;
        position: static;
        margin-top: 3rem;
    }

    .about-stats-grid,
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 5. About & Global Grids */
@media (max-width: 768px) {

    .about-stats-grid,
    .about-values-grid,
    .about-why-grid,
    .about-why-list,
    .blog-grid-home,
    .vehicle-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .car-specs-row {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 1rem 0;
    }

    .car-specs-row .spec-item {
        flex: 1 0 50%;
        padding: 0.5rem 0;
    }

    .showcase-slogan {
        font-size: 2.22rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    /* Vehicle Card Mobile Refinements */
    .vehicle-card {
        min-height: auto !important;
        margin-bottom: 1rem;
    }

    .vehicle-info {
        padding: 1.5rem !important;
    }

    .vehicle-name-price h3 {
        font-size: 1.2rem !important;
    }

    .vehicle-price-num {
        font-size: 1.5rem !important;
    }

    .vehicle-specs-icons {
        gap: 1rem !important;
        padding: 1rem 0 !important;
        margin-bottom: 1.5rem !important;
    }

    .spec-item {
        font-size: 0.7rem !important;
    }

    .spec-item i {
        font-size: 0.9rem !important;
    }

    .vehicle-image {
        height: 220px !important;
    }
}

/* 6. Body Lock */
body.menu-open {
    overflow: hidden;
}

/* Global Visibility Utilities */
.mobile-only,
.mobile-only-flex {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

    .mobile-only-flex {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }

    .text-center-mobile {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content-mobile {
        position: absolute;
        bottom: 80px;
        left: 0;
        width: 100%;
        z-index: 100;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .mobile-hero-slogan-container {
        position: absolute;
        top: 25%;
        left: 0;
        width: 100%;
        z-index: 100;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .mobile-hero-slogan {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.65rem;
        font-style: italic;
        font-weight: 500;
        color: #ffffff;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
        text-align: center;
        letter-spacing: 0.05em;
        line-height: 1.25;
        margin: 0;
        padding: 0 1.5rem;
    }
}

/* --- Ultra-Luxury Premium Button --- */
.btn-premium-gold {
    display: inline-flex;
    align-items: center;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    /* Balanced luxury spacing */
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 2px;
    /* Sharp, modern luxury */
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(212, 175, 55, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: luxuryPulse 3s infinite ease-in-out, fadeInUp 1.2s ease-out forwards;
}

/* Internal Gold Accent Line */
.btn-premium-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

/* Liquid Gold Animation (Loop) */
.btn-premium-gold::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transform: rotate(35deg);
    transition: all 1s;
    animation: flareLoop 6s infinite linear;
}

.btn-premium-gold i {
    font-size: 0.75rem;
    color: var(--accent);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Active/Tap state for mobile */
.btn-premium-gold:active {
    transform: scale(0.96) translateY(2px);
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.btn-premium-gold:active i {
    color: #000;
    transform: translateX(10px);
}

@keyframes flareLoop {
    0% {
        transform: translate(-30%, -30%) rotate(35deg);
    }

    50% {
        transform: translate(30%, 30%) rotate(35deg);
    }

    100% {
        transform: translate(-30%, -30%) rotate(35deg);
    }
}

@keyframes luxuryPulse {
    0% {
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    }

    50% {
        border-color: rgba(212, 175, 55, 0.8);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    }

    100% {
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fleet Mobile Filter Sidebar */
@media (max-width: 1024px) {
    .fleet-layout {
        position: relative;
    }

    .mobile-filter-bar {
        width: 100%;
        margin-bottom: 2rem;
        display: flex !important;
        justify-content: center;
    }

    .mobile-filter-btn {
        width: 100%;
        background: #000;
        color: var(--accent);
        border: 1px solid var(--accent);
        padding: 1.25rem;
        font-size: 0.9rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        border-radius: 4px;
        cursor: pointer;
    }

    .fleet-sidebar {
        position: fixed !important;
        top: 0;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.98) !important;
        z-index: 2100 !important;
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 2.5rem !important;
        overflow-y: auto !important;
        display: block !important;
    }

    .fleet-sidebar.active {
        left: 0 !important;
    }

    .filter-panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2.5rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding-bottom: 1.5rem;
    }

    .filter-close-btn {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 2.5rem;
        line-height: 1;
        cursor: pointer;
    }

    .fleet-content {
        width: 100% !important;
    }

    .fleet-categories-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Fix Line Clamp Lint */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}