/* ========================================
   ROOT VARIABLES & RESETS
   ======================================== */
:root {
    /* Colors */
    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fb923c;
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #fb923c 100%);

    /* Neutrals */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Glass Effects */
    --glass: rgba(255, 255, 255, 0.25);
    --glass-dark: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 80px rgba(249, 115, 22, 0.15);
    --shadow-xl: 0 35px 100px rgba(249, 115, 22, 0.25);

    /* Typography */
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
    font-weight: 400;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--orange);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--orange);
    color: var(--white);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg,
            rgba(249, 115, 22, 0.1),
            rgba(251, 146, 60, 0.1));
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: -webkit-center;
    margin-bottom: 4rem;
}

.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.service-card,
.vehicle-card,
.pricing-card,
.testimonial-card {
    /* border: var(--orange-dark) !important; */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.revealed,
.vehicle-card.revealed,
.pricing-card.revealed,
.testimonial-card.revealed {
    /* border: var(--orange-dark) !important; */
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVBAR  
   ======================================== */

/* Top Bar - Keep same as before */
.header-top-saibuz {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.header.scrolled .header-top-saibuz {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.header-top-content-saibuz {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6875rem;
    /* 11px */
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-contact-saibuz {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-contact-item:hover {
    color: #ff7a00;
}

.header-contact-item i {
    color: #ff7a00;
    font-size: 0.75rem;
}

.header-social-saibuz {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon-saibuz {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.social-icon-saibuz:hover {
    color: #ff7a00;
    transform: translateY(-2px);
}

/* Main Header */
.header-saibuz {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.header-saibuz.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.navbar-saibuz {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* Logo with Image and Text */
.nav-brand-saibuz {
    flex-shrink: 0;
}

.logo-link-saibuz {
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.logo-link-saibuz::before {
    content: "";
    position: absolute;
    inset: -0.25rem;
    background: #ff7a00;
    border-radius: 0.75rem;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-link-saibuz:hover::before {
    opacity: 0.3;
}

.logo-container-saibuz {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    border-radius: 0.75rem;
    border: 2px solid #fff7ed;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-link-saibuz:hover .logo-container-saibuz {
    border-color: #fed7aa;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.15);
    transform: translateY(-2px);
}

.logo-image-saibuz {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 0.5rem;
    border: 2px solid #ff7a00;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-link-saibuz:hover .logo-image-saibuz {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.logo-text-saibuz {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.025em;
    line-height: 1.3;
    white-space: nowrap;
}

/* Scrolled state - smaller logo */
.header-saibuz.scrolled .logo-image-saibuz {
    width: 40px;
    height: 40px;
}

.header-saibuz.scrolled .logo-text-saibuz {
    font-size: 1rem;
}

/* Navigation Menu */
.nav-menu-saibuz {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-link-saibuz {
    font-size: 0.8125rem;
    /* 13px */
    font-weight: 800;
    color: #1f2937;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link-saibuz::after {
    content: "";
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff7a00;
    transition: width 0.3s ease;
}

.nav-link-saibuz:hover {
    color: #ff7a00;
}

.nav-link-saibuz:hover::after {
    width: 100%;
}

/* Navigation Actions */
.nav-actions-saibuz {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-signup-saibuz {
    font-size: 0.8125rem;
    /* 13px */
    font-weight: 700;
    color: #ff7a00;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-signup-saibuz:hover {
    color: #e66d00;
}

.btn-primary-saibuz {
    background: #ff7a00;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    /* 13px */
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-saibuz:hover {
    background: #e66d00;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.3);
}

.btn-primary-saibuz:active {
    transform: translateY(0);
}

/* Mobile Toggle */
.nav-toggle-saibuz {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 101;
}

.nav-toggle-saibuz span {
    width: 28px;
    height: 3px;
    background: #111827;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle-saibuz.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle-saibuz.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-saibuz.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.relay-menu-saibuz {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
}

.relay-menu-saibuz.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 2px solid #fed7aa;
}

.mobile-logo-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 3px solid #ff7a00;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.mobile-logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0;
}

.nav-menu-mobile-saibuz {
    list-style: none;
    padding: 0;
    margin: 3rem 0 3rem 0;
}

.nav-menu-mobile-saibuz li {
    margin-bottom: 1rem;
}

.nav-link-mobile-saibuz {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    color: #111827;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.nav-link-mobile-saibuz:hover {
    color: #ff7a00;
    padding-left: 1rem;
}

.nav-actions-mobile-saibuz {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-signup-mobile-saibuz {
    text-align: center;
    font-weight: 700;
    color: #6b7280;
    text-decoration: none;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.btn-signup-mobile-saibuz:hover {
    color: #ff7a00;
    background: #fff7ed;
}

.btn-primary-mobile-saibuz {
    background: #ff7a00;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 1.25rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-mobile-saibuz:hover {
    background: #e66d00;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* ========================================
   1920x1080 FULL HD OPTIMIZATION + RESPONSIVE
   ======================================== */

/* 1920px+ UltraWide/4K - Max spacing */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 2rem;
    }

    /* Wider container */

    .hero-saibuz-grid {
        gap: 6rem;
        /* Extra space between left/right */
        max-width: 1600px;
        margin: 0 auto;
    }

    .hero-saibuz-left {
        max-width: 50rem;
    }

    /* Wider text area */
    .hero-saibuz-right {
        min-height: 600px;
        /* Taller car area */
        transform: translateY(-100px);
        /* Bolder shift on huge screens */
    }

    .hero-car-backdrop {
        width: 120%;
        height: 95%;
    }

    .hero-saibuz-title {
        font-size: 5.25rem;
    }

    /* Massive title */
}

/* 1440p-1920px Full HD Perfect */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
    }

    .hero-saibuz-grid {
        gap: 5rem;
    }

    .hero-saibuz-right {
        transform: translateY(-90px);
        /* Perfect for 1080p */
        min-height: 550px;
    }
}

/* Your existing shifts preserved ✓ */
@media (max-width: 1024px) {
    .hero-saibuz-right {
        transform: translateY(-60px);
    }
}

@media (max-width: 768px) {
    .hero-saibuz-right {
        transform: translateY(-40px);
    }
}

@media (max-width: 1024px) {

    .nav-menu-saibuz,
    .nav-actions-saibuz,
    .header-top-saibuz {
        display: none;
    }

    .nav-toggle-saibuz {
        display: flex;
    }

    .navbar-saibuz {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-saibuz {
        padding: 1rem 0;
    }

    .logo-image-saibuz {
        width: 42px;
        height: 42px;
    }

    .logo-text-saibuz {
        font-size: 1rem;
    }

    .logo-container-saibuz {
        gap: 0.625rem;
        padding: 0.375rem 0.875rem 0.375rem 0.375rem;
    }

    .relay-menu-saibuz {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .logo-image-saibuz {
        width: 36px;
        height: 36px;
    }

    .logo-text-saibuz {
        font-size: 0.875rem;
    }

    .relay-menu-saibuz {
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu-header {
        padding: 1rem;
    }

    .mobile-logo-image {
        width: 50px;
        height: 50px;
    }

    .mobile-logo-text {
        font-size: 1rem;
    }
}

/* ========================================
   HERO SECTION 
   ======================================== */
.hero-saibuz {
    position: relative;
    padding-top: 7rem;
    /* padding-bottom: 16rem; */
    background: #ffffff;
    overflow: hidden;
}

/* Background Decorative Element */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: rgba(255, 122, 0, 0.05);
    border-radius: 10rem 0 0 10rem;
    z-index: 0;
    transform: translateX(2.5rem);
}

.hero-saibuz-content {
    position: relative;
    z-index: 1;
}

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

/* Left Side */
.hero-saibuz-left {
    position: relative;
    z-index: 10;
    max-width: 40rem;
}

.hero-saibuz-title {
    font-size: clamp(3.5rem, 8vw, 5.25rem);
    font-weight: 900;
    color: #111827;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 2.5rem;
}

.title-solid {
    color: #111827;
}

.title-faded {
    color: rgba(17, 23, 39, 0.3);
}

.hero-saibuz-subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 28rem;
}

.hero-saibuz-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ff7a00;
    font-weight: 900;
    font-size: 1.25rem;
    text-decoration: none;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
    position: relative;
}

.hero-saibuz-link::after {
    content: "";
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff7a00;
    transition: width 0.3s ease;
}

.hero-saibuz-link:hover::after {
    width: calc(100% - 3rem);
}

.hero-link-arrows {
    display: flex;
    margin-left: -0.25rem;
    transition: transform 0.3s ease;
}

.hero-saibuz-link:hover .hero-link-arrows {
    transform: translateX(0.5rem);
}

.hero-link-arrows i {
    font-size: 1.5rem;
}

.arrow-faded {
    opacity: 0.4;
    margin-left: -0.25rem;
}

/* Right Side - 3D Car Visual */
.hero-saibuz-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    transform: translateY(-80px);
}

.hero-car-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(8deg);
    width: 115%;
    height: 90%;
    background: #ff7a00;
    border-radius: 4rem;
    z-index: 1;
    box-shadow: 0 30px 60px -15px rgba(255, 122, 0, 0.4);
}

.hero-car-wrapper {
    position: relative;
    z-index: 2;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-car-wrapper:hover {
    transform: rotate(-2deg) scale(1.05);
}

.hero-car-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 60px 40px rgba(0, 0, 0, 0.45)) brightness(1.05) contrast(1.1);
}

/* Status Badge */
.hero-status-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1rem;
    z-index: 3;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid #f9fafb;
    animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-pulse {
    width: 1.75rem;
    height: 1.75rem;
    background: #ff7a00;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.badge-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #9ca3af;
    letter-spacing: 0.2em;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.badge-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.025em;
    line-height: 1;
}

/* Booking Bar Container */
.booking-bar-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6.25rem;
    z-index: 30;
    padding: 0 1rem;
    pointer-events: none;
}

.booking-bar-container>div {
    pointer-events: auto;
}

/* Booking Row 2 Mobile Alignment Fix */
@media (max-width: 1024px) {
    .booking-row-2 {
        grid-template-columns: repeat(2, 1fr);
        /* Even 2x2: dates top, phone+btn bottom */
        gap: 1.25rem;
    }

    .booking-search {
        grid-column: 2;
        /* Button aligns right in bottom row */
        align-self: end;
        height: auto;
        /* Remove fixed height */
    }

    .btn-book-now {
        height: 100%;
        /* Fill field height */
        min-height: 52px;
    }
}

@media (max-width: 768px) {
    .booking-row-2 {
        grid-template-columns: 1fr;
        /* Full stack on small mobile */
        gap: 1rem;
    }

    .booking-datetime-wrapper {
        flex-direction: column;
        /* Stack time+date vertically */
        gap: 0.75rem;
        padding: 1rem !important;
    }

    .datetime-section {
        padding: 0.75rem 1rem;
        /* Compact */
        flex: none;
        width: 100%;
    }

    .booking-search {
        grid-column: auto;
        /* Reset to full width */
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .booking-row-2 {
        gap: 0.875rem;
    }

    .booking-label {
        font-size: 0.8125rem;
        /* Already in CSS, reinforces */
    }

    .btn-book-now {
        padding: 0 20px;
        font-size: 0.95rem;
    }
}


/* ========================================
   VEHICLE DROPDOWN STYLING
   ======================================== */

.vehicle-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px !important;
    cursor: pointer;
    font-weight: 500;
}

.vehicle-select option {
    padding: 12px;
    font-size: 15px;
}

.vehicle-select optgroup {
    font-weight: 700;
    font-size: 14px;
    color: #ff7a00;
    padding: 8px 0;
    background: #fff5eb;
}

.dropdown-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff7a00;
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s;
}

.booking-input-wrapper:has(.vehicle-select:focus) .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* ========================================
   BOOK NOW BUTTON - MODERN ORANGE ACCENT
   ======================================== */

.btn-book-now {
    width: 100%;
    height: 100%;
    min-height: 56px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 12px rgba(255, 122, 0, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 32px;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.btn-book-now:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ffb800 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(255, 122, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Active/Click effect */
.btn-book-now:active {
    transform: translateY(0);
    box-shadow:
        0 2px 8px rgba(255, 122, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.btn-book-now i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-book-now:hover i {
    transform: scale(1.1);
}

/* Text styling */
.btn-book-now span {
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Shimmer effect on hover */
.btn-book-now::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.btn-book-now:hover::before {
    left: 100%;
}

/* Loading state */
.btn-book-now.loading {
    pointer-events: none;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    opacity: 0.8;
}

.btn-book-now.loading i {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Focus state for accessibility */
.btn-book-now:focus {
    outline: none;
    box-shadow:
        0 4px 12px rgba(255, 122, 0, 0.25),
        0 0 0 4px rgba(255, 122, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-book-now {
        font-size: 0.95rem;
        padding: 0 24px;
        min-height: 52px;
    }

    .btn-book-now i {
        font-size: 1.1rem;
    }

    .btn-book-now span {
        font-size: 0.95rem;
    }
}

/* Booking Bar Container */
.booking-bar-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6.25rem;
    z-index: 30;
    padding: 0 1rem;
    pointer-events: none;
}

.booking-bar-container>div {
    pointer-events: auto;
}

.booking-bar-saibuz {
    max-width: 1280px;
    margin: 0 auto;
}

.booking-bar-inner {
    background: #ffffff;
    border-radius: 4rem;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    border: 1px solid #f9fafb;
    position: relative;
}

/* Booking Rows */
.booking-row-1,
.booking-row-2 {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.booking-row-2 {
    grid-template-columns: 1fr 1fr 1fr 200px;
    margin-bottom: 0;
}

/* Booking Fields */
.booking-field {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-label {
    font-size: 0.875rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.025em;
    margin-left: 0.5rem;
}

/* Input Wrapper */
.booking-input-wrapper {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border-radius: 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.booking-input-wrapper:focus-within {
    border-color: #ff7a00;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.1);
}

.booking-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    margin-right: 1rem;
    flex-shrink: 0;
}

.booking-input {
    background: transparent;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
    border: none;
    outline: none;
}

.booking-input::placeholder {
    color: #9ca3af;
}

/* Location Input with Map Button */
.location-input-wrapper {
    position: relative;
    padding-right: 4rem;
}

.location-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: #ff7a00;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    z-index: 2;
}

.location-btn:hover {
    background: #e66d00;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}

.location-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.location-btn i {
    font-size: 0.875rem;
}

/* Selected Location Display */
.selected-location {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid #fed7aa;
    border-radius: 1rem;
    padding: 0.875rem 1rem;
    margin-top: 0.5rem;
    animation: slideIn 0.3s ease;
}

.selected-location[style*="display: flex"] {
    display: flex !important;
}

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

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

.selected-location i.fa-check-circle {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.location-address {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
    word-break: break-word;
}

.clear-location {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.clear-location:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
}

.clear-location:active {
    transform: scale(0.9);
}

.clear-location i {
    font-size: 0.75rem;
}

/* Car Type Toggles */
.booking-car-type {
    /* No additional styles needed, inherits from booking-field */
}

.car-type-toggles {
    display: flex;
    gap: 1.25rem;
}

.car-type-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border-radius: 2rem;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
}

.car-type-btn:hover {
    border-color: rgba(255, 122, 0, 0.3);
    transform: translateY(-2px);
}

.car-type-btn.active {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #ffffff;
    box-shadow: 0 20px 40px -10px rgba(255, 122, 0, 0.4);
    transform: translateY(-2px);
}

.car-type-icon {
    width: 2.5rem;
    height: 1rem;
    background: currentColor;
    opacity: 0.2;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.car-type-btn.active .car-type-icon {
    opacity: 0.4;
}

.suv-icon {
    width: 3rem;
    height: 1.25rem;
}

.car-type-text {
    font-size: 0.6875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* DateTime Wrapper */
.booking-datetime-wrapper {
    display: flex;
    background: #f9fafb;
    border-radius: 2rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.booking-datetime-wrapper:focus-within {
    border-color: #ff7a00;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.1);
}

.datetime-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1.25rem;
}

.datetime-divider {
    width: 1px;
    background: #e5e7eb;
    align-self: stretch;
}

.booking-icon-sm {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.datetime-input {
    background: transparent;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1f2937;
    border: none;
    outline: none;
}

.datetime-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: opacity(0.6);
    transition: filter 0.2s ease;
}

.datetime-input::-webkit-calendar-picker-indicator:hover {
    filter: opacity(1);
}

/* Search Button */
.booking-search {
    align-self: flex-end;
    height: 70px;
}

.btn-search-car {
    width: 100%;
    background: #14b8a6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 2rem;
    font-weight: 900;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 40px -10px rgba(20, 184, 166, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.btn-search-car:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -10px rgba(20, 184, 166, 0.5);
}

.btn-search-car:active {
    transform: scale(0.95);
}

.btn-search-car i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.btn-search-car:hover i {
    transform: rotate(12deg);
}

/* ========================================
   MAP MODAL STYLES
   ======================================== */

/* Modal Container */
.map-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.map-modal.active {
    display: flex;
}

.map-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.map-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

/* Modal Header */
.map-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #f3f4f6;
    flex-shrink: 0;
}

.map-modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.map-modal-title i {
    color: #ff7a00;
    font-size: 1.5rem;
}

.map-modal-close {
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.map-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1) rotate(90deg);
}

.map-modal-close:active {
    transform: scale(0.95) rotate(90deg);
}

.map-modal-close i {
    font-size: 1rem;
}

/* Map Search Section */
.map-modal-search {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.map-search-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.map-search-wrapper:focus-within {
    border-color: #ff7a00;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.15);
}

.map-search-wrapper>i {
    color: #9ca3af;
    font-size: 1rem;
    flex-shrink: 0;
}

.map-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
}

.map-search-input::placeholder {
    color: #9ca3af;
}

.map-current-location {
    width: 2.25rem;
    height: 2.25rem;
    background: #ff7a00;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.map-current-location:hover {
    background: #e66d00;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

.map-current-location:active {
    transform: scale(0.95);
}

.map-current-location i {
    font-size: 0.875rem;
}

/* Autocomplete Results */
.map-autocomplete-results {
    margin-top: 0.75rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.map-autocomplete-results.active {
    display: block;
}

.map-autocomplete-results::-webkit-scrollbar {
    width: 6px;
}

.map-autocomplete-results::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.map-autocomplete-results::-webkit-scrollbar-thumb {
    background: #ff7a00;
    border-radius: 10px;
}

.autocomplete-item {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #fff7ed;
}

.autocomplete-item-main {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.autocomplete-item-secondary {
    font-size: 0.8125rem;
    color: #6b7280;
}

/* Map Container */
.map-container {
    position: relative;
    flex: 1;
    min-height: 400px;
    background: #f3f4f6;
    overflow: hidden;
}

.google-map {
    width: 100%;
    height: 100%;
}

.map-marker-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    pointer-events: none;
}

.map-marker-center i {
    font-size: 3rem;
    color: #ff7a00;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: markerBounce 1s ease-in-out infinite;
}

@keyframes markerBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Selected Location Info */
.map-selected-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.map-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-info-icon i {
    color: #ff7a00;
    font-size: 1.25rem;
}

.map-info-text {
    flex: 1;
    min-width: 0;
}

.map-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.map-info-address {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
    margin: 0;
    word-break: break-word;
}

/* Modal Actions */
.map-modal-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 2px solid #f3f4f6;
    flex-shrink: 0;
}

.btn-map-cancel,
.btn-map-confirm {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-map-cancel {
    background: #f3f4f6;
    color: #6b7280;
}

.btn-map-cancel:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: translateY(-2px);
}

.btn-map-cancel:active {
    transform: scale(0.95);
}

.btn-map-confirm {
    background: #ff7a00;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.btn-map-confirm:hover {
    background: #e66d00;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.4);
}

.btn-map-confirm:active {
    transform: scale(0.95);
}

.btn-map-confirm i {
    font-size: 1rem;
}

/* ========================================
   GEOAPIFY AUTOCOMPLETE
   ======================================== */
.location-input-wrapper {
    position: relative;
}

.autocomplete-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #ff7a00;
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.2);
    z-index: 9999;
    display: none;
}

.autocomplete-results.active {
    display: block;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 122, 0, 0.1);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: rgba(255, 122, 0, 0.08);
}

.autocomplete-icon {
    color: #ff7a00;
    font-size: 18px;
    min-width: 24px;
}

.autocomplete-text {
    flex: 1;
}

.autocomplete-main {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.autocomplete-secondary {
    font-size: 0.85rem;
    color: #666;
}

.autocomplete-item.no-results,
.autocomplete-item.error {
    justify-content: center;
    cursor: default;
}

.autocomplete-item.error {
    color: #dc3545;
}

/* ========================================
   RESPONSIVE - BOOKING BAR & MAP MODAL
   ======================================== */

/* Large Tablets and Below */
@media (max-width: 1200px) {
    .booking-bar-inner {
        padding: 3rem;
    }

    .booking-row-1,
    .booking-row-2 {
        gap: 1.75rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-saibuz-right {
        transform: translateY(-60px);
        /* Less on tablet */
    }

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

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

    .booking-car-type {
        grid-column: 1 / -1;
    }

    .booking-search {
        grid-column: 1 / -1;
    }

    .booking-bar-inner {
        padding: 2.5rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .hero-saibuz-right {
        transform: translateY(-40px);
    }

    .booking-bar-container {
        bottom: -8rem;
    }

    .booking-row-1,
    .booking-row-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-car-type,
    .booking-search {
        grid-column: auto;
    }

    .booking-bar-inner {
        padding: 2rem 1.5rem;
        border-radius: 2.5rem;
    }

    .booking-input-wrapper,
    .booking-datetime-wrapper {
        padding: 1rem 1.25rem;
    }

    .location-input-wrapper {
        padding-right: 3.5rem;
    }

    .location-btn {
        width: 2.25rem;
        height: 2.25rem;
    }

    /* Map Modal Responsive */
    .map-modal-content {
        border-radius: 1.5rem;
        max-height: 95vh;
    }

    .map-modal-header,
    .map-modal-search,
    .map-selected-info,
    .map-modal-actions {
        padding: 1.25rem 1.5rem;
    }

    .map-container {
        min-height: 300px;
    }

    .map-modal-title {
        font-size: 1.125rem;
    }

    .map-modal-title i {
        font-size: 1.25rem;
    }

    .selected-location {
        flex-wrap: wrap;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .booking-bar-container {
        bottom: -10rem;
        padding: 0 0.5rem;
    }

    .booking-bar-inner {
        padding: 1.5rem;
        border-radius: 2rem;
    }

    .booking-label {
        font-size: 0.8125rem;
    }

    .booking-input,
    .datetime-input {
        font-size: 0.8125rem;
    }

    .car-type-toggles {
        gap: 0.75rem;
    }

    .car-type-btn {
        padding: 1.25rem 0.75rem;
    }

    .car-type-text {
        font-size: 0.625rem;
    }

    .btn-search-car {
        font-size: 0.8125rem;
        padding: 1.125rem;
    }

    /* Map Modal Mobile */
    .map-modal {
        padding: 0.5rem;
    }

    .map-modal-content {
        border-radius: 1rem;
        max-height: 98vh;
    }

    .map-modal-header,
    .map-modal-search,
    .map-selected-info,
    .map-modal-actions {
        padding: 1rem;
    }

    .map-modal-title {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .map-modal-title i {
        font-size: 1.125rem;
    }

    .map-modal-close {
        width: 2.25rem;
        height: 2.25rem;
    }

    .map-search-wrapper {
        padding: 0.75rem 1rem;
    }

    .map-search-input {
        font-size: 0.875rem;
    }

    .map-current-location {
        width: 2rem;
        height: 2rem;
    }

    .map-container {
        min-height: 250px;
    }

    .map-marker-center i {
        font-size: 2.5rem;
    }

    .map-info-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .map-info-icon i {
        font-size: 1.125rem;
    }

    .map-info-label {
        font-size: 0.6875rem;
    }

    .map-info-address {
        font-size: 0.875rem;
    }

    .map-modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-map-cancel,
    .btn-map-confirm {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .selected-location {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .selected-location i.fa-check-circle {
        font-size: 1.125rem;
    }

    .location-address {
        font-size: 0.8125rem;
    }

    .clear-location {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .booking-bar-inner {
        padding: 1.25rem;
    }

    .booking-row-1,
    .booking-row-2 {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .location-btn {
        width: 2rem;
        height: 2rem;
    }

    .location-btn i {
        font-size: 0.75rem;
    }

    .car-type-icon {
        width: 2rem;
        height: 0.875rem;
    }

    .suv-icon {
        width: 2.5rem;
        height: 1rem;
    }
}

/* Print Styles */
@media print {

    .booking-bar-saibuz,
    .map-modal {
        display: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {

    .booking-input-wrapper,
    .booking-datetime-wrapper,
    .car-type-btn {
        border-width: 2px;
    }

    .location-btn,
    .btn-search-car {
        border: 2px solid transparent;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .booking-input-wrapper,
    .booking-datetime-wrapper,
    .car-type-btn,
    .location-btn,
    .btn-search-car,
    .selected-location,
    .map-modal-overlay,
    .map-modal-content,
    .map-marker-center i {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================
   RESPONSIVE - HERO & BOOKING BAR
   ======================================== */
@media (max-width: 1024px) {
    .hero-saibuz-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-bg-decoration {
        width: 60%;
    }

    .hero-saibuz-left {
        text-align: center;
        max-width: 100%;
    }

    .hero-saibuz-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-saibuz-link {
        justify-content: center;
    }

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

    .booking-bar-inner {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-saibuz {
        padding-top: 6rem;
        /* padding-bottom: 12rem; */
    }

    .hero-saibuz-title {
        font-size: 3rem;
    }

    .hero-saibuz-subtitle {
        font-size: 1.1rem;
    }

    .hero-car-backdrop {
        width: 120%;
        height: 85%;
    }

    .hero-status-badge {
        bottom: -1rem;
        left: 0.5rem;
        padding: 1rem;
        gap: 1rem;
    }

    .badge-icon {
        width: 3rem;
        height: 3rem;
    }

    .badge-title {
        font-size: 1.25rem;
    }

    .booking-bar-inner {
        padding: 2rem 1.5rem;
        border-radius: 2.5rem;
    }

    .booking-row-1,
    .booking-row-2 {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-saibuz-title {
        font-size: 3.5rem;
    }

    .hero-status-badge {
        flex-direction: column;
        text-align: center;
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .booking-bar-container {
        bottom: -8rem;
    }

    .booking-bar-inner {
        padding: 1.5rem;
    }

    .car-type-toggles {
        gap: 0.75rem;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 40px 0;
    background: var(--white);
}

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

.service-card {
    border-color: var(--orange-dark) !important;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.2rem 1.8rem;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.3);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.service-features i {
    color: var(--orange);
    font-size: 0.85rem;
}

.service-book-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-orange);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.service-book-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.4);
    color: var(--white) !important;
    text-decoration: none !important;
}

.service-book-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-book-btn:hover i {
    transform: translateX(4px);
}

/* Modern Services Section */
/* Explore Services CTA */
.explore-services-wrap {
  margin-top: 4rem;
}

.explore-services-card {
  background: #fff7ed;
  border-radius: 20px;
  padding: 2.5rem 3rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  box-shadow: 0 30px 70px rgba(249, 115, 22, 0.15);
}

/* Text */
.explore-services-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.explore-services-text p {
  color: #6b7280;
  font-size: 1rem;
  max-width: 520px;
}

/* Button */
.explore-services-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  padding: 0.9rem 2.2rem;
  border-radius: 999px;

  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
  transition: all 0.3s ease;
}

.explore-services-btn span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.explore-services-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(249, 115, 22, 0.45);
}

.explore-services-btn:hover span {
  transform: translateX(4px);
}

/* Tablet */
@media (max-width: 768px) {
  .explore-services-card {
    padding: 2rem;
  }

  .explore-services-text h3 {
    font-size: 1.4rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .explore-services-card {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem;
  }

  .explore-services-btn {
    width: 100%;
    justify-content: center;
  }
}

.services-cta-row {
    display:flex;
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  margin-top: 2rem;
}

.services-cta-btn {
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
}

.services-cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 70px rgba(249, 115, 22, 0.4);
}

.modern-services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.modern-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gradient-orange), transparent);
}

.services-showcase {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(249, 115, 22, 0.3);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 80px;
}

.service-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-orange);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.service-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    padding: 0.75rem 0;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width var(--transition-base);
}

.service-link:hover {
    color: var(--orange-dark);
    padding-left: 1rem;
}

.service-link:hover::after {
    width: 100%;
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(4px);
}


.modern-service-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.modern-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gradient-orange), transparent);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.1));
    color: var(--orange);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title-modern {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle-modern {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card-modern {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.3);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.service-card-modern:hover .service-icon-modern {
    transform: rotateY(360deg);
}

.service-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-content-modern p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-orange);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.service-btn-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.4);
    color: var(--white) !important;
    text-decoration: none !important;
}

.service-btn-modern i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-btn-modern:hover i {
    transform: translateX(4px);
}

/* Small cards adjustment */
.service-card-modern.small {
    padding: 1.5rem;
}

.service-card-modern.small .service-content-modern p {
    display: none;
}

.service-card-modern.small h3 {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modern-service-section {
        padding: 80px 0;
    }
}

.zigzag-services {
    padding: 40px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.zigzag-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.03) 0%, transparent 70%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.zigzag-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.zigzag-badge {
    position: relative;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    margin-bottom: 1.5rem;
}

.zigzag-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    border-radius: 50px;
}

.zigzag-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.zigzag-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.75;
}

.zigzag-grid {
    position: relative;
    z-index: 2;
}

.service-morph-full {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3.5rem;
    margin-bottom: 2rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    border-color: var(--orange-dark);

}

.service-morph-full.elevated {
    border-color: var(--orange-dark);
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow:
        20px 20px 60px rgba(0, 0, 0, 0.08),
        -20px -20px 60px rgba(255, 255, 255, 0.9),
        inset 1px 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-morph-full.recessed {
    border-color: var(--orange-dark);

    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    box-shadow:
        inset 20px 20px 60px rgba(0, 0, 0, 0.08),
        inset -20px -20px 60px rgba(255, 255, 255, 0.9),
        1px 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-morph-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    border-color: var(--orange-dark);
}

.service-morph-half {
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-morph-half.left {
    background: linear-gradient(135deg, #fef7ff 0%, #fff7fe 100%);
    box-shadow:
        15px 15px 40px rgba(0, 0, 0, 0.06),
        -15px -15px 40px rgba(255, 255, 255, 0.95);
}

.service-morph-half.right {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0faff 100%);
    box-shadow:
        15px 15px 40px rgba(0, 0, 0, 0.06),
        -15px -15px 40px rgba(255, 255, 255, 0.95);
}

.morph-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.morph-icon.metallic {
    background: linear-gradient(145deg, var(--orange) 0%, var(--orange-dark) 100%);
    box-shadow:
        0 10px 30px rgba(249, 115, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.morph-icon.inset {
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.morph-details h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.morph-details p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.morph-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.morph-btn.primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.morph-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.morph-btn.primary:hover::before {
    left: 100%;
}

.morph-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.morph-btn.inset {
    background: transparent;
    color: var(--orange);
    border: 2px solid rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(10px);
}

.morph-btn.inset:hover {
    background: rgba(249, 115, 22, 0.08);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.service-morph-compact {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-morph-mini {
    flex: 1;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow:
        10px 10px 30px rgba(0, 0, 0, 0.05),
        -10px -10px 30px rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-morph-mini:hover {
    transform: translateY(-8px);
    box-shadow:
        15px 15px 40px rgba(0, 0, 0, 0.08),
        -15px -15px 40px rgba(255, 255, 255, 0.95);
}

.service-morph-mini i {
    font-size: 1.75rem;
    color: var(--orange);
    margin-bottom: 0.75rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 16px;
}

.service-morph-mini span {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1rem;
}

/* Stagger Animation */
[data-stagger] {
    opacity: 0;
    transform: translateY(40px);
}

[data-stagger].animate {
    display: flex;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 1024px) {

    .service-morph-pair,
    .service-morph-full {
        flex-direction: column;
        text-align: center;
    }

    .service-morph-pair {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zigzag-services {
        padding: 100px 0;
    }

    .service-morph-full,
    .service-morph-half {
        padding: 2rem 1.5rem;
    }

    .service-morph-compact {
        flex-direction: column;
    }
}


/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 40px 0;
    background: var(--gray-50);
}

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

.about-image-wrapper {
    position: relative;
    background: white;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    top: -40px;
    right:0px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.about-content {
    max-width: 580px;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-features {
    margin: 3rem 0;
}

.about-feature {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

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

.stat {
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat p {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ========================================
   VEHICLES SECTION
   ======================================== */
.vehicles {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.vehicle-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-lg);
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.vehicle-badge.premium {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.vehicle-badge.budget {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.vehicle-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.vehicle-info {
    padding: 2rem 1.75rem;
}

.vehicle-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.vehicle-category {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.vehicle-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.vehicle-price span {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.vehicle-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 2px solid var(--gray-100);
}

.vehicle-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.vehicle-features i {
    color: var(--orange);
    font-size: 1rem;
}

.vehicle-actions {
    margin-top: 1.5rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */

/* From Uiverse.io by eslam-hany */
.book {
    position: relative;
    border-radius: 10px;
    width: 220px;
    height: 300px;
    background-color: whitesmoke;
    -webkit-box-shadow: 1px 1px 12px var(--orange-dark);
    box-shadow: 1px 1px 12px var(--orange-dark);
    -webkit-transform: preserve-3d;
    -ms-transform: preserve-3d;
    transform: preserve-3d;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
}

.cover {
    top: 0;
    overflow: hidden;
    position: absolute;
    background-color: lightgray;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-box-shadow: 1px 1px 12px var(--orange-dark);
    box-shadow: 1px 1px 12px var(--orange-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.book:hover .cover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotatey(-80deg);
    -ms-transform: rotatey(-80deg);
    transform: rotatey(-80deg);
}

p {
    font-size: 20px;
    font-weight: bolder;
}

.cover-text {
    height: 30%;
    width: 100%;
    /* backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);         Safari */
    color: red;
    position: absolute;
    bottom: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.cover-text p {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111827;
    text-align: center;
}

/* Modern book styling using theme colors */
.book.modern-book {
    background: linear-gradient(145deg, var(--gray-50), #ffffff);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    overflow: visible;
    padding: 0;
    color: var(--gray-900);
}

/* Keep animation intact, just refine look */
.book.modern-book .cover {
    background: radial-gradient(circle at top left,
            #fff7ed 0,
            #fff 45%,
            #f9fafb 100%);
    border-radius: 18px;
    border: 1px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 18px 45px rgba(249, 115, 22, 0.25);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

/* Gradient layer on cover */
.cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(249, 115, 22, 0.08),
            rgba(251, 146, 60, 0.18));
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Ensure position context */
.book.modern-book .cover,
.book.modern-book .cover-content,
.book.modern-book .cover-image {
    position: relative;
}

/* Cover content */
.book.modern-book .cover-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

/* Small badge on top */
.book.modern-book .cover-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Title + subtitle on cover */
.book.modern-book .cover-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0.75rem 0 0.35rem;
    color: var(--gray-900);
}

.book.modern-book .cover-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0 0 0.85rem;
}

/* Tags at bottom of cover */
.book.modern-book .cover-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.book.modern-book .cover-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    color: var(--gray-700);
    font-weight: 600;
}

/* Cover image column */
.book.modern-book .cover-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.book.modern-book .cover-image img {
    width: 100%;
    height: 100%;
    max-height: 210px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(4px);
}

/* Inner pages – placed behind cover, animation still controlled by .book:hover .cover */
.book.modern-book .book-inner {
    position: absolute;
    inset: 10px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
    transform: translateZ(-1px);
    overflow: hidden;
}

/* Left and right pages offset slightly */
.book.modern-book .book-inner-left {
    left: 8px;
    right: 52%;
}

.book.modern-book .book-inner-right {
    left: 48%;
    right: 8px;
}

/* Inner content */
.book.modern-book .inner-content {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.book.modern-book .inner-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}

.book.modern-book .inner-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Small list inside book */
.book.modern-book .inner-list {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.book.modern-book .inner-list li::before {
    content: "•";
    color: var(--orange);
    margin-right: 0.4rem;
}

/* Reuse existing primary orange button inside book */
.book.modern-book .inner-book-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
}

/* Slight scale effect on hover (without touching rotation animation) */
.book.modern-book:hover {
    transform: scale(1.02) translateY(-4px) perspective(2000px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .book.modern-book {
        width: 200px;
        height: 270px;
    }

    .book.modern-book .cover {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .book.modern-book .cover-image img {
        max-height: 160px;
    }

    .book.modern-book .book-inner-left,
    .book.modern-book .book-inner-right {
        left: 10px;
        right: 10px;
    }
}

.outer-price {
    justify-self: center;
    display: flex;
    gap: 2rem;
}

.pricing {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.pricing-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--orange);
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.15rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.875rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--orange);
    font-size: 1rem;
}

.pricing-info {
    margin-top: 4rem;
}

.info-card {
    background: linear-gradient(135deg,
            rgba(249, 115, 22, 0.05),
            rgba(251, 146, 60, 0.05));
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-card i {
    color: var(--orange);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.destinations-scroller {
  overflow-x: auto;
  overflow-y: hidden;

  touch-action: pan-x pan-y;
  overscroll-behavior:auto;

  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}


/* Prevent accidental vertical dragging of cards */
.destinations-slider-track {
  display: flex;
  flex-wrap: nowrap;
}

.destinations-scroller::-webkit-scrollbar { display: none; }

.destinations-slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* iOS momentum */
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pan-y;
}

.destinations-slider-track {
  gap: 1.5rem; /* Card gap */
  cursor: grab;
  user-select: none;
  touch-action: pan-x pan-y pinch-zoom; /* Allow drag + zoom + vertical scroll */
  padding: 1rem 0; /* Edge padding for partial cards */
}


.destinations-slider-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none; /* Disable snap during drag */
}

.destination-card {
  flex: 0 0 320px; /* Fixed width */
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.destination-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
}

.special-destination {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  border: 2px dashed var(--orange);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.2); }
  50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.4); }
}

/* FIXED: Special card height matching */
.destination-special {
  padding: 2rem 1.5rem; /* Reduced padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.special-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  animation: float 3s ease-in-out infinite;
}


@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.special-cta {
  margin: 1.5rem 0;
}

.btn-special {
  background: white;
  color: var(--orange);
  border-color: var(--orange);
  font-weight: 700;
}

.btn-special:hover {
  background: var(--orange);
  color: white;
  transform: scale(1.05);
}

.special-subtitle {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
  opacity: 0.8;
}

/* Arrows overlay */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.slider-prev { left: 0.5rem; }
.slider-next { right: 0.5rem; }

.slider-arrow:hover {
  background: var(--gradient-orange);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}
.slider-indicators {
    
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,122,0,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-indicator.active,
.slider-indicator:hover {
  background: #f97316;
  transform: scale(1.2);
}


.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Indicators */
.slider-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-indicator.active {
  background: var(--gradient-orange);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .destination-card { flex: 0 0 280px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
}
@media (max-width: 1024px) {
  .destination-card { flex: 0 0 300px; min-height: 380px; }
}
@media (max-width: 768px) {
  .destination-card { flex: 0 0 280px; min-height: 360px; }
  .slider-prev, .slider-next { width: 48px; height: 48px; font-size: 1.1rem; }
  .destinations-slider-container { padding: 0 1rem; }
}

.destinations {
    padding: 60px 0;
    background: radial-gradient(circle at top left,
            #0f172a,
            #020617 55%,
            #020617 100%);
    color: #e5e7eb;
}

.destinations-header {
    text-align: left;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.destinations-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.14);
    color: #e5e7eb;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.destinations-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

.destinations-title {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #f9fafb;
}

.destinations-subtitle {
    margin: 0;
    color: #9ca3af;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Two-column layout */
.destinations-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: 2.75rem;
    align-items: stretch;
}

/* Left highlight card */
.destinations-highlight-card {
    position: relative;
    height: 100%;
    border-radius: 24px;
    padding: 2.1rem 2rem;
    background: radial-gradient(circle at top left, #0b1120, #020617);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow: hidden;
}

.destinations-highlight-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0,
            rgba(56, 189, 248, 0.18),
            transparent 55%),
        radial-gradient(circle at 100% 100%,
            rgba(129, 140, 248, 0.25),
            transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.highlight-label {
    position: relative;
    display: inline-flex;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.1);
    color: #bbf7d0;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.highlight-title {
    position: relative;
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: #e5e7eb;
    letter-spacing: -0.03em;
}

.highlight-text {
    position: relative;
    margin: 0;
    color: #cbd5f5;
    font-size: 0.92rem;
    line-height: 1.75;
}

/* Meta grid */
.highlight-meta {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.75rem;
}

.meta-item {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.45);
    backdrop-filter: blur(10px);
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.15rem;
}

.meta-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #e5e7eb;
}

/* Contrast button – now orange accent */
.btn-contrast {
    position: relative;
    margin-top: 1.5rem;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: 1px solid var(--orange-light);
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.45);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.btn-contrast i {
    font-size: 1rem;
    color: var(--white);
}

.btn-contrast:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 60px rgba(249, 115, 22, 0.6);
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.btn-contrast:active {
    transform: translateY(0);
}

.highlight-footnote {
    position: relative;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Right horizontal scroller */
.destinations-scroller {
    cursor: grab;

    position: relative;
    /* overflow: hidden; */
    overflow: hidden;
    padding: 1rem 0;
}

.destinations-row {
    display: flex;
    /* overflow: scroll; */
    gap: 1.25rem;
    padding-bottom: 0.5rem;
    padding-top: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #4b5563 transparent;
    transform: translateZ(0);
}

.destinations-row::-webkit-scrollbar {
    height: 6px;
}

.destinations-row::-webkit-scrollbar-track {
    background: transparent;
}

.destinations-row::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 999px;
}

/* Destination cards */
.destination-card {
    flex: 0 0 260px;
    max-width: 280px;
    scroll-snap-align: start;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(31, 41, 55, 0.9);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    cursor: default;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    margin: 0 0.125rem;
}

.destination-card:hover {
    transform: translateY(-8px) translateZ(0) scale(1.02);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 1);
    border-color: rgba(249, 115, 22, 0.7);
}

.destination-media {
    position: relative;
    height: 140px;
    overflow: hidden;
    /* Only image clips */
    border-radius: 18px 18px 0 0;
    /* Match card radius */
}

/* Spacer helper */
.destination-card-spacer {
    flex: 0 0 20px;
    min-width: 20px;
}

.destination-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-media img {
    transform: scale(1.12);
}

/* Chips on image */
.destination-chip {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chip-green {
    background: rgba(22, 163, 74, 0.9);
}

.chip-purple {
    background: rgba(109, 40, 217, 0.9);
}

/* Card body */
.destination-body {
    padding: 1.15rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.destination-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f9fafb;
}

.destination-desc {
    margin: 0;
    font-size: 0.86rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Info row */
.destination-info {
    margin-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.78rem;
    color: #e5e7eb;
}

.destination-info i {
    margin-right: 0.25rem;
    color: var(--orange);
}

.btn-chip {
    text-decoration: none !important;
    margin-top: 0.75rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--orange-light);
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.btn-chip i {
    font-size: 0.85rem;
    color: var(--orange);
}

.destination-card:hover .btn-chip {
    background: var(--gradient-orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-chip:hover i {
    color: var(--white);
}

.chip-blue {
    background: rgba(59, 130, 246, 0.9);
}

/* Responsive */
@media (max-width: 1024px) {
    .destinations-layout {
        grid-template-columns: 1fr;
    }

    .destinations-highlight {
        order: 1;
    }

    .destinations-scroller {
        order: 2;
    }

    .destinations-header {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .destinations {
        padding: 48px 0;
    }

    .destinations-row {
        gap: 1rem;
    }

    .destination-card {
        flex: 0 0 82%;
        max-width: 82%;
    }

    .destinations-highlight-card {
        padding: 1.8rem 1.6rem;
    }
}

.shirdi{
    /* transform: translateY(10px); */
    object-position: 50% 50%;
}
.Pune{
    object-position: 30% 65%;
}
.destinations-scroller:active {
  cursor: grabbing;
}
/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 40px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.3);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.author-info p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--orange);
}

.trust-item h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 4rem;
}

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

.contact-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.contact-intro p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
}

.contact-item:hover {
    border-color: var(--orange);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
}

.contact-details a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

.contact-time {
    display: block;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.contact-social {
    margin-top: 1rem;
}

.contact-social h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
}

.contact-form {
    width: 100%;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--gray-700);
    transition: all var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--orange);
}

/* Mobile Contact Section Fix */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        /* Reduced from 4rem */
    }

    .contact-items {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        /* Stack items vertically */
    }

    .contact-item {
        flex-direction: column;
        /* Stack icon + details vertically */
        text-align: center;
        gap: 1rem;
    }

    .contact-details {
        text-align: left;
        /* Keep details left-aligned */
    }

    .contact-social {
        margin-top: 1.5rem;
    }

    .social-links {
        justify-content: center;
        /* Center social icons */
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2.5rem 0;
        /* Reduce section padding */
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-items {
        gap: 1rem;
    }

    .contact-item {
        padding: 1.25rem;
        /* Compact padding */
    }

    .form-row {
        grid-template-columns: 1fr;
        /* Single column form on tiny screens */
        gap: 1rem;
    }
}


/* ========================================
   FOOTER
   ======================================== */
.foot-map{
    grid-column: 2/5;
}
.footer-map-container{
    height:200px !important;
    min-height: 200px;
}
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.footer-section h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: var(--gradient-orange);
    border-color: var(--orange);
    transform: translateY(-5px);
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 0.5rem;
}

.footer-links i {
    font-size: 0.75rem;
    color: var(--orange);
}

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

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--orange);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.footer-contact strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-contact a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact span {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.copyright strong {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-top:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
}

/* Call Now Button */
.call-now-btn {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    transition: all var(--transition-base);
    z-index: 999;
    text-decoration: none;
    animation: pulse-phone 2s ease-in-out infinite;
}

.call-now-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
    animation: none;
}

.call-now-btn i {
    animation: shake-phone 1s ease-in-out infinite;
}

.call-now-btn:hover i {
    animation: none;
}

/* Phone icon animations */
@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6), 
                    0 0 0 10px rgba(16, 185, 129, 0.1),
                    0 0 0 20px rgba(16, 185, 129, 0.05);
    }
}

@keyframes shake-phone {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop */
@media (max-width: 2000px) {
    .about-image img {
        height: 800px;
    }
}

@media (max-width: 1400px) {
    .about-image img {
        height: 700px;
    }

    .container {
        max-width: 1140px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-grid,
    .about-grid {
        gap: 3rem;
    }
}

/* Tablet & Below */
@media (max-width: 1024px) {

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar {
        gap: 1rem;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content,
    .about-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .trust-indicators {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-image img {
        height: 350px;
        object-fit: contain;
    }

    .header-top-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .navbar {
        height: 65px;
        padding: 0.75rem 0;
    }

    .nav-brand .logo {
        height: 36px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-image img {
        height: 400px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .services-grid,
    .vehicles-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
    }

    .service-card,
    .vehicle-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.75rem 1.5rem;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .call-now-btn {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 20px;
        font-size: 1.3rem;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {

    .header-top,
    .header,
    .nav-toggle,
    .relay-menu,
    .hero-buttons,
    .btn,
    .contact-form-wrapper,
    .footer-social,
    .scroll-top {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .hero,
    .services,
    .about,
    .vehicles,
    .pricing,
    .testimonials,
    .contact {
        padding: 20pt 0;
        page-break-inside: avoid;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Visible Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment if you want automatic dark mode
    :root {
        --white: #1f2937;
        --black: #ffffff;
        --gray-50: #111827;
        --gray-900: #f9fafb;
    }
    */
}

/* All booking inputs - Remove default focus styles */
.booking-input,
.datetime-input,
.vehicle-select,
#pickupLocation,
#destination,
#contactPhone,
#pickupDate,
#pickupTime,
#returnDate,
#returnTime {
    outline: none !important;
    border: none !important;
}

/* Add to CSS - Manual entry indicator */
.selected-location {
    position: relative;
}

.manual-entry-hint {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
    display: block;
}

.manual-entry-hint i {
    font-size: 0.625rem;
    margin-right: 0.25rem;
}

/* ----------------------- */
/* GLOBAL LOADING SCREEN */
/* ----------------------- */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-overlay.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.6s ease, visibility 0s 0.6s !important;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap:2.5rem; */
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* NO SHADOW - Clean blend */
    max-width: 420px;
    text-align: center;
}

.image-scene {
    width: 500px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-image {
    width: 100%;
    height: 100%;
    /* max-width: 200px; max-height: 140px; */
    object-fit: contain;
    /* NO SHADOW - Perfect blend */
}

.loader-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    bottom: 50px;
}

.loader-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    /* ONLY ORANGE TEXT */
}

.loader-subtitle {
    color: #6b7280;
    /* Gray - matches your theme */
    font-size: 1.125rem;
    font-weight: 500;
}

.loader-progress {
    width: 100%;
    max-width: 300px;
}

.progress-bar {
    position: relative;
    bottom: 30px;
    width: 100%;
    height: 5px;
    background: #f3f4f6;
    /* Light gray */
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 10px;
    width: 0%;
    animation: progress-grow 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes progress-grow {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .loader-container {
        padding: 2rem 1.5rem;
    }

    .loader-title {
        font-size: 2.25rem;
    }

    .loader-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   Prefix: sp- (services page)
======================================== */

/* Hero Section */
.sp-hero {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 4rem;
  background: #ffffff;
  overflow: hidden;
}

.sp-hero-content {
  position: relative;
  z-index: 1;
}

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

.sp-hero-left {
  position: relative;
  z-index: 10;
  max-width: 40rem;
}

.sp-hero-title {
  font-size: clamp(3.5rem, 8vw, 5.25rem);
  font-weight: 900;
  color: #111827;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 2.5rem;
}

.sp-title-solid {
  color: #111827;
}

.sp-title-faded {
  color: rgba(17, 23, 39, 0.3);
}

.sp-hero-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 500;
  max-width: 28rem;
}

.sp-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sp-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.sp-stat-item {
  display: flex;
  flex-direction: column;
}

.sp-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
}

.sp-stat-label {
  font-size: 0.9rem;
  color: #6b7280;
}

.sp-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  transform: translateY(-40px);
}

.sp-hero-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(3deg);
  width: 115%;
  height: 90%;
  background: #ff7a00;
  border-radius: 4rem;
  z-index: 1;
  box-shadow: 0 30px 60px -15px rgba(255, 122, 0, 0.4);
}

.sp-hero-wrapper {
  position: relative;
  z-index: 2;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  max-width: 420px;
}

.sp-hero-wrapper:hover {
  transform: rotate(-2deg) scale(1.05);
}

.sp-hero-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 25px 80px rgba(249, 115, 22, 0.15);
  position: relative;
  overflow: hidden;
}

.sp-card-gradient {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.16), transparent 65%);
  opacity: 0.8;
}

.sp-card-content {
  position: relative;
  z-index: 2;
}

.sp-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.sp-use-cases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: #374151;
  font-size: 0.95rem;
}

.sp-use-case-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sp-bullet {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.25);
  flex-shrink: 0;
}

.sp-status-badge {
  position: absolute;
  bottom: -5rem;
  right: -1rem;
  left: auto;
  z-index: 3;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid #f9fafb;
  animation: bounce-slow 3s ease-in-out infinite;
}

.sp-badge-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-badge-pulse {
  width: 1.75rem;
  height: 1.75rem;
  background: #ff7a00;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}

.sp-badge-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  font-weight: 900;
  color: #9ca3af;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.sp-badge-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1;
}

/* Why Choose Us Section */

.services .service-card {
  padding: 1.5rem 1.25rem; /* Reduced from 2.2rem 1.8rem */
}

.services .service-icon {
  width: 56px;  /* Reduced from 72px */
  height: 56px; /* Reduced from 72px */
  margin-bottom: 0.875rem; /* Reduced from 1.5rem */
  font-size: 1.5rem; /* Slightly smaller icon */
}

.services .service-card h3 {
  font-size: 1.3rem; /* Reduced from 1.5rem */
  margin-bottom: 0.625rem; /* Reduced from 1rem */
}

.services .service-card p {
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  font-size: 0.95rem; /* Slightly smaller */
  line-height: 1.55; /* Tighter line height */
}

.services .service-features li {
  margin-bottom: 0.5rem; /* Reduced from 0.75rem */
  font-size: 0.875rem; /* Slightly smaller */
}

.sp-why-section {
  padding: 1rem 0;
  background: #ffffff;
}

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

.sp-why-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-why-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sp-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 80px rgba(249, 115, 22, 0.15);
  border-color: var(--orange-light);
}

.sp-why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  transition: all 0.3s ease;
}

.sp-why-card:hover .sp-why-icon {
  background: var(--gradient-orange);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.sp-why-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.sp-why-text {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Service Categories Section */
.sp-categories-section {
  padding: 5rem 0 4rem 0;
  background: #f9fafb;
}

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

.sp-category-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.sp-category-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sp-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 80px rgba(249, 115, 22, 0.15);
}

.sp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.sp-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.sp-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sp-badge-orange {
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange);
}

.sp-badge-gray {
  background: #f3f4f6;
  color: #6b7280;
}

.sp-badge-green {
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
}

.sp-badge-blue {
  background: #eef2ff;
  color: #4f46e5;
}

.sp-card-description {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.sp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #4b5563;
  flex-grow: 1;
}

.sp-feature-list i {
  color: var(--orange);
  margin-right: 0.35rem;
}

.sp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sp-price-info {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #6b7280;
}

.sp-price-label {
  display: block;
}

.sp-price-value {
  display: block;
  font-weight: 700;
  color: #111827;
  font-size: 1.05rem;
}

/* Add-ons Section */
.sp-addons-section {
  padding: 4.5rem 0 5rem 0;
  background: #ffffff;
}

.sp-addons-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
}

.sp-addon-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sp-addon-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-addon-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sp-addon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(249, 115, 22, 0.12);
}

.sp-addon-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.sp-addon-description {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.sp-addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.sp-addon-list-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.sp-addon-list-icon i {
  color: var(--orange);
  margin-right: 0.35rem;
}

.sp-process-card {
  grid-column: span 1;
}

.sp-process-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.sp-process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sp-process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sp-step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.sp-step-content {
  flex: 1;
}

.sp-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.sp-step-text {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.sp-process-btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* Animations */
@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

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

  .sp-hero-left {
    text-align: center;
    max-width: 100%;
  }

  .sp-hero-buttons {
    justify-content: center;
  }

  .sp-hero-stats {
    justify-content: center;
  }

  .sp-hero-right {
    transform: translateY(0);
  }

  .sp-addons-grid {
    grid-template-columns: 1fr;
  }

  .sp-why-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .sp-hero {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .sp-hero-title {
    font-size: 2.5rem;
  }

  .sp-why-section {
    padding: 4rem 0;
  }

  .sp-categories-section {
    padding: 4rem 0 3rem 0;
  }

  .sp-addons-section {
    padding: 3.5rem 0 4rem 0;
  }
}

@media (max-width: 480px) {
  .sp-hero-title {
    font-size: 2.2rem;
  }

  .sp-category-card,
  .sp-addon-card,
  .sp-why-card {
    padding: 1.75rem 1.5rem;
  }

  .sp-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-card-footer .btn {
    width: 100%;
  }

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