/* =====================================================
   RideAndGo24 – Professional Rental Car Service Website
   Modern, Responsive, Animated
   ===================================================== */

/* ── CSS Variables ── */
:root {
    --primary: #FFC600;
    --primary-dark: #e6b300;
    --primary-light: #FFD740;
    --dark: #0c0c0c;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --success: #22c55e;
    --danger: #ef4444;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 30px rgba(255,198,0,0.3);

    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1200px;
    --header-height: 80px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--primary);
    color: var(--dark);
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Section ── */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, rgba(255,198,0,0.15), rgba(255,198,0,0.05));
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,198,0,0.3);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300%;
    height: 300%;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* ── Preloader ── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.shuttle-icon {
    width: 120px;
    margin: 0 auto 20px;
    animation: taxiBounce 1s ease-in-out infinite;
}

.shuttle-icon svg {
    width: 100%;
    height: auto;
}

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

.loader-road {
    width: 200px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.road-line {
    width: 60%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    animation: roadLine 1.2s ease-in-out infinite;
}

@keyframes roadLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
}

.header-phone {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone:hover {
    color: var(--primary-light);
}

.header-divider {
    color: var(--gray-700);
}

.header-hours {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-social a {
    color: var(--gray-400);
    font-size: 15px;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.lang-switcher {
    display: flex;
    background: var(--gray-800);
    border-radius: var(--radius);
    overflow: hidden;
    margin-left: 8px;
}

.lang-btn {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    background: transparent;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: var(--primary);
    color: var(--dark);
}

.lang-btn:hover:not(.active) {
    color: var(--white);
}

/* Navbar */
.navbar {
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.header.scrolled .navbar {
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(255,198,0,0.3));
}

.logo-highlight {
    color: var(--primary);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: var(--radius);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-height) + 60px);
    overflow: hidden;
}

.hero-content {
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 198, 0, 0.12);
    border: 1px solid rgba(255, 198, 0, 0.25);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 12px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    color: var(--gray-300);
    letter-spacing: 1px;
}

.hero-title-brand {
    display: block;
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light), #fff, var(--primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    line-height: 1.1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-plus,
.hero-stat-slash {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-number-static {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 13px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s ease-in-out infinite;
}

@keyframes mouseScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.slider-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255,198,0,0.5);
}

/* ── About Section ── */
.about-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&q=80') center/cover no-repeat fixed;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17,24,39,0.82) 0%, rgba(26,26,46,0.78) 50%, rgba(17,24,39,0.82) 100%);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    z-index: 1;
}

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

.about-section .section-badge {
    background: linear-gradient(135deg, rgba(255,198,0,0.25), rgba(255,198,0,0.1));
    border-color: rgba(255,198,0,0.5);
}

.about-section .section-title {
    color: var(--white);
}

.about-section .section-desc {
    color: var(--gray-300);
}

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

.about-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255,198,0,0.4);
}

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

.about-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,198,0,0.15), rgba(255,198,0,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.about-card:hover .about-card-icon {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.about-card-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.about-card:hover .about-card-icon i {
    color: var(--dark);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    border-radius: var(--radius-xl);
    padding: 48px;
    overflow: hidden;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,198,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.about-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.about-cta-text p {
    color: var(--gray-400);
    font-size: 16px;
}

/* ── Services Section ── */
.services-section {
    position: relative;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1494515843206-f3117d3f51b7?w=1920&q=80') center/cover no-repeat fixed;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17,24,39,0.82) 0%, rgba(26,26,46,0.78) 50%, rgba(17,24,39,0.82) 100%);
    z-index: 0;
}

.services-section > .container {
    position: relative;
    z-index: 1;
}

.services-section .section-badge {
    background: linear-gradient(135deg, rgba(255,198,0,0.25), rgba(255,198,0,0.1));
    border-color: rgba(255,198,0,0.5);
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-desc {
    color: var(--gray-300);
}

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

.service-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255,198,0,0.2);
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    border-color: rgba(255,198,0,0.3);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured p {
    color: var(--gray-400);
}

.service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 14px;
    background: var(--primary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.service-link i {
    transition: transform 0.3s ease;
}

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

/* ── Pricing Section ── */
.pricing-section {
    position: relative;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?w=1920&q=80') center/cover no-repeat fixed;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17,24,39,0.82) 0%, rgba(26,26,46,0.78) 50%, rgba(17,24,39,0.82) 100%);
    z-index: 0;
}

.pricing-section > .container {
    position: relative;
    z-index: 1;
}

.pricing-section .section-badge {
    background: linear-gradient(135deg, rgba(255,198,0,0.25), rgba(255,198,0,0.1));
    border-color: rgba(255,198,0,0.5);
}

.pricing-section .section-title {
    color: var(--white);
}

.pricing-section .section-desc {
    color: var(--gray-300);
}

.pricing-section .pricing-note {
    color: var(--gray-400);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 30px rgba(255,198,0,0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card-badge {
    position: absolute;
    top: 0;
    right: 24px;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 0 0 var(--radius) var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    padding: 36px 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,198,0,0.15), rgba(255,198,0,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pricing-icon i {
    font-size: 24px;
    color: var(--primary);
}

.pricing-card.featured .pricing-icon {
    background: var(--primary);
}

.pricing-card.featured .pricing-icon i {
    color: var(--dark);
}

.pricing-card-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-card-body {
    padding: 24px 28px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: 15px;
    color: var(--gray-600);
}

.pricing-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.pricing-highlight {
    color: var(--primary-dark);
    font-size: 24px;
}

.pricing-card-footer {
    padding: 0 28px 28px;
}

.pricing-card.featured .btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
}

.pricing-note i {
    color: var(--primary);
}

/* ── Transfer Pricing Tables ── */
.transfer-pricing {
    margin-top: 60px;
}

.transfer-pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.transfer-pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--dark);
}

.transfer-pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.transfer-pricing-header p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.transfer-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.transfer-tab {
    padding: 10px 24px;
    border: 1px solid rgba(255, 198, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.transfer-tab:hover {
    border-color: var(--primary);
    color: var(--white);
    background: rgba(255, 198, 0, 0.1);
}

.transfer-tab.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    font-weight: 600;
}

.transfer-region {
    display: none;
}

.transfer-region.active {
    display: block;
}

.transfer-table {
    background: rgba(17, 24, 39, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.transfer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

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

.transfer-row:not(.transfer-row-header):nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.transfer-row:not(.transfer-row-header):hover {
    background: rgba(255, 198, 0, 0.08);
}

.transfer-row span:first-child {
    color: var(--gray-300);
    font-size: 0.93rem;
}

.transfer-row-header {
    background: rgba(255, 198, 0, 0.1);
    border-bottom: 1px solid rgba(255, 198, 0, 0.2);
}

.transfer-row-header span {
    font-weight: 600;
    color: var(--primary) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transfer-price {
    font-weight: 700;
    color: var(--white) !important;
    font-size: 1rem !important;
    font-family: var(--font-heading);
}

.transfer-cta {
    text-align: center;
    margin-top: 30px;
    padding: 24px;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 198, 0, 0.15);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.transfer-cta p {
    color: var(--gray-300);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .transfer-tabs {
        gap: 6px;
    }
    .transfer-tab {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
    .transfer-row {
        padding: 10px 16px;
    }
    .transfer-pricing-header h3 {
        font-size: 1.3rem;
    }
}

/* ── Price Calculator Section ── */
.calculator-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&q=80') center/cover no-repeat fixed;
}

.calculator-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17,24,39,0.92) 0%, rgba(26,26,46,0.88) 50%, rgba(17,24,39,0.92) 100%);
    z-index: 0;
}

.calculator-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    z-index: 1;
}

.calculator-section > .container {
    position: relative;
    z-index: 1;
}

.calculator-section .section-badge {
    background: linear-gradient(135deg, rgba(255,198,0,0.25), rgba(255,198,0,0.1));
    border-color: rgba(255,198,0,0.5);
}

.calculator-section .section-title {
    color: var(--white);
}

.calculator-section .section-desc {
    color: var(--gray-300);
}

.calculator-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.calculator-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(10px);
}

/* Vehicle Selection */
.calc-vehicle-select {
    margin-bottom: 28px;
}

.calc-vehicle-select label {
    display: block;
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.calc-vehicle-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.calc-vehicle-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-vehicle-option:hover {
    border-color: rgba(255,198,0,0.3);
    background: rgba(255,198,0,0.05);
}

.calc-vehicle-option.active {
    border-color: var(--primary);
    background: rgba(255,198,0,0.1);
    box-shadow: 0 0 20px rgba(255,198,0,0.1);
}

.calc-vehicle-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,198,0,0.15);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.calc-vehicle-option.active .calc-vehicle-icon {
    background: var(--primary);
    color: var(--dark);
}

.calc-vehicle-details {
    flex: 1;
    min-width: 0;
}

.calc-vehicle-name {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.calc-vehicle-meta {
    display: block;
    color: var(--gray-400);
    font-size: 0.75rem;
    margin-top: 2px;
}

.calc-vehicle-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.calc-vehicle-price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-400);
}

/* Location Inputs */
.calc-locations {
    margin-bottom: 24px;
    position: relative;
}

.calc-input-group {
    position: relative;
}

.calc-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.calc-input::placeholder {
    color: var(--gray-400);
}

.calc-input:focus {
    border-color: var(--primary);
    background: rgba(255,198,0,0.05);
    box-shadow: 0 0 0 3px rgba(255,198,0,0.1);
}

.calc-input-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 0.7rem;
}

.calc-input-icon.start {
    color: #22c55e;
}

.calc-input-icon.end {
    color: #ef4444;
}

.calc-input-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 36px;
}

.connector-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #22c55e, #ef4444);
    opacity: 0.4;
}

.calc-swap-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--gray-300);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.calc-swap-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

/* Suggestions Dropdown */
.calc-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e2433;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.calc-suggestions.active {
    display: block;
}

.calc-suggestion-item {
    padding: 12px 16px;
    color: var(--gray-300);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.calc-suggestion-item:hover {
    background: rgba(255,198,0,0.1);
    color: var(--white);
}

.calc-suggestion-item i {
    color: var(--primary);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

/* Calculate Button */
.calc-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), #e6b300);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,198,0,0.3);
}

.calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,198,0,0.5);
}

.calc-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.calc-btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(17,24,39,0.3);
    border-top-color: var(--dark);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.calc-btn.loading .spinner {
    display: block;
}

.calc-btn.loading span,
.calc-btn.loading i {
    display: none;
}

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

/* Results */
.calc-results {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.calc-results-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.calc-result-item {
    text-align: center;
    padding: 20px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
}

.calc-result-item.highlight {
    background: rgba(255,198,0,0.1);
    border-color: rgba(255,198,0,0.3);
}

.calc-result-icon {
    color: var(--gray-400);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.calc-result-item.highlight .calc-result-icon {
    color: var(--primary);
}

.calc-result-value {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
}

.calc-result-item.highlight .calc-result-value {
    color: var(--primary);
    font-size: 1.8rem;
}

.calc-result-label {
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-results-footer {
    text-align: center;
}

.calc-note {
    color: var(--gray-400);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 20px;
}

.calc-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.calc-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.calc-action-btn.primary {
    background: linear-gradient(135deg, var(--primary), #e6b300);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255,198,0,0.3);
}

.calc-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,198,0,0.5);
}

.calc-action-btn.whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.calc-action-btn.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

/* Error */
.calc-error {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 10px;
    color: #fca5a5;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.3s ease;
}

.calc-error i {
    color: #ef4444;
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .calculator-card {
        padding: 24px;
    }

    .calc-vehicle-options {
        grid-template-columns: 1fr;
    }

    .calc-results-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    .calc-result-value {
        font-size: 1.2rem;
    }

    .calc-result-item.highlight .calc-result-value {
        font-size: 1.4rem;
    }

    .calc-actions {
        flex-direction: column;
    }

    .calc-action-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calc-results-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Fleet / Vehicles Section ── */
.fleet-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80') center/cover no-repeat fixed;
}

.fleet-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17,24,39,0.92) 0%, rgba(26,26,46,0.88) 50%, rgba(17,24,39,0.92) 100%);
    z-index: 0;
}

.fleet-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    z-index: 1;
}

.fleet-section > .container {
    position: relative;
    z-index: 1;
}

.fleet-section .section-badge {
    background: linear-gradient(135deg, rgba(255,198,0,0.25), rgba(255,198,0,0.1));
    border-color: rgba(255,198,0,0.5);
}

.fleet-section .section-title {
    color: var(--white);
}

.fleet-section .section-desc {
    color: var(--gray-300);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.vehicle-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,198,0,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,198,0,0.08);
}

.vehicle-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vehicle-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17,24,39,0.85) 100%);
    pointer-events: none;
}

.vehicle-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), #e6b300);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255,198,0,0.4);
}

.vehicle-info {
    padding: 28px;
}

.vehicle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.vehicle-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.vehicle-year {
    background: rgba(255,198,0,0.15);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,198,0,0.3);
}

.vehicle-color {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.color-dot.black {
    background: #1a1a1a;
}

.vehicle-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.vehicle-feature:hover {
    background: rgba(255,198,0,0.08);
    border-color: rgba(255,198,0,0.2);
}

.vehicle-feature i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.vehicle-feature span {
    color: var(--gray-300);
    font-size: 0.8rem;
    font-weight: 500;
}

.vehicle-desc {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.vehicle-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #e6b300);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,198,0,0.3);
}

.vehicle-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,198,0,0.5);
}

.vehicle-book-btn i {
    font-size: 0.85rem;
}

/* Fleet Section Responsive */
@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vehicle-image-wrapper {
        height: 220px;
    }

    .vehicle-info {
        padding: 22px;
    }

    .vehicle-name {
        font-size: 1.2rem;
    }

    .vehicle-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .vehicle-features {
        grid-template-columns: 1fr;
    }

    .vehicle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ── Testimonials Section ── */
.testimonials-section {
    overflow: hidden;
    position: relative;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&q=80') center/cover no-repeat fixed;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17,24,39,0.82) 0%, rgba(26,26,46,0.78) 50%, rgba(17,24,39,0.82) 100%);
    z-index: 0;
}

.testimonials-section > .container {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-badge {
    background: linear-gradient(135deg, rgba(255,198,0,0.25), rgba(255,198,0,0.1));
    border-color: rgba(255,198,0,0.5);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-desc {
    color: var(--gray-300);
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    animation: testimonialScroll 20s linear infinite;
}

@keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-33.333% - 8px)); }
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--primary);
    font-size: 16px;
}

.testimonial-card > p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ── Contact Section ── */
.contact-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1920&q=80') center/cover no-repeat fixed;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(17,24,39,0.82) 0%, rgba(26,26,46,0.78) 50%, rgba(17,24,39,0.82) 100%);
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,198,0,0.5), transparent);
    z-index: 1;
}

.contact-section > .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-badge {
    background: linear-gradient(135deg, rgba(255,198,0,0.25), rgba(255,198,0,0.1));
    border-color: rgba(255,198,0,0.5);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-desc {
    color: var(--gray-300);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,198,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 18px;
    color: var(--primary);
}

.contact-info-item h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-50);
    color: var(--gray-900);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255,198,0,0.1);
}

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

.btn-submit {
    margin-top: 8px;
}

/* Contact Map */
.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
}

/* ── Footer ── */
.footer {
    background:
        linear-gradient(180deg, rgba(12,12,12,0.98) 0%, rgba(12,12,12,0.95) 100%),
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?w=1920&q=80') center bottom/cover no-repeat;
    color: var(--gray-400);
    padding: 80px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    width: 16px;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 24px 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-developer {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-400);
    width: 100%;
    text-align: center;
}

.footer-developer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-developer a:hover {
    color: var(--white);
}

.footer-developer a i {
    margin-right: 4px;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--gray-900);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ── Chatbot ── */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--danger);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.chatbot-window {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 380px;
    height: 520px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--dark);
    color: var(--white);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    font-size: 28px;
    line-height: 1;
}

.chatbot-header h4 {
    font-size: 15px;
    font-weight: 600;
}

.chatbot-status {
    font-size: 12px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chatbot-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
}

.chatbot-close {
    color: var(--gray-400);
    font-size: 18px;
    padding: 4px;
    transition: var(--transition);
}

.chatbot-close:hover {
    color: var(--white);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    line-height: 1.6;
    animation: messageSlide 0.3s ease;
}

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

.chatbot-message.bot {
    background: var(--gray-100);
    color: var(--gray-800);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chatbot-message.user {
    background: var(--primary);
    color: var(--dark);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-message.typing {
    display: flex;
    gap: 4px;
    padding: 16px 20px;
}

.chatbot-message.typing .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-400);
    animation: typingDot 1.4s ease-in-out infinite;
}

.chatbot-message.typing .dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot-message.typing .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 12px;
}

.chatbot-quick-reply {
    padding: 8px 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-quick-reply:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.chatbot-input {
    display: flex;
    padding: 12px 16px;
    border-top: 1px solid var(--gray-200);
    gap: 8px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    outline: none;
    font-size: 14px;
    transition: var(--transition);
}

.chatbot-input input:focus {
    border-color: var(--primary);
}

.chatbot-input button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.chatbot-input button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 997;
    border: 2px solid rgba(255,198,0,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ── Scroll Animations ── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ── Form Feedback States ── */
.form-feedback {
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    margin-top: 16px;
    animation: messageSlide 0.3s ease;
    line-height: 1.6;
}

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

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

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-submit:disabled::before {
    display: none;
}

.fa-spin {
    animation: spin 1s linear infinite;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .services-grid .service-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

    .pricing-grid .pricing-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section {
        padding: 70px 0;
    }

    .header-top {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        visibility: hidden;
    }

    .nav-menu.open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 18px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        width: 100%;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 100svh;
    }

    .container.hero-container {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 20px;
        display: flex;
        align-items: center;
    }

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

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .hero-title {
        margin-bottom: 16px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-slider-dots {
        right: 16px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Hero background: show more of the image on mobile portrait + lighter overlay */
    .hero-bg {
        background-position: center 30% !important;
    }

    .hero-slide .hero-bg {
        filter: brightness(1.3);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-cta {
        padding: 32px 24px;
    }

    .about-cta-content {
        flex-direction: column;
        text-align: center;
    }

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

    .services-grid .service-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

    .pricing-grid .pricing-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .pricing-card.featured {
        order: -1;
    }

    .testimonial-card {
        min-width: 85%;
        max-width: 85%;
        padding: 24px;
    }

    .testimonial-card > p {
        font-size: 14px;
        line-height: 1.6;
    }

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

    .contact-form {
        padding: 28px 20px;
    }

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

    /* Prevent animation transforms from causing horizontal overflow on mobile */
    [data-animate="fade-left"] {
        transform: translateX(20px);
    }

    [data-animate="fade-right"] {
        transform: translateX(-20px);
    }

    .section {
        overflow-x: hidden;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .chatbot-window {
        width: calc(100vw - 48px);
        right: -12px;
        height: 460px;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .chatbot {
        right: 16px;
        bottom: 16px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .back-to-top {
        left: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title-brand {
        font-size: clamp(32px, 9vw, 48px);
        word-break: break-word;
    }

    .hero-title-line {
        font-size: clamp(16px, 4.5vw, 22px);
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        padding: 32px 24px;
    }

    .about-cta-text h3 {
        font-size: 22px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .section-desc {
        font-size: 15px;
    }
}

/* ── Mobile: Fix blurred backgrounds (iOS Safari doesn't support background-attachment: fixed) ── */
@media (max-width: 1024px) {
    .about-section,
    .services-section,
    .pricing-section,
    .calculator-section,
    .fleet-section,
    .testimonials-section,
    .contact-section {
        background-attachment: scroll !important;
    }

    /* Reduce overlay darkness so background images are clearly visible on mobile */
    .about-section::before,
    .services-section::before,
    .pricing-section::before,
    .testimonials-section::before,
    .contact-section::before {
        background: linear-gradient(160deg, rgba(17,24,39,0.55) 0%, rgba(26,26,46,0.50) 50%, rgba(17,24,39,0.55) 100%) !important;
    }

    .calculator-section::before,
    .fleet-section::before {
        background: linear-gradient(160deg, rgba(17,24,39,0.60) 0%, rgba(26,26,46,0.55) 50%, rgba(17,24,39,0.60) 100%) !important;
    }

    /* Use smaller images on mobile for faster loading and sharper rendering */
    .about-section {
        background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=800&q=80') !important;
        background-position: center 40% !important;
    }
    .services-section {
        background-image: url('https://images.unsplash.com/photo-1494515843206-f3117d3f51b7?w=800&q=80') !important;
        background-position: left center !important;
    }
    .pricing-section {
        background-image: url('https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?w=800&q=80') !important;
        background-position: center 30% !important;
    }
    .calculator-section {
        background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=800&q=80') !important;
        background-position: center 40% !important;
    }
    .fleet-section {
        background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=800&q=80') !important;
        background-position: center 60% !important;
    }
    .testimonials-section {
        background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=800&q=80') !important;
        background-position: left 30% !important;
    }
    .contact-section {
        background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=800&q=80') !important;
        background-position: center 40% !important;
    }

    /* Section backgrounds: use contain-like sizing where possible for more visibility */
    .about-section,
    .services-section,
    .pricing-section,
    .calculator-section,
    .fleet-section,
    .testimonials-section,
    .contact-section {
        background-size: cover !important;
    }
}

/* ── Print Styles ── */
@media print {
    .header, .chatbot, .whatsapp-float, .back-to-top, .hero-scroll-indicator {
        display: none !important;
    }

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

    .section {
        padding: 40px 0;
    }
}
