/**
 * Regal Rental Cars Master Stylesheet
 * Design Language: Premium Midnight Navy & Executive Gold (RentGo-inspired)
 * Fonts: Mona Sans (headings), Outfit (display), Inter (body)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Mona+Sans:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    /* Regal Color Palette */
    --regal-navy: #0B1220;          /* Deep Midnight Navy */
    --regal-navy-light: #0F1A2E;    /* Slightly lighter navy */
    --regal-gold: #F5B754;          /* Executive Gold */
    --regal-gold-dark: #C5A85C;     /* Darker Gold for hover */
    --regal-amber: #FCB900;         /* Luminous Amber */
    --regal-white: #FFFFFF;
    --regal-off-white: #F8FAFC;     /* Platinum Light */
    --regal-slate: #94A3B8;         /* Cyan-bluish Gray */
    --regal-slate-dark: #64748B;    /* Classic Slate */
    --regal-charcoal: #1E293B;      /* Secondary Charcoal */
    --regal-border: rgba(255, 255, 255, 0.08);
    --regal-border-light: #E2E8F0;
    --regal-success: #22C55E;
    --regal-error: #EF4444;
    --regal-focus: #F5B754;         /* Focus ring color */

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #F5B754 0%, #FCB900 100%);
    --gradient-navy-gold: linear-gradient(135deg, #0B1220 0%, #1A2536 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(11,18,32,0.45) 0%, rgba(11,18,32,0.85) 100%);

    /* Typography Scale */
    --font-display: 'Outfit', 'Mona Sans', sans-serif;
    --font-heading: 'Mona Sans', 'Outfit', sans-serif;
    --font-body: 'Inter', 'Mona Sans', sans-serif;
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */

    /* Spacing Scale */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */

    /* Border Radius Scale */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --radius-4xl: 28px;
    --radius-full: 9999px;

    /* Shadow System */
    --shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 10px 30px rgba(245, 183, 84, 0.2);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.02);
    --shadow-card-hover: 0 20px 40px rgba(11, 18, 32, 0.08);
    --shadow-hero: 0 20px 50px rgba(0, 0, 0, 0.18);
    --shadow-focus: 0 0 0 3px rgba(245, 183, 84, 0.4);

    /* Transition Durations */
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 400ms;
    --duration-reveal: 800ms;

    /* Easing */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1280px;
    --header-height: 100px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-body);
    background-color: var(--regal-white);
    color: var(--regal-slate-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--regal-navy);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Layout System */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

@media (max-width: 991px) {
    .grid-12 { gap: 24px; }
}

.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-7 { grid-column: span 7; }
.col-6 { grid-column: span 6; }
.col-5 { grid-column: span 5; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }
.col-2 { grid-column: span 2; }

@media (max-width: 991px) {
    .col-12, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2 { grid-column: span 12; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    padding: 28px 0;
    font-family: var(--font-display);
    transition: background-color 0.4s var(--transition-smooth), 
                padding 0.4s var(--transition-smooth), 
                border-color 0.4s var(--transition-smooth),
                box-shadow 0.4s var(--transition-smooth);
}

.site-header.is-scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(11, 18, 32, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--regal-border);
    padding: 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--regal-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.brand-logo span {
    color: var(--regal-gold);
}

.brand-logo img {
    height: 48px;
    width: auto;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    color: #E2E8F0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.4s var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--regal-gold);
}

.nav-menu .has-children > a::after {
    content: '▾';
    font-size: 0.8rem;
    color: var(--regal-slate);
    margin-top: 1px;
    transition: color 0.4s var(--transition-smooth);
}

.nav-menu .has-children:hover > a::after {
    color: var(--regal-gold);
}

.nav-menu li.current-menu-item a {
    color: var(--regal-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--regal-gold);
    color: #070B14;
    padding: 16px 32px;
    font-size: 0.9rem;
    border: 2px solid var(--regal-gold);
    box-shadow: 0 4px 15px rgba(245, 183, 84, 0.15);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--regal-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 183, 84, 0.3);
}

.btn-secondary {
    background-color: var(--regal-gold);
    color: var(--regal-white);
    padding: 16px 32px;
    font-size: 0.9rem;
    border: 2px solid var(--regal-gold);
    box-shadow: 0 4px 15px rgba(245, 183, 84, 0.2);
}

.btn-secondary:hover {
    background-color: var(--regal-white);
    color: var(--regal-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 183, 84, 0.4);
}

.btn-outline {
    border: 2px solid var(--regal-white);
    color: var(--regal-white);
    background: transparent;
    padding: 14px 36px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition-smooth);
}

.btn-outline:hover {
    background-color: var(--regal-white);
    color: var(--regal-navy);
    transform: translateY(-2px);
}

.btn-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--regal-gold);
    color: #070B14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(245, 183, 84, 0.15);
}

.btn-icon:hover {
    background-color: var(--regal-white);
    color: var(--regal-navy);
    transform: translateY(-2px) rotate(45deg);
    box-shadow: 0 4px 20px rgba(245, 183, 84, 0.3);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 100000;
    margin-left: 10px;
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: var(--regal-white);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--regal-navy);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 99999;
    padding: 80px 30px 40px;
    box-sizing: border-box;
    transition: right 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
}

.mobile-nav-drawer.is-active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--regal-white);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.mobile-nav-close:hover {
    color: var(--regal-gold);
}

.mobile-nav-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-menu-list a {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-display);
    transition: color 0.3s ease;
    display: block;
}

.mobile-nav-menu-list a:hover {
    color: var(--regal-gold);
}

.mobile-nav-menu-list li.current-menu-item a {
    color: var(--regal-gold);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 11, 20, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 991px) {
    .site-header {
        padding: 18px 0;
    }
    .nav-menu {
        display: none;
    }
    .header-actions .btn-icon {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .header-actions .btn-primary {
        display: none !important;
    }
    .home .site-header {
        top: 0 !important;
    }
    .site-header {
        padding: 14px 0 !important;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        font-size: 1.35rem !important;
    }
}

/* Preloader */
#jb-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--regal-navy);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}

.preloader-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-letters {
    position: absolute;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--regal-white);
    letter-spacing: -2px;
    z-index: 10;
    transform: scale(0);
    opacity: 0;
    animation: text-pop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.15s;
    text-align: center;
    line-height: 1;
}

.preloader-letters span {
    color: var(--regal-gold);
}

.preloader-wheel-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    transform: scale(0);
    opacity: 0;
    animation: wheel-form 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.75s;
}

.preloader-wheel-svg {
    width: 100%;
    height: 100%;
    animation: wheel-spin-fast 0.65s infinite linear;
    animation-delay: 1.5s;
}

@keyframes text-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes wheel-form {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes wheel-spin-fast {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    border-radius: 46px;
    overflow: visible;
    background-color: var(--regal-navy);
    padding: 130px 80px 100px;
    height: 90vh;
    min-height: 600px;
    max-height: 850px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.4s ease-in-out;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 46px;
    padding: 130px 80px 100px;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 5;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.0);
    transition: transform 7.5s cubic-bezier(0.1, 0.45, 0.35, 1);
    z-index: 1;
    border-radius: 46px;
}

.hero-slide.active .slide-bg {
    transform: scale(1.08);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero-overlay);
    z-index: 2;
    border-radius: 46px;
}

.slider-content-box {
    position: relative;
    z-index: 10;
    max-width: 860px;
    color: var(--regal-white);
    text-align: left;
    margin-top: -30px;
    box-sizing: border-box;
    padding-left: 80px;
}

/* Staggered Text Reveal */
.hero-slide .slider-pre-title {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slide.active .slider-pre-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .slider-main-title {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    text-shadow: 0 2px 15px rgba(0,0,0,0.35);
}

.hero-slide.active .slider-main-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .slider-desc-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.hero-slide.active .slider-desc-text {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .slider-buttons {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s;
}

.hero-slide.active .slider-buttons {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide:not(.active) .slider-pre-title,
.hero-slide:not(.active) .slider-main-title,
.hero-slide:not(.active) .slider-desc-text,
.hero-slide:not(.active) .slider-buttons {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: none !important;
}

.slider-pre-title {
    color: var(--regal-gold);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.slider-main-title {
    font-size: 3.5rem;
    font-weight: 850;
    line-height: 1.15;
    font-family: var(--font-display);
    color: var(--regal-white);
    margin-bottom: 18px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.35);
}

.slider-desc-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #E2E8F0;
    margin-bottom: 24px;
    max-width: 650px;
    font-family: var(--font-body);
}

.slider-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Pagination Dots */
.slider-dots-wrapper {
    position: absolute;
    bottom: 40px;
    right: 80px;
    display: flex;
    gap: 12px;
    z-index: 100;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background-color: var(--regal-gold);
}

.slider-dot.active {
    background-color: var(--regal-gold);
    width: 28px;
    border-radius: 6px;
}

/* Floating Booking Capsule */
.booking-capsule-container {
    position: absolute;
    bottom: -5vh;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    min-width: 960px;
    box-sizing: border-box;
    z-index: 100;
}

.booking-capsule-card {
    background-color: var(--regal-white);
    border-radius: 100px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    padding: 26px 30px 26px 44px;
    border: 1px solid rgba(0,0,0,0.04);
    box-sizing: border-box;
    font-family: var(--font-body);
}

.booking-capsule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}

.booking-brand-column {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--regal-navy);
    line-height: 1.35;
    padding-right: 24px;
    border-right: 1px solid #E2E8F0;
    margin-right: 20px;
    white-space: nowrap;
}

.booking-input-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 20px;
    border-right: 1px solid #E2E8F0;
}

.booking-input-column.date-column {
    border-right: none;
    padding-right: 30px;
}

.booking-column-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--regal-navy);
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.booking-column-input {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #64748B !important;
    width: 100%;
    outline: none;
    font-family: var(--font-body);
    cursor: pointer;
}

.booking-submit-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 10px;
}

.booking-submit-btn {
    background-color: var(--regal-gold);
    color: var(--regal-white);
    border: none;
    border-radius: 50px;
    padding: 16px 44px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(245, 183, 84, 0.3);
    width: auto !important;
}

.booking-submit-btn:hover {
    background-color: var(--regal-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(11, 18, 32, 0.3);
}

.inline-booking-feedback {
    display: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 20px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.inline-feedback-success {
    background-color: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
}

.inline-feedback-error {
    background-color: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Hero */
@media (max-width: 1200px) {
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 160px 40px 60px !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .slider-content-box {
        margin-top: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        text-align: left;
    }
    .booking-capsule-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        min-width: auto;
        padding: 0;
        margin-top: 40px;
    }
    .booking-capsule-card {
        border-radius: 28px;
        padding: 32px;
    }
    .booking-capsule-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .booking-brand-column {
        grid-column: span 2;
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid #E2E8F0;
        font-size: 1.25rem;
    }
    .booking-input-column {
        border-right: none !important;
        padding: 14px 20px !important;
        background-color: #F8FAFC;
        border-radius: 14px;
        border: 1px solid #E2E8F0;
        box-sizing: border-box;
        transition: all 0.3s ease;
    }
    .booking-input-column:focus-within {
        border-color: var(--regal-gold);
        background-color: var(--regal-white);
        box-shadow: 0 0 0 3px rgba(245, 183, 84, 0.15);
    }
    .booking-submit-column {
        grid-column: span 2;
        justify-content: center;
        padding-left: 0;
        margin-top: 10px;
    }
    .booking-submit-btn {
        width: 100% !important;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 0 !important;
        height: 600px !important;
        min-height: auto !important;
        max-height: none !important;
        border-radius: 32px;
    }
    .hero-slide {
        padding: 120px 30px 40px !important;
        align-items: flex-start;
        border-radius: 32px;
    }
    .slide-bg { border-radius: 32px; }
    .slider-overlay { border-radius: 32px; }
    .slider-content-box { padding-left: 0 !important; }
    .slider-main-title { font-size: 2.8rem !important; line-height: 1.25; margin-bottom: 16px; }
    .slider-desc-text { font-size: 0.95rem !important; margin-bottom: 24px; }
    .booking-capsule-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .booking-brand-column {
        grid-column: span 1;
        padding-bottom: 12px;
        border-bottom: 1px solid #E2E8F0;
    }
    .booking-submit-column {
        grid-column: span 1;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0 !important;
        height: 520px !important;
        border-radius: 0 !important;
    }
    .hero-slide {
        padding: 100px 16px 30px !important;
        border-radius: 0 !important;
    }
    .slide-bg { border-radius: 0 !important; }
    .slider-overlay { border-radius: 0 !important; }
    .slider-main-title { font-size: 2.1rem !important; line-height: 1.3; }
    .slider-desc-text { font-size: 0.9rem !important; line-height: 1.55; }
    .booking-capsule-container { margin-top: 0 !important; }
    .booking-capsule-card {
        padding: 24px 16px !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid #E2E8F0 !important;
        border-bottom: 1px solid #E2E8F0 !important;
        box-shadow: none !important;
    }
}

/* ==========================================================================
   SECTION COMPONENTS
   ========================================================================== */

/* Section Headers */
.section-pre-title {
    color: var(--regal-gold);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.85rem;
    font-weight: 850;
    line-height: 1.2;
    color: var(--regal-navy);
    font-family: var(--font-display);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title { font-size: 2.15rem; }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.about-images-wrapper {
    position: relative;
    height: 580px;
    width: 100%;
}

.about-img-1 {
    width: 80%;
    height: 500px;
    border-radius: 36px;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.about-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 380px;
    border-radius: 36px;
    border: 12px solid var(--regal-white);
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.about-content {
    font-family: var(--font-body);
}

.about-desc {
    color: var(--regal-slate-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 36px;
}

.feature-box {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: rgba(245, 183, 84, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.feature-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--regal-navy);
    font-family: var(--font-display);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.88rem;
    color: var(--regal-slate-dark);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-images-wrapper { height: 480px; }
}

/* Services Grid */
.services-section {
    background-color: #F1F5F9;
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: var(--regal-white);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s var(--transition-bounce), 
                box-shadow 0.4s var(--transition-bounce), 
                border-color 0.4s var(--transition-bounce);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02) rotate(0.5deg);
    box-shadow: 0 20px 40px rgba(11, 18, 32, 0.08);
    border-color: rgba(245, 183, 84, 0.4);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background-color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.4s var(--transition-bounce), background-color 0.4s var(--transition-bounce);
}

.service-card:hover .service-card-icon {
    background-color: rgba(245, 183, 84, 0.1);
    transform: scale(1.15) rotate(8deg);
}

.service-card-icon svg {
    transition: transform 0.4s var(--transition-bounce);
}

.service-card:hover .service-card-icon svg {
    transform: scale(1.1);
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--regal-navy);
    font-family: var(--font-display);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--regal-slate-dark);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    justify-content: flex-end;
}

.service-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--regal-navy);
    transition: transform 0.4s var(--transition-bounce), 
                background-color 0.4s var(--transition-bounce), 
                color 0.4s var(--transition-bounce), 
                box-shadow 0.4s var(--transition-bounce);
    text-decoration: none;
}

.service-card:hover .service-arrow-btn {
    background-color: var(--regal-gold);
    color: var(--regal-white);
    transform: scale(1.1) rotate(-45deg);
    box-shadow: 0 4px 12px rgba(245, 183, 84, 0.35);
}

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

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

/* Fleet Carousel */
.fleet-carousel-section {
    background-color: var(--regal-white);
    padding: 100px 0;
    overflow: hidden;
}

.fleet-carousel-header {
    text-align: center;
    margin-bottom: 60px;
}

.fleet-carousel-pre-title {
    color: var(--regal-gold);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fleet-carousel-title {
    font-size: 2.85rem;
    font-weight: 855;
    line-height: 1.2;
    color: var(--regal-navy);
    font-family: var(--font-display);
    margin-top: 10px;
    margin-bottom: 0;
}

.fleet-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.fleet-carousel-wrapper {
      display: flex;
      gap: 28px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      padding: 24px 8px 48px;
      scrollbar-width: none;
  }
  
  .fleet-carousel-wrapper::-webkit-scrollbar {
      display: none;
  }
  
  .fleet-card {
      flex: 0 0 calc((100% - 84px) / 4);
      scroll-snap-align: start;
      background-color: var(--regal-white);
      border-radius: 32px;
      padding: 32px;
      border: 1px solid rgba(0, 0, 0, 0.04);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.015);
      transition: transform 0.45s var(--transition-bounce), 
                  box-shadow 0.45s var(--transition-bounce), 
                  border-color 0.45s var(--transition-bounce);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
  }
  
  .fleet-card:hover {
      transform: translateY(-12px) scale(1.015);
      box-shadow: 0 28px 55px rgba(11, 18, 32, 0.1);
      border-color: rgba(245, 183, 84, 0.3);
  }
  
  .fleet-card-img-box {
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      background: radial-gradient(circle, var(--regal-off-white) 0%, var(--regal-white) 100%);
      border-radius: 24px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.02);
      box-shadow: inset 0 2px 12px rgba(0,0,0,0.01);
  }
  
  .fleet-card-img {
      width: 90%;
      height: 90%;
      object-fit: contain;
      transition: transform 0.5s var(--transition-bounce);
  }
  
  .fleet-card:hover .fleet-card-img {
      transform: scale(1.08) translateY(-6px);
  }

.fleet-card-badge {
    font-size: 0.78rem;
    font-weight: 700;
    background: #F1F5F9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.fleet-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--regal-navy);
    margin-top: 0;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.fleet-card-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.fleet-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--regal-slate-dark);
}

.fleet-spec-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-spec-label svg {
    width: 16px;
    height: 16px;
    stroke: var(--regal-slate);
}

.fleet-spec-val {
    font-weight: 600;
    color: #475569;
}

.fleet-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.fleet-card-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 850;
    color: var(--regal-navy);
}

.fleet-card-price span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--regal-slate-dark);
}

.fleet-card-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--regal-gold);
    color: var(--regal-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fleet-card-btn:hover {
    background-color: var(--regal-navy);
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 4px 15px rgba(245, 183, 84, 0.4);
}

.fleet-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.fleet-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--regal-gold);
    color: var(--regal-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 183, 84, 0.3);
}

.fleet-control-btn:hover {
    background-color: var(--regal-navy);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(11, 18, 32, 0.3);
}

@media (max-width: 1400px) {
      .fleet-card { flex: 0 0 calc((100% - 72px) / 4); }
  }
  
  @media (max-width: 1100px) {
      .fleet-card { flex: 0 0 calc((100% - 48px) / 3); }
  }
  
  @media (max-width: 768px) {
      .fleet-card { flex: 0 0 calc((100% - 24px) / 2); }
  }
  
  @media (max-width: 480px) {
      .fleet-card { flex: 0 0 100%; }
  }

@media (max-width: 480px) {
    .fleet-card { flex: 0 0 100%; }
    .fleet-carousel-container { padding: 0 16px; }
}

/* Stats / Counter Section */
.stats-section {
    background-color: var(--regal-navy);
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--regal-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: #E2E8F0;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--regal-off-white);
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--regal-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.4s var(--transition-bounce);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 18, 32, 0.08);
    border-color: rgba(245, 183, 84, 0.2);
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--regal-slate-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--regal-gold);
}

.testimonial-name {
    font-weight: 700;
    color: var(--regal-navy);
    font-family: var(--font-display);
}

.testimonial-role {
    font-size: 0.88rem;
    color: var(--regal-slate);
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(245, 183, 84, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--regal-gold);
    width: 28px;
    border-radius: 6px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-navy-gold);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/rentgo/cta-bg-image.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 850;
    color: var(--regal-white);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.cta-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background-color: #070B14;
    color: var(--regal-slate);
    padding: 80px 0 40px;
    font-family: var(--font-body);
    border-top: 4px solid var(--regal-gold);
}

.site-footer h3 {
    color: var(--regal-white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--regal-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--regal-slate);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--regal-gold);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-contact-item .dashicons {
    color: var(--regal-gold) !important;
    font-size: 18px !important;
    width: 18px !important;
    height: 18px !important;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--regal-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--regal-gold);
}

.site-footer .copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #9CA3AF;
}

/* Footer Brand Column */
.footer-brand-desc {
    color: var(--regal-slate);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
}

.footer-iso-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    color: var(--regal-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-iso-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--regal-gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.brand-gold {
    color: var(--regal-gold);
}

/* Ensure brand logo works in footer context */
.site-footer .brand-logo {
    color: var(--regal-white);
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 8px;
}

.site-footer .brand-logo span {
    color: var(--regal-gold);
}

.site-footer .brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background-color: var(--regal-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-footer .brand-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--regal-navy);
}

/* Mobile Sticky Strip */
.mobile-sticky-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #070B14;
    border-top: 1px solid var(--regal-border);
    z-index: 99999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .mobile-sticky-strip { display: block; }
    .site-footer { padding-bottom: 120px; }
}

.sticky-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
}

.sticky-strip-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: var(--regal-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    border-right: 1px solid var(--regal-border);
    transition: all 0.3s;
}

.sticky-strip-grid a:hover {
    background-color: rgba(255,255,255,0.05);
}

.btn-strip-cta {
    background-color: var(--regal-gold) !important;
    color: #070B14 !important;
}

.btn-strip-cta:hover {
    background-color: var(--regal-white) !important;
}

/* Breadcrumb */
.breadcrumb-trail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--regal-slate);
    font-weight: 550;
}

.breadcrumb-trail a {
    color: var(--regal-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-trail a:hover {
    color: var(--regal-gold);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 100px 0 110px;
    background-color: var(--regal-navy);
    overflow: hidden;
    text-align: center;
    border-bottom: 3px solid var(--regal-gold);
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 1;
    filter: grayscale(100%);
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-badge {
    display: inline-block;
    background-color: var(--regal-gold);
    color: var(--regal-navy);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 5px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 855;
    line-height: 1.15;
    color: var(--regal-white);
    font-family: var(--font-display);
    margin: 0 auto 20px;
    max-width: 800px;
}

.page-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #E2E8F0;
    font-weight: 550;
}

.page-breadcrumbs a {
    color: var(--regal-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumbs a:hover {
    color: var(--regal-gold);
}

/* ==========================================================================
   SINGLE FLEET / VEHICLE DETAIL PAGE
   ========================================================================== */

.vehicle-details-main {
    background-color: var(--regal-off-white);
    padding: 80px 0 100px;
}

.vehicle-details-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 24px;
}

.vehicle-showroom-card {
    background: var(--regal-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.vehicle-showroom-img-box {
    position: relative;
    width: 100%;
    height: 480px;
    background: radial-gradient(circle, var(--regal-white) 0%, var(--regal-off-white) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.01);
    margin-bottom: 40px;
}

.vehicle-showroom-img {
    width: 85%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    transition: transform 0.6s var(--transition-bounce);
}

.vehicle-showroom-card:hover .vehicle-showroom-img {
    transform: scale(1.04);
}

.detail-section-title {
    font-size: 1.85rem;
    font-weight: 850;
    color: var(--regal-navy);
    font-family: var(--font-display);
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 24px;
    background-color: var(--regal-gold);
    border-radius: 4px;
}

.vehicle-overview-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--regal-slate-dark);
    margin-bottom: 40px;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--regal-off-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--regal-navy);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    background-color: var(--regal-white);
    border-color: rgba(245, 183, 84, 0.15);
    box-shadow: 0 8px 20px rgba(245, 183, 84, 0.04);
    transform: translateY(-2px);
}

.amenity-check {
    width: 20px;
    height: 20px;
    background-color: rgba(245, 183, 84, 0.1);
    color: var(--regal-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Sticky Spec Sidebar */
.sticky-spec-sidebar {
    position: sticky;
    top: 110px;
    background: var(--regal-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.sidebar-price-block {
    background: var(--gradient-navy-gold);
    padding: 35px 30px;
    text-align: center;
    border-bottom: 3px solid var(--regal-gold);
    color: var(--regal-white);
}

.sidebar-price-val {
    font-size: 2.85rem;
    font-weight: 900;
    color: var(--regal-gold);
    font-family: var(--font-display);
    display: block;
    line-height: 1;
}

.sidebar-price-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--regal-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 8px;
    opacity: 0.85;
}

.sidebar-spec-list {
    padding: 30px 30px 10px;
}

.sidebar-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #F1F5F9;
}

.sidebar-spec-row:last-child {
    border-bottom: none;
}

.sidebar-spec-label {
    color: var(--regal-slate-dark);
    font-size: 0.92rem;
    font-weight: 550;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-spec-icon {
    width: 20px;
    height: 20px;
    color: var(--regal-slate);
    flex-shrink: 0;
}

.sidebar-spec-val {
    color: var(--regal-navy);
    font-size: 0.95rem;
    font-weight: 750;
    text-transform: capitalize;
}

/* Sidebar CTAs */
.sidebar-cta-block {
    padding: 20px 30px 35px;
}

.vehicle-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--regal-gold);
    color: var(--regal-white) !important;
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 800;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s var(--transition-bounce);
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(245, 183, 84, 0.2);
}

.vehicle-cta-primary:hover {
    background-color: var(--regal-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 18, 32, 0.25);
}

.vehicle-cta-outline {
    display: block;
    background-color: transparent;
    color: var(--regal-navy) !important;
    border: 2px solid var(--regal-navy);
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 800;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s ease;
}

.vehicle-cta-outline:hover {
    background-color: var(--regal-navy);
    color: var(--regal-gold) !important;
    transform: translateY(-2px);
}

/* Trust Box */
.sidebar-trust-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.78rem;
    color: var(--regal-slate);
    line-height: 1.4;
}

.sidebar-trust-box div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 700;
    color: var(--regal-slate-dark);
}

.sidebar-trust-box svg {
    width: 13px;
    height: 13px;
    color: var(--regal-gold);
}

/* City Tags */
.vehicle-city-tags {
    background: var(--regal-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 28px;
    padding: 35px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.city-badges-flex {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.city-badge-item {
    background: var(--regal-off-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--regal-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.city-badge-item:hover {
    background: var(--regal-navy);
    color: var(--regal-gold);
    border-color: var(--regal-navy);
    transform: translateY(-2px);
}

/* Rate Cards */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.rate-card {
    background-color: var(--regal-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.015);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.rate-card:hover {
    border-color: rgba(245, 183, 84, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 183, 84, 0.05);
}

.rate-card-vip {
    border-top: 4px solid var(--regal-gold);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-section {
    padding: 80px 0 100px;
    background-color: var(--regal-white);
}

.contact-form-wrapper {
    background: var(--regal-white);
    border: 1px solid var(--regal-border-light);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-form-field {
    margin-bottom: 20px;
}

.contact-form-label {
    display: block;
    font-weight: 600;
    color: var(--regal-navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--regal-border-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--regal-navy);
    background: var(--regal-white);
    transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: var(--regal-gold);
    box-shadow: 0 0 0 3px rgba(245, 183, 84, 0.15);
}

.contact-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 8px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info-card {
    background: var(--regal-white);
    border: 1px solid var(--regal-border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--regal-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 183, 84, 0.1);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: rgba(245, 183, 84, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--regal-gold);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--regal-navy);
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--regal-slate-dark);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.d-flex { display: flex; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }