/* ============================================
   UDAIPUR TAXI SERVICE - MAIN STYLESHEET
   Modern, Responsive, SEO-Optimized Design
   ============================================ */

/* ============================================
   CSS VARIABLES & ROOT STYLES
   ============================================ */
:root {
    /* Premium White & Gradient Color Palette */
    --primary-color: #1E293B;
    /* Deep Charcoal for text */
    --primary-light: #334155;
    --primary-dark: #0F172A;

    --secondary-color: #FF6B35;
    /* Vibrant Orange - Logo Accent */
    --secondary-light: #FF8C5A;
    --secondary-dark: #E55A2A;

    --accent-peach: #FFF5F0;
    /* Soft Orange Tint */
    --accent-gold: #FFB627;
    /* Golden Yellow for highlights */

    /* Beautiful Gradients with White */
    --gradient-hero: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 25%, #FFA07A 50%, #FFFFFF 100%);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB627 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    --gradient-soft: linear-gradient(180deg, #FFFFFF 0%, #FFF5F0 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFA07A 100%);
    --gradient-white: linear-gradient(135deg, #FFFFFF 0%, #FFF8F5 50%, #FFF5F0 100%);
    --gradient-button: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    --gradient-button-hover: linear-gradient(135deg, #FF8C5A 0%, #FFB627 100%);

    /* Neutral Colors */
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --text-muted: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-peach: #FFF5F0;
    --border-color: #E2E8F0;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    /* Increased for airy feel */

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows - Soft & Modern */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.025);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 10px 10px -5px rgba(15, 23, 42, 0.02);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.25);
    --shadow-glow-white: 0 0 20px rgba(255, 255, 255, 0.3);

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

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-outline,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-button);
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    background: var(--gradient-button-hover);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: white;
    color: var(--secondary-color);
    border-color: white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4), var(--shadow-glow-white);
}

.btn-call {
    background: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-call:hover {
    background: var(--secondary-dark);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-2px);
}

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

.btn-block {
    width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-md);
}

.top-bar {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar::-webkit-scrollbar {
    display: none;
}

.top-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.top-info {
    display: flex;
    gap: 1.5rem;
}

.top-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.top-info a i {
    color: var(--primary-color);
}

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

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

.top-social a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color var(--transition-base);
}

.top-social a:hover {
    color: var(--primary-color);
}

.navbar {
    padding: 0.80rem 0;
    min-height: 70px;
    max-height: 70px;
    display: flex;
    align-items: center;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 62px;
    max-height: 62px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    transition: all var(--transition-base);
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    white-space: nowrap;
}

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

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

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    min-width: 338px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION (Updated Premium Design)
   ============================================ */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1E293B 0%, #334155 20%, #FF6B35 45%, #FF8C5A 70%, #FFB627 90%, #FFD700 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    will-change: background-position;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.4) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 182, 39, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 40% 20%, rgba(255, 140, 90, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(51, 65, 85, 0.3) 50%, rgba(255, 107, 53, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 3rem;
        padding-top: 100px;
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 0 2rem;
        padding-top: 0px;
        animation-duration: 25s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section {
        animation: none;
        background: linear-gradient(135deg, #1E293B 0%, #334155 30%, #FF6B35 60%, #FF8C5A 85%, #FFB627 100%);
    }
}

.one-way-hero-section {
    padding: 8rem 0 6rem;
}

.one-way-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.one-way-hero-content {
    color: white;
}

.one-way-hero-content .about-hero-description {
    text-align: left;
    margin: 0 0 1.5rem 0;
}

.one-way-hero-content .about-hero-title,
.one-way-hero-content .about-hero-subtitle {
    text-align: left;
}

.one-way-hero-image {
    position: relative;
    z-index: 2;
}

.one-way-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    max-height: 500px;
}

@media (max-width: 992px) {
    .one-way-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .one-way-hero-image {
        order: -1;
    }

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

    .one-way-hero-content .about-hero-title,
    .one-way-hero-content .about-hero-subtitle,
    .one-way-hero-content .about-hero-description {
        text-align: center;
    }

    .one-way-hero-content .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .one-way-hero-section {
        padding: 6rem 0 4rem;
    }

    .one-way-hero-grid {
        gap: 2rem;
    }

    .one-way-hero-image img {
        max-height: 300px;
    }
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) 0;
    width: 100%;
}


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

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-features {
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        gap: 2rem;
    }
}

.hero-text {
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    width: fit-content;
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-feature:hover {
    transform: translateX(8px) translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 182, 39, 0.2);
}

.hero-feature:hover::before {
    left: 100%;
}

.hero-feature a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.hero-feature a:hover {
    color: inherit;
    text-decoration: none;
}

.hero-feature-call {
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-feature-call:hover {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.hero-feature-call::after {
    content: attr(data-phone);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-feature-call::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1001;
}

.hero-feature-call:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

.hero-feature-call:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: -5px;
}

@media (max-width: 480px) {
    .hero-feature {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
        gap: 0.875rem;
        min-width: auto;
        width: 100%;
    }
}

.hero-feature i {
    color: #FFB627;
    font-size: 1.5rem;
    background: rgba(255, 182, 39, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 182, 39, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-feature:hover i {
    background: rgba(255, 182, 39, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(255, 182, 39, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0.5rem;
    align-self: flex-start;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 600;
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

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

.hero-cta .btn-outline:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25),
                0 4px 12px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-cta .btn-outline:hover::before {
    left: 100%;
}

.hero-cta .btn-outline i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-cta .btn-outline:hover i {
    transform: scale(1.15) rotate(-10deg);
}

/* Glassmorphic Form */
.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-form-wrapper {
    width: 100%;
    position: relative;
    z-index: 3;
}

@media (max-width: 992px) {
    .hero-form-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-form-wrapper {
        margin-top: 1.5rem;
    }
}

.booking-form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3), 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .booking-form-card {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .booking-form-card {
        border-radius: 12px;
        margin: 0;
    }
}

.form-tabs-container {
    overflow-x: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: white;
}

.form-tabs-container::-webkit-scrollbar {
    display: none;
}

.form-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    background: white;
}

.form-tab {
    flex: 1;
    padding: 1rem 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #64748b;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    margin-bottom: -1px;
}

.form-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--secondary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px 3px 0 0;
}

.form-tab:hover {
    color: var(--secondary-color);
    background: rgba(255, 107, 53, 0.04);
}

.form-tab:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.form-tab.active {
    color: var(--secondary-color);
    background: rgba(255, 107, 53, 0.06);
    font-weight: 700;
}

.form-tab.active::after {
    transform: translateX(-50%) scaleX(1);
}

@media (max-width: 640px) {
    .form-tab {
        padding: 0.875rem 0.5rem;
        font-size: 0.75rem;
        flex: 1;
    }

    .form-tabs-container {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .form-tab {
        padding: 0.75rem 0.375rem;
        font-size: 0.6875rem;
        flex: 1;
    }
}

.form-body {
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .form-body {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .form-body {
        padding: 1rem;
    }
}

.service-form {
    display: block;
}

.service-form.hidden {
    display: none;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

@media (min-width: 640px) {
    .form-group {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .form-group {
        text-align: left !important;
    }

    .form-group label.error,
    .form-group span.error,
    .form-group .error {
        text-align: left !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 0.875rem;
        text-align: left !important;
    }
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .form-label {
        font-size: 0.9375rem;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .form-label {
        font-size: 0.8125rem;
        gap: 0.375rem;
        margin-bottom: 0.375rem;
    }
}

.form-icon {
    width: 1rem;
    height: 1rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .form-icon {
        width: 0.875rem;
        height: 0.875rem;
    }
}

.form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
    -webkit-appearance: none;
    appearance: none;
}

@media (min-width: 640px) {
    .form-input {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-input {
        padding: 0.875rem 0.875rem;
        font-size: 0.9375rem;
        min-height: 44px;
    }
}

.form-input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input[type="date"],
.form-input[type="time"] {
    cursor: pointer;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator,
.form-input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-dates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-dates-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .form-dates-grid {
        gap: 0.875rem;
    }
}

.text-red {
    color: #ef4444;
}

.form-submit-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .form-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-submit-btn {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
        margin-top: 0.75rem;
        min-height: 48px;
    }
}

.form-submit-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-footer a {
    color: var(--secondary-color);
    font-weight: 700;
}

@media (max-width: 480px) {
    .form-footer {
        margin-top: 1rem;
        font-size: 0.8125rem;
        padding: 0 0.5rem;
    }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .form-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

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

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.booking-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .booking-form label {
        font-size: 0.9375rem;
        gap: 0.5rem;
    }
}

.booking-form label i {
    color: var(--secondary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="email"] {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

@media (min-width: 640px) {

    .booking-form input[type="text"],
    .booking-form input[type="tel"],
    .booking-form input[type="date"],
    .booking-form input[type="email"] {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

.booking-form input[type="text"]:focus,
.booking-form input[type="tel"]:focus,
.booking-form input[type="date"]:focus,
.booking-form input[type="email"]:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.booking-modal {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.booking-modal-overlay.active .booking-modal {
    transform: scale(1);
}

.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.booking-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.booking-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.booking-modal-close:hover {
    color: #1e293b;
    background: #f3f4f6;
}

.booking-modal-body {
    padding: 2rem;
}

.booking-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-modal-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .booking-modal-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.booking-modal-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    display: block;
}

.booking-modal-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    color: #1e293b;
}

.booking-modal-input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.booking-modal-input[type="date"],
.booking-modal-input[type="time"] {
    cursor: pointer;
}

.booking-modal-input[type="date"]::-webkit-calendar-picker-indicator,
.booking-modal-input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.booking-modal-input[type="date"]::-webkit-calendar-picker-indicator:hover,
.booking-modal-input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

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

.booking-modal-input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
    color: #4b5563;
}

.booking-modal-input-wrapper {
    position: relative;
}

.booking-modal-input-wrapper .booking-modal-input {
    padding-right: 2.5rem;
}

.booking-modal-input-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    font-size: 1rem;
}

.booking-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.booking-modal-btn {
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-modal-btn-primary {
    background: var(--gradient-button);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.booking-modal-btn-primary:hover {
    background: var(--gradient-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.booking-modal-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.booking-modal-btn-secondary:hover {
    background: #e5e7eb;
}

.booking-modal-alert {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.booking-modal-alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.booking-modal-alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.booking-modal-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.booking-modal-error-text {
    display: none;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.375rem;
    line-height: 1.4;
    font-weight: 400;
    text-align: left !important;
    width: 100% !important;
}

.booking-modal-form-group .booking-modal-error-text {
    min-height: 1.25rem;
    text-align: left !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .booking-modal-error-text {
        text-align: left !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.booking-modal-input-error {
    border-color: #dc2626 !important;
}

.booking-modal-input-error:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.booking-modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 640px) {
    .booking-modal {
        border-radius: 16px;
        max-height: 95vh;
    }

    .booking-modal-header {
        padding: 1.25rem 1.5rem;
    }

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

    .booking-modal-body {
        padding: 1.5rem;
    }

    .booking-modal-footer {
        flex-direction: column-reverse;
    }

    .booking-modal-btn {
        width: 100%;
    }
}

/* ============================================
   GLOBAL SECTION STYLES
   ============================================ */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.1));
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.form-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.1));
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
    background: var(--bg-peach);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--bg-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary-color);
}



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

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-section {
    background: #ffffff;
    position: relative;
}

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

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

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

.fleet-card {
    background: #ffffff;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -12px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.3);
}

.fleet-image {
    position: relative;
    height: 240px;
    min-height: 240px;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.fleet-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1) translateX(5px);
}

.fleet-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-header {
    margin-bottom: 1rem;
}

.fleet-header h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.fleet-price {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.fleet-models {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1.25rem;
    height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fleet-info {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.fleet-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.fleet-info i {
    color: var(--primary-color);
    font-size: 1rem;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.fleet-features li {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.fleet-features li i {
    color: #10b981;
}

.fleet-card .btn-primary {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================
   WHY CHOOSE US (Premium Design)
   ============================================ */
.why-choose-us {
    background: #fff;
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.why-choose-us .container {
    max-width: 1200px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .features-grid {
        gap: 1.5rem;
        max-width: 100%;
    }
}

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

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

.booking-process-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .booking-process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

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

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

@media (max-width: 576px) {
    .booking-process-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.feature-card:hover::before {
    opacity: 1;
    background: var(--gradient-accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-peach);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.75rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon,
.feature-card:hover .feature-icon i,
.feature-card:hover .feature-icon span {
    background: var(--gradient-accent);
    color: white !important;
    transform: rotate(5deg);
    box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.4);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* ============================================
   TOP ROUTES HIGHLIGHTS (Circular Image Style)
   ============================================ */
.top-routes-highlights {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #E8F4F8 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.top-routes-highlights .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.popular-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #4FACFE 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.top-routes-highlights .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--secondary-color);
    background-clip: unset;
}

.top-routes-highlights .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.top-routes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

@media (max-width: 1600px) {
    .top-routes-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .top-routes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .top-routes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .top-routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 500px;
    }

    .top-routes-highlights .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .top-routes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 280px;
    }
}

.top-route-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.top-route-item:hover {
    transform: translateY(-6px);
}

.route-circle-frame {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FF6B35 0%, #4FACFE 100%);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-circle-frame::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    background: white;
    z-index: 0;
}

.top-route-item:hover .route-circle-frame {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.25);
}

.route-circle-frame img {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: block;
}

.top-route-item:hover .route-circle-frame img {
    transform: scale(1.08);
}

.route-distance-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #4FACFE;
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(79, 172, 254, 0.35);
    z-index: 3;
    transition: all 0.3s ease;
}

.top-route-item:hover .route-distance-badge {
    background: #4FACFE;
    box-shadow: 0 6px 16px rgba(79, 172, 254, 0.45);
    transform: translateX(-50%) translateY(-2px);
}

.route-city-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 0.375rem 0;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.top-route-item:hover .route-city-name {
    color: var(--secondary-color);
}

.route-city-desc {
    font-size: 0.8125rem;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-route-item:hover .route-city-desc {
    color: #475569;
}

@media (max-width: 768px) {
    .route-circle-frame {
        width: 120px;
        height: 120px;
        margin-bottom: 0.875rem;
    }

    .route-city-name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .route-city-desc {
        font-size: 0.75rem;
    }

    .route-distance-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.6rem;
        bottom: 6px;
    }
}

/* ============================================
   POPULAR ROUTES (Premium Design)
   ============================================ */
.popular-routes {
    background: #f8fafc;
}

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

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

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

.route-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

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

.route-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.3) 0%, rgba(30, 41, 59, 0) 50%, rgba(30, 41, 59, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 1;
    z-index: 1;
}

.route-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.route-card:hover .route-btn {
    transform: translateY(0);
    opacity: 1;
}

.route-btn:hover {
    background: white;
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 107, 53, 0.2);
}

.route-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: white;
}

/* Premium Route Content */
.route-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.route-card:hover .route-content h3 {
    color: var(--secondary-color);
}

.route-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.route-details span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f1f5f9;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-weight: 500;
}

.route-details i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.route-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.route-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.route-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent-peach);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.route-info i {
    color: var(--secondary-color);
}

.route-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.route-link:hover {
    gap: 0.75rem;
    filter: brightness(1.1);
}

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

.route-link:hover i {
    transform: translateX(5px);
}

.route-price small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   FLEET SECTION (NEW PREMIUM DESIGN)
   ============================================ */
.fleet-section {
    background: #fff;
    padding: var(--spacing-2xl) 0;
}

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

.fleet-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.fleet-image {
    position: relative;
    height: 240px;
    min-height: 240px;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.fleet-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.fleet-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.fleet-price-badge {
    background: var(--accent-peach);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.fleet-models {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.fleet-stats {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
}

.fleet-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.fleet-stats i {
    color: #94a3b8;
}

.fleet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-card .btn-primary {
    margin-top: auto;
    background: var(--gradient-button);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
}

.fleet-card:hover .btn-primary {
    background: var(--gradient-button-hover);
    transform: translateY(2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

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

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

/* ============================================
   WELCOME CONTENT SECTION
   ============================================ */
.welcome-content-section {
    background: var(--bg-white);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.welcome-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.welcome-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
}

.welcome-text p {
    margin: 0;
}

.welcome-text .content-link,
.about-text-content .content-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.welcome-text .content-link:hover,
.about-text-content .content-link:hover {
    color: #F7931E;
    text-decoration: none;
}

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

    .welcome-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .welcome-text .content-link,
    .about-text-content .content-link {
        font-weight: 500;
    }
}

/* ============================================
   TESTIMONIALS (Premium Design)
   ============================================ */
.testimonials-section {
    background: var(--bg-peach);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

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

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.2);
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--secondary-light);
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.author-info .rating {
    display: flex;
    gap: 0.2rem;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* ============================================
   FAQ SECTION (Premium Design)
   ============================================ */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.accordion-item:hover {
    box-shadow: 0 8px 24px -4px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.accordion-item.active {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 24px -4px rgba(255, 107, 53, 0.2);
}

.accordion-button {
    background: transparent;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    box-shadow: none !important;
    position: relative;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.accordion-button:hover {
    color: var(--secondary-color);
}

.accordion-button:not(.collapsed) {
    background: var(--bg-peach);
    color: var(--secondary-color);
    box-shadow: none;
    font-weight: 700;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-peach);
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: white;
    background: var(--gradient-accent);
    transform: rotate(0deg);
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.accordion-button:hover::after {
    background: var(--accent-peach);
    color: var(--secondary-color);
}

.accordion-button:not(.collapsed):hover::after {
    background: var(--gradient-button-hover);
    color: white;
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.accordion-collapse.show {
    max-height: 500px;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    background: white;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-content h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

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

.cta-buttons .btn-primary {
    background: var(--gradient-button);
    box-shadow: 0 10px 20px -5px rgba(255, 107, 53, 0.4);
}

.cta-buttons .btn-primary:hover {
    background: var(--gradient-button-hover);
    box-shadow: 0 15px 30px -10px rgba(255, 107, 53, 0.5);
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--secondary-color);
    border-color: white;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #111827;
    color: #e2e8f0;
    position: relative;
    padding-top: 5rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

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

.footer-top {
    padding-bottom: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 1fr 1.6fr 1.2fr;
    gap: 3.5rem;
}

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

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

.footer-logo {
    display: inline-flex;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.footer-logo-img {
    height: 60px;
    max-height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.footer-logo-text i {
    font-size: 2.25rem;
    color: var(--secondary-color);
}

.footer-logo-text span {
    color: #60a5fa;
}

.footer-logo-text strong {
    color: var(--secondary-color);
}

.footer-desc {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #94a3b8;
    font-size: 1rem;
    text-align: justify;
}

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

.social-links a {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
}

.social-links a:hover {
    background: transparent;
    border: none;
    transform: translateY(-3px);
    color: var(--secondary-color);
    box-shadow: none;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #94a3b8;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '\F63B';
    font-family: 'bootstrap-icons';
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #94a3b8;
}

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

.footer-contact a,
.footer-contact span {
    color: #94a3b8;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: white;
}

.footer-destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    background: #0b0f1a;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #64748b;
    font-size: 0.9375rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-credit-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit-link:hover {
    color: white;
    text-decoration: underline;
}

/* ============================================
   FLOAT BUTTONS
   ============================================ */
.whatsapp-float,
.call-float {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-float {
    right: 30px;
    background: #25D366;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.call-float {
    right: 110px;
    background: var(--secondary-color);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

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

/* Laptop (1024px - 1199px) */
@media (max-width: 1199px) {
    .navbar {
        min-height: 65px;
        max-height: 65px;
        padding: 0.625rem 0;
    }

    .logo-img {
        height: 48px;
        max-height: 48px;
        max-width: 150px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .navbar {
        min-height: 65px;
        max-height: 65px;
        padding: 0.625rem 0;
    }

    .logo-img {
        height: 45px;
        max-height: 45px;
        max-width: 140px;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .routes-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Tablet Landscape (769px - 970px) - Specific Optimizations */
@media (min-width: 769px) and (max-width: 970px) {
    .container {
        padding: 0 1.5rem;
    }

    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.875rem;
    }

    .top-bar-content {
        gap: 1rem;
    }

    .top-info {
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .top-info a {
        font-size: 0.875rem;
        gap: 0.375rem;
    }

    .top-info a i {
        font-size: 0.9375rem;
    }

    .top-social {
        gap: 0.875rem;
    }

    .top-social a {
        font-size: 0.9375rem;
    }

    .navbar {
        min-height: 65px;
        max-height: 65px;
        padding: 0.625rem 0;
    }

    .navbar-content {
        gap: 1.5rem;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-img {
        height: 55px;
        max-height: 55px;
        max-width: 135px;
    }

    .nav-menu {
        gap: 1.25rem;
        font-size: 0.9375rem;
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 0.5rem 0.625rem;
        font-size: 0.9375rem;
        font-weight: 500;
    }

    .nav-actions {
        gap: 0.875rem;
    }

    .nav-actions .btn-primary {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
        white-space: nowrap;
    }

    .dropdown-menu {
        min-width: 220px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li a {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-feature {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
        min-width: 240px;
        width: auto;
    }

    .hero-feature i {
        width: 36px;
        height: 36px;
        font-size: 1.375rem;
    }

    .hero-cta {
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .hero-cta .btn-outline {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }

    .welcome-content-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }

    .welcome-title {
        font-size: 1.75rem;
    }

    .welcome-text {
        font-size: 1.0625rem;
    }

    .about-content-grid {
        gap: 2.5rem;
    }

    .about-text-content p {
        font-size: 1.0625rem;
        line-height: 1.75;
    }

    .fleet-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .fleet-feature-card {
        padding: 1.75rem 1.5rem;
    }

    .fleet-feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.875rem;
    }

    .fleet-feature-card h3 {
        font-size: 1.125rem;
    }

    .fleet-feature-card p {
        font-size: 0.9375rem;
    }

    .values-grid,
    .standards-grid,
    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .mission-values-grid {
        gap: 2.5rem;
    }

    .experience-content {
        gap: 3rem;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.875rem;
    }

    .top-info {
        gap: 1rem;
    }

    .top-info a {
        font-size: 0.875rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-form-wrapper {
        width: 100%;
        margin-top: 2rem;
    }

    .booking-form-card {
        padding: 2rem 1.75rem;
    }

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

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 768px) {
    .top-bar {
        padding: 0.4rem 0;
        font-size: 0.8125rem;
        overflow-x: auto;
    }

    .top-bar-content {
        flex-wrap: nowrap;
        gap: 0.75rem;
        min-width: max-content;
    }

    .top-info {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .top-info a span {
        display: none;
    }

    .top-info a {
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        transition: background-color 0.2s;
        white-space: nowrap;
    }

    .top-info a:hover {
        background-color: rgba(255, 107, 53, 0.1);
    }

    .top-social {
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .top-social a {
        font-size: 0.9375rem;
    }

    .navbar {
        min-height: 60px;
        max-height: 60px;
        padding: 0.5rem 0;
    }

    .navbar-content {
        gap: 1rem;
    }

    /* Logo */
    .logo {
        flex-shrink: 0;
        min-width: 0;
        max-width: 50%;
    }

    .logo-img {
        height: 66px !important;
        max-height: 70px !important;
        max-width: 120px !important;
        width: auto;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        overflow-y: auto;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .nav-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        padding-left: 1rem;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0;
        min-width: auto;
        display: none !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
        height: auto !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        overflow: visible !important;
        width: 100% !important;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none !important;
    }

    .nav-dropdown.active:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-dropdown.active>.nav-link i {
        transform: rotate(180deg);
    }

    .nav-dropdown>.nav-link i {
        transition: transform 0.3s ease;
        display: inline-block;
        margin-left: 0.5rem;
    }

    .nav-dropdown.active .dropdown-menu li {
        width: 100% !important;
        border-bottom: 1px solid var(--border-color);
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .nav-dropdown.active .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .nav-dropdown.active .dropdown-menu li a {
        display: block !important;
        padding: 0.75rem 0 !important;
        padding-left: 0 !important;
        color: #1E293B !important;
        color: var(--text-primary, #1E293B) !important;
        transition: all var(--transition-fast);
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        height: auto !important;
        min-height: 2.5rem !important;
        line-height: 1.5 !important;
        text-decoration: none !important;
        font-size: inherit !important;
        font-weight: 400 !important;
    }

    .nav-dropdown.active .dropdown-menu li a:hover,
    .nav-dropdown.active .dropdown-menu li a:active {
        color: var(--primary-color);
        padding-left: 0.5rem;
    }

    .nav-dropdown .dropdown-menu li a:hover {
        color: var(--primary-color);
        padding-left: 0.5rem;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-44deg) translate(5px, -5px);
    }

    /* Hero Section */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-features {
        align-items: center;
    }

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

    .hero-form-wrapper {
        width: 100%;
        margin-top: 1.5rem;
    }

    .booking-form-card {
        width: 100%;
        margin: 0;
    }

    /* Sections */
    section {
        padding: var(--spacing-xl) 0;
    }

    .services-grid,
    .features-grid,
    .routes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Float Buttons */
    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
    }

    .whatsapp-float {
        right: 20px;
    }

    .call-float {
        right: 85px;
    }

    /* Buttons */
    .btn-lg {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .top-bar {
        padding: 0.375rem 0;
        font-size: 0.75rem;
        overflow-x: auto;
    }

    .top-bar-content {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        min-width: max-content;
    }

    .top-info {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .top-info a {
        padding: 0.25rem 0.5rem;
        white-space: nowrap;
    }

    .top-info a span {
        display: none;
    }

    .top-social {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .top-social a {
        font-size: 0.875rem;
    }

    .navbar {
        min-height: 55px;
        max-height: 55px;
        padding: 0.5rem 0;
    }

    .navbar-content {
        gap: 0.75rem;
    }

    .logo {
        flex-shrink: 0;
        min-width: 0;
        max-width: 45%;
    }

    .logo-img {
        height: 55px !important;
        max-height: 59px !important;
        max-width: 110px !important;
        width: auto;
    }

    .nav-menu {
        top: 41px;
        height: calc(100vh - 42px);
    }

    .container {
        padding: 0 1rem;
    }

    .booking-form-card {
        border-radius: 12px;
    }

    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }

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

    .hero-cta .btn-lg {
        width: 100%;
    }

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

    .cta-buttons .btn-lg {
        width: 100%;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .whatsapp-float,
    .call-float,
    .hero-form-wrapper {
        display: none;
    }
}

/* ============================================
   ABOUT US PAGE STYLES (Optimized)
   ============================================ */
.about-hero-section {
    background: linear-gradient(135deg, #1E293B 0%, #334155 20%, #FF6B35 45%, #FF8C5A 70%, #FFB627 90%, #FFD700 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    will-change: background-position;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.4) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 182, 39, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 40% 20%, rgba(255, 140, 90, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.about-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(51, 65, 85, 0.3) 50%, rgba(255, 107, 53, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-section {
        animation: none;
        background: linear-gradient(135deg, #1E293B 0%, #334155 30%, #FF6B35 60%, #FF8C5A 85%, #FFB627 100%);
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    padding: var(--spacing-2xl) 0;
}

.company-background {
    background: var(--bg-white);
}

.mission-values {
    background: var(--bg-peach);
}

.experience-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F0 100%);
}

.safety-standards {
    background: var(--bg-white);
}

.fleet-quality {
    background: var(--bg-light);
}

.expert-drivers {
    background: var(--bg-peach);
}

.section-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

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

.about-content-grid.reverse {
    direction: rtl;
}

.about-content-grid.reverse>* {
    direction: ltr;
}

.about-content-text .section-title {
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-text-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-content-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder {
    aspect-ratio: 4/3;
    background: var(--gradient-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

.about-image-placeholder span {
    font-size: 1.125rem;
    font-weight: 600;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.mission-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mission-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.value-card,
.standard-card,
.driver-feature-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.standard-card,
.driver-feature-card {
    padding: 2.5rem 2rem;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

.standard-card:hover,
.driver-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.2);
}

.value-icon,
.standard-icon,
.driver-feature-icon {
    background: var(--bg-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all var(--transition-base);
    margin: 0 auto 1.5rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.standard-icon,
.driver-feature-icon {
    width: 80px;
    height: 80px;
}

.value-card:hover .value-icon {
    background: var(--gradient-accent);
    color: white;
    transform: rotate(5deg);
}

.standard-card:hover .standard-icon,
.driver-feature-card:hover .driver-feature-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.value-card h4,
.standard-card h3,
.driver-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p,
.standard-card p,
.driver-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

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

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.experience-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.experience-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.experience-list li i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

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

.fleet-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.fleet-feature-card {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.fleet-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fleet-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

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

.fleet-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all var(--transition-base);
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.fleet-feature-card:hover .fleet-feature-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.fleet-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.fleet-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

@media (max-width: 768px) {
    .fleet-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .fleet-feature-card {
        padding: 1.75rem 1.5rem;
    }

    .fleet-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .fleet-feature-card h3 {
        font-size: 1.125rem;
    }

    .fleet-feature-card p {
        font-size: 0.875rem;
    }
}

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

@media (max-width: 1024px) {

    .about-content-grid,
    .experience-content,
    .mission-values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content-grid.reverse {
        direction: ltr;
    }

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

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

@media (max-width: 768px) {
    .about-hero-section {
        padding: 6rem 0 4rem;
        animation-duration: 20s;
    }

    .values-grid,
    .standards-grid,
    .drivers-grid,
    .experience-stats {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .experience-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 5rem 0 3rem;
        animation-duration: 25s;
    }

    .about-section {
        padding: var(--spacing-xl) 0;
    }

    .mission-card,
    .standard-card,
    .driver-feature-card,
    .value-card {
        padding: 1.5rem;
    }
}

/* ============================================
   CONTACT US PAGE STYLES (Minimal & Optimized)
   ============================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.15);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #FF6B35;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: rgba(255, 107, 53, 0.15);
    transform: scale(1.05);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1E293B;
    line-height: 1.4;
}

.contact-info-card p {
    color: #64748B;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-link {
    display: inline-block;
    color: #FF6B35;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    word-break: break-word;
    line-height: 1.4;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-link address {
    font-style: normal;
    margin: 0;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

.contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.contact-form .form-group label i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: #f8fafc;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

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

.map-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background: var(--bg-light);
    min-height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-info {
    background: var(--bg-peach);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
}

.map-info-content {
    text-align: center;
}

.map-info-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.map-info-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-info-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.map-info-content .btn-primary,
.google-maps-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.map-info-content .btn-primary:hover,
.google-maps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: var(--gradient-button-hover);
}

.map-info-content .btn-primary i,
.google-maps-btn i {
    font-size: 1.25rem;
    opacity: 1;
    color: white;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
}

.map-info-content .btn-primary span,
.google-maps-btn span {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

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

    .map-container {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .map-wrapper iframe {
        height: 400px;
    }
}

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .map-info {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 1.75rem 1.25rem;
        min-height: 200px;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .contact-info-card h3 {
        font-size: 1.125rem;
    }

    .contact-info-card p {
        font-size: 0.8125rem;
    }

    .contact-link {
        font-size: 0.875rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .map-wrapper iframe {
        height: 300px;
    }

    .map-info {
        padding: 1.5rem;
    }

    .map-info-content i {
        font-size: 2.5rem;
    }

    .map-info-content h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   LEGAL PAGES STYLES (Privacy Policy & Terms)
   ============================================ */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-peach);
}

.legal-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-peach);
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.legal-section li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.legal-section a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color var(--transition-base);
}

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

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.75rem;
    }

    .legal-section h3 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }
}

/* ============================================
   FAQ PAGE - INTERNAL LINKS SECTION
   ============================================ */
.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.internal-link-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.internal-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

.internal-link-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.internal-link-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.internal-link-card h3 a {
    color: var(--primary-color);
    transition: color var(--transition-base);
}

.internal-link-card:hover h3 a {
    color: var(--secondary-color);
}

.internal-link-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

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

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

/* ============================================
   TESTIMONIALS PAGE - ROUTE REVIEWS
   ============================================ */
.route-testimonials-group {
    margin-bottom: 3.5rem;
}

.route-testimonials-group:last-child {
    margin-bottom: 0;
}

.testimonials-section .testimonials-grid {
    margin: 0;
    padding: 0;
}

.route-testimonials-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.route-testimonials-title i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.route-info {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .route-testimonials-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   VEHICLE TYPES SECTION (One Way Taxi)
   ============================================ */
.vehicle-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

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

.vehicle-type-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vehicle-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 107, 53, 0.2);
}

.vehicle-icon-wrapper {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicle-image {
    width: 100%;
    height: 200px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.vehicle-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.vehicle-type-card:hover .vehicle-image {
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
}

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

.vehicle-type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.vehicle-type-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.vehicle-book-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.vehicle-book-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
    color: white;
}

/* ============================================
   POPULAR ROUTES SECTION (One Way Taxi)
   ============================================ */
.popular-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 640px) {
    .popular-routes-grid {
        grid-template-columns: 1fr;
    }
}

.popular-route-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popular-route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.popular-route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 107, 53, 0.2);
}

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

.route-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--accent-peach);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.popular-route-card:hover .route-icon-wrapper {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.popular-route-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.popular-route-card:hover h3 {
    color: var(--secondary-color);
}

.route-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.route-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

.popular-route-card:hover .route-detail-item {
    background: var(--accent-peach);
    transform: translateX(4px);
}

.route-detail-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    min-width: 24px;
}

.route-detail-item .detail-label {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.route-detail-item .detail-value {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
}

.route-detail-item .detail-value.price {
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: 800;
}

.route-book-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: auto;
    border: 2px solid transparent;
}

.route-book-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
    color: white;
    border-color: var(--secondary-color);
}

/* ============================================
   ROUTE LANDING PAGE STYLES (Udaipur to Kumbhalgarh)
   ============================================ */
.route-section {
    padding: 4rem 0;
}

.route-bg-light {
    background: var(--bg-light);
}

.route-bg-white {
    background: white;
}

.route-bg-peach {
    background: var(--bg-peach);
}

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

.route-highlight-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.route-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.route-highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.route-highlight-icon i {
    font-size: 2rem;
    color: white;
}

.route-highlight-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.route-highlight-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.route-highlight-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.route-service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.route-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--secondary-color);
}

.route-service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-peach);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.route-service-card:hover .route-service-icon {
    background: var(--gradient-accent);
    transform: scale(1.1);
}

.route-service-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.route-service-card:hover .route-service-icon i {
    color: white;
}

.route-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.route-service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.route-feature-item {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.route-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
}

.route-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-peach);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.route-feature-icon i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.route-feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.route-feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.route-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.route-info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.25);
}

.route-info-icon i {
    font-size: 2rem;
    color: white;
}

.route-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.route-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.route-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem;
    background: var(--bg-peach);
    border-radius: 10px;
}

.route-info-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.info-label {
    flex: 1;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.info-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.route-stops-section {
    margin-top: 4rem;
}

.route-stops-timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.route-stops-timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-accent);
}

.route-stop-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
}

.route-stop-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--bg-peach);
}

.route-stop-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.route-stop-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.route-stop-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-peach);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.route-stop-icon i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.route-stop-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.route-stop-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.route-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .route-vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.route-vehicle-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.route-vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.route-vehicle-featured {
    border: 2px solid var(--secondary-color);
}

.route-vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.route-vehicle-image {
    width: 100%;
    height: 260px;
    min-height: 260px;
    overflow: hidden;
    background: var(--bg-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.route-vehicle-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.route-vehicle-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.route-vehicle-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.route-vehicle-specs {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.route-vehicle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.route-vehicle-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

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

.route-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
}

.route-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.route-pricing-featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.route-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.route-pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.route-pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.route-pricing-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
}

.route-pricing-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.route-pricing-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.route-pricing-btn {
    width: 100%;
    text-align: center;
}

.route-pricing-factors {
    margin-top: 4rem;
}

.route-cta-inline {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.route-cta-inline p {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.route-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.route-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.route-testimonial-rating {
    margin-bottom: 1.25rem;
}

.route-testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.route-testimonial-text {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.route-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.route-testimonial-author strong {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.route-testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.sightseeing-timeline-wrapper {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sightseeing-day-section {
    position: relative;
}

.sightseeing-day-header-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-peach);
}

.sightseeing-day-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.sightseeing-day-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.sightseeing-day-title-wrapper {
    flex: 1;
}

.sightseeing-day-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.375rem 0;
    line-height: 1.2;
}

.sightseeing-day-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.sightseeing-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.sightseeing-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, rgba(255, 107, 53, 0.3) 100%);
    border-radius: 2px;
}

.sightseeing-point {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding-left: 0.75rem;
    transition: all 0.3s ease;
}

.sightseeing-point:last-child {
    margin-bottom: 0;
}

.sightseeing-point:hover {
    transform: translateX(6px);
}

.sightseeing-point-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.sightseeing-point:hover .sightseeing-point-number {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--secondary-color);
    transform: scale(1.08);
    box-shadow: 0 5px 16px rgba(255, 107, 53, 0.35);
}

.sightseeing-point-line {
    position: absolute;
    left: 35px;
    top: 40px;
    width: 2px;
    height: calc(100% + 0.5rem);
    background: linear-gradient(180deg, var(--secondary-color) 0%, rgba(255, 107, 53, 0.3) 100%);
    border-radius: 2px;
    z-index: 1;
}

.sightseeing-point-line-last {
    display: none;
}

.sightseeing-point-content {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sightseeing-point:hover .sightseeing-point-content {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.12);
    border-color: var(--secondary-color);
    transform: translateX(3px);
}

.sightseeing-point-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.sightseeing-point-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.sightseeing-note-modern {
    margin-top: 3rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.12);
    position: relative;
    overflow: hidden;
}

.sightseeing-note-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.sightseeing-note-modern-content {
    position: relative;
    z-index: 1;
}

.sightseeing-note-modern-header {
    margin-bottom: 1.25rem;
}

.sightseeing-note-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.sightseeing-note-modern-header h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.sightseeing-note-modern-details {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.sightseeing-note-price {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.note-price-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.note-price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.note-price-extra {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 600;
}

.sightseeing-note-modern-details p {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 992px) {
    .sightseeing-timeline-wrapper {
        gap: 2.5rem;
    }

    .sightseeing-day-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 1.75rem;
        padding-bottom: 1.25rem;
    }

    .sightseeing-day-number {
        width: 65px;
        height: 65px;
        min-width: 65px;
        font-size: 1.625rem;
    }

    .sightseeing-day-title {
        font-size: 1.375rem;
    }

    .sightseeing-day-subtitle {
        font-size: 0.8125rem;
    }

    .sightseeing-timeline {
        padding-left: 2rem;
    }

    .sightseeing-timeline::before {
        left: 32px;
    }

    .sightseeing-point {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
        padding-left: 0.5rem;
    }

    .sightseeing-point-number {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.9375rem;
    }

    .sightseeing-point-line {
        left: 32px;
        top: 38px;
    }

    .sightseeing-point-content {
        padding: 1.125rem 1.375rem;
    }

    .sightseeing-point-content h4 {
        font-size: 1.0625rem;
    }

    .sightseeing-point-content p {
        font-size: 0.8125rem;
    }

    .sightseeing-note-modern {
        padding: 1.75rem 2rem;
    }

    .sightseeing-note-modern-header h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .sightseeing-timeline-wrapper {
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .sightseeing-day-header-modern {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        gap: 1rem;
    }

    .sightseeing-day-number {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
        border-radius: 14px;
    }

    .sightseeing-day-title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .sightseeing-day-subtitle {
        font-size: 0.75rem;
    }

    .sightseeing-timeline {
        padding-left: 1.5rem;
    }

    .sightseeing-timeline::before {
        left: 30px;
        width: 2px;
    }

    .sightseeing-point {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-left: 0.25rem;
    }

    .sightseeing-point-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.875rem;
        border-width: 2px;
    }

    .sightseeing-point-line {
        left: 30px;
        width: 2px;
        top: 36px;
    }

    .sightseeing-point-content {
        padding: 1rem 1.25rem;
        border-radius: 10px;
    }

    .sightseeing-point-content h4 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .sightseeing-point-content p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .sightseeing-note-modern {
        margin-top: 2.5rem;
        padding: 1.5rem 1.75rem;
        border-radius: 14px;
    }

    .sightseeing-note-modern-header {
        margin-bottom: 1rem;
    }

    .sightseeing-note-badge {
        padding: 0.35rem 0.875rem;
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }

    .sightseeing-note-modern-header h4 {
        font-size: 1.125rem;
    }

    .sightseeing-note-modern-details {
        gap: 0.75rem;
    }

    .sightseeing-note-price {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
        border-radius: 8px;
    }

    .note-price-label {
        font-size: 0.875rem;
    }

    .note-price-value {
        font-size: 1.375rem;
    }

    .note-price-extra {
        font-size: 0.875rem;
    }

    .sightseeing-note-modern-details p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

.route-cta-dark {
    background: var(--primary-dark);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.route-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.route-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.route-cta-buttons .btn-primary,
.route-cta-buttons .btn-outline {
    width: 200px;
    flex: 0 0 auto;
}

.one-way-hero-content .hero-cta .btn-primary {
    width: 336px;
}

@media (max-width: 1200px) {

    .route-highlights-grid,
    .route-services-grid,
    .route-features-grid,
    .route-pricing-grid,
    .route-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .route-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .route-section {
        padding: 3rem 0;
    }

    .route-highlights-grid,
    .route-services-grid,
    .route-features-grid,
    .route-vehicles-grid,
    .route-pricing-grid,
    .route-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .route-highlight-card,
    .route-service-card,
    .route-feature-item,
    .route-info-card,
    .route-vehicle-card,
    .route-pricing-card,
    .route-testimonial-card {
        padding: 2rem 1.5rem;
    }

    .route-vehicle-image {
        height: 220px;
        min-height: 220px;
        padding: 1.25rem 0.875rem;
    }

    .route-vehicle-image img {
        max-height: 180px;
    }

    .route-vehicle-content {
        padding: 1.5rem;
    }

    .route-vehicle-content h3 {
        font-size: 1.25rem;
    }

    .route-vehicle-price {
        font-size: 1.25rem;
    }

    .route-highlight-number {
        font-size: 2.5rem;
    }

    .route-cta-content h2 {
        font-size: 2rem;
    }

    .route-cta-content p {
        font-size: 1.125rem;
    }

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

    .route-cta-buttons .btn-primary,
    .route-cta-buttons .btn-outline,
    .route-cta-buttons a {
        width: 200px;
        max-width: 200px;
    }

    .one-way-hero-content .hero-cta .btn-primary {
        width: 200px;
    }

    .route-pricing-featured {
        transform: scale(1);
    }
}

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

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

.sourceSuggestions,
.destinationSuggestions,
.airportSuggestions {
    cursor: pointer;
    width: 100% !important;
}

.sourceSuggestions .dropdown-item,
.destinationSuggestions .dropdown-item,
.airportSuggestions .dropdown-item {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.sourceSuggestions .dropdown-item:last-child,
.destinationSuggestions .dropdown-item:last-child,
.airportSuggestions .dropdown-item:last-child {
    border-bottom: none;
}

.sourceSuggestions .dropdown-item:hover,
.destinationSuggestions .dropdown-item:hover,
.airportSuggestions .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000;
}

@media (max-width: 480px) {

    .sourceSuggestions,
    .destinationSuggestions,
    .airportSuggestions {
        max-height: 200px !important;
        font-size: 0.875rem !important;
        border-radius: 0.375rem !important;
        margin-top: 0.25rem !important;
    }

    .sourceSuggestions .dropdown-item,
    .destinationSuggestions .dropdown-item,
    .airportSuggestions .dropdown-item {
        padding: 0.75rem 0.875rem !important;
        font-size: 0.875rem !important;
    }

    .dropdown-menu {
        max-height: 200px !important;
        font-size: 0.875rem !important;
    }
}

.search-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
}

.search-loader i {
    display: inline-block;
}

.search-no-results,
.search-error {
    padding: 10px;
    text-align: center;
}

.error-message,
label.error,
span.error {
    color: #dc3545 !important;
    font-size: 14px !important;
    display: block !important;
    margin-top: 5px !important;
    text-align: left !important;
    width: 100% !important;
}

input.error,
textarea.error,
select.error {
    border-color: #dc3545 !important;
    border-width: 1px !important;
    border-style: solid !important;
}

.contact-form .error-message {
    color: #dc3545 !important;
    font-size: 14px !important;
    display: block !important;
    margin-top: 5px !important;
    text-align: left !important;
    width: 100% !important;
}

label.error,
span.error,
.error {
    color: #dc3545 !important;
    font-size: 14px !important;
    display: block !important;
    margin-top: 5px !important;
    font-weight: normal !important;
    text-align: left !important;
    width: 100% !important;
}

@media (max-width: 768px) {

    label.error,
    span.error,
    .error,
    .error-message {
        text-align: left !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {

    label.error,
    span.error,
    .error {
        font-size: 12px !important;
        margin-top: 4px !important;
        text-align: left !important;
        width: 100% !important;
    }
}

#contactForm label.error,
#contactForm span.error {
    color: #dc3545 !important;
    font-size: 14px !important;
    display: block !important;
    margin-top: 5px !important;
    text-align: left !important;
    width: 100% !important;
}

.g-recaptcha,
.g-recaptcha * {
    border: none !important;
    outline: none !important;
}

.g-recaptcha.error,
.g-recaptcha.error * {
    border: none !important;
    outline: none !important;
}

#message {
    resize: none !important;
}

/* ============================================
   WEDDING & EVENT CAB SERVICE PAGE STYLES
   ============================================ */

/* Service Cards Section */
.wedding-services-overview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.wedding-section-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.wedding-section-title-gradient {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wedding-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.wedding-service-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1), 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.wedding-service-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.wedding-service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB627 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
}

.wedding-service-icon i {
    font-size: 2.75rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.wedding-service-card h3 {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1E293B;
    position: relative;
    z-index: 1;
}

.wedding-service-card p {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    position: relative;
    z-index: 1;
}

.wedding-service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.wedding-service-card li {
    padding: 0.75rem 0;
    color: #64748B;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.wedding-service-card li i {
    color: #FF6B35;
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.wedding-service-card .btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    border: none;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.wedding-service-card .btn-primary i {
    margin-left: 0.5rem;
}

.wedding-service-link {
    color: #FF6B35;
    text-decoration: underline;
    font-weight: 600;
}

/* Detailed Description Section */
.wedding-description-section {
    background: white;
    padding: 5rem 0;
}

.wedding-description-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.wedding-description-block {
    margin-bottom: 2.5rem;
}

.wedding-description-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E293B;
}

.wedding-description-block p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #64748B;
    margin-bottom: 1rem;
}

.wedding-description-block ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.wedding-description-block li {
    padding: 0.75rem 0;
    color: #64748B;
    font-size: 1.125rem;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
}

.wedding-description-block li i {
    color: #FF6B35;
    margin-right: 0.75rem;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.wedding-cta-box {
    background: #FFF5F0;
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.wedding-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E293B;
}

.wedding-cta-box p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #64748B;
    margin-bottom: 1.5rem;
}

.wedding-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Features Section */
.wedding-features-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.wedding-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 182, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.wedding-features-section .container {
    position: relative;
    z-index: 1;
}

.wedding-feature-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
}

.wedding-features-grid {
    margin-top: 3rem;
}

.wedding-feature-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 10px 40px rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.wedding-feature-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.wedding-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB627 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
}

.wedding-feature-icon i {
    font-size: 2.25rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.wedding-feature-card h3 {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1E293B;
    position: relative;
    z-index: 1;
}

.wedding-feature-card p {
    color: #64748B;
    line-height: 1.8;
    font-size: 1.0625rem;
    position: relative;
    z-index: 1;
}

/* Wedding Fleet Gallery Section */
.wedding-fleet-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.wedding-fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 182, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.wedding-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.wedding-fleet-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 10px 40px rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.wedding-fleet-image-wrapper {
    position: relative;
    padding-top: 75%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 50%, #FFB627 100%);
    overflow: hidden;
}

.wedding-fleet-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wedding-fleet-card:hover .wedding-fleet-image-wrapper img {
    transform: scale(1.1);
}

.wedding-fleet-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 1.5rem;
}

.wedding-fleet-image-overlay span {
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wedding-fleet-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2), 0 10px 40px rgba(0,0,0,0.15);
}

.wedding-fleet-content {
    padding: 2rem;
}

.wedding-fleet-content h4 {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1E293B;
}

.wedding-fleet-content p {
    color: #64748B;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.wedding-fleet-tags {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.wedding-fleet-tags span {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE5D9 100%);
    color: #FF6B35;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.wedding-fleet-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FF6B35;
}

.wedding-fleet-cta-box {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #FFF8F5 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.wedding-fleet-cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.wedding-fleet-cta-content {
    position: relative;
    z-index: 1;
}

.wedding-fleet-cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1E293B;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wedding-fleet-cta-content p {
    color: #64748B;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wedding-fleet-cta-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wedding-fleet-cta-btn i {
    margin-left: 0.5rem;
}

/* Image Section with Content */
.wedding-image-section {
    padding: 5rem 0;
}

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

.wedding-content-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.wedding-content-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: #1E293B;
}

.wedding-content-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748B;
    margin-bottom: 1.5rem;
}

.wedding-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.wedding-feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.wedding-feature-icon-box i {
    color: white;
    font-size: 1.5rem;
}

.wedding-feature-item-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1E293B;
}

.wedding-feature-item-content p {
    color: #64748B;
    margin: 0;
}

/* How It Works Section */
.wedding-how-it-works {
    background: #F8FAFC;
    padding: 5rem 0;
}

.wedding-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.wedding-step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.wedding-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.wedding-step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E293B;
}

.wedding-step-card p {
    color: #64748B;
    line-height: 1.7;
}

/* Testimonials Section */
.wedding-testimonials-section {
    background: #F8FAFC;
    padding: 5rem 0;
}

/* FAQ Section */
.wedding-faq-section {
    background: white;
    padding: 5rem 0;
}

/* Booking Form Section */
.wedding-booking-section {
    background: #F8FAFC;
    padding: 5rem 0;
}

/* Hero CTA Margin */
.wedding-hero-cta {
    margin-top: 2rem;
}

/* Hero Description Links */
.about-hero-description a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.about-hero-description a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wedding-services-overview,
    .wedding-description-section,
    .wedding-features-section,
    .wedding-fleet-section,
    .wedding-image-section,
    .wedding-how-it-works,
    .wedding-testimonials-section,
    .wedding-faq-section,
    .wedding-booking-section {
        padding: 4rem 0;
    }

    .wedding-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .wedding-content-text h2 {
        font-size: 2rem;
        margin: 0.75rem 0;
    }

    .wedding-content-text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .wedding-content-image {
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .wedding-feature-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .wedding-feature-icon-box {
        margin: 0 auto 1rem;
        width: 60px;
        height: 60px;
    }

    .wedding-feature-icon-box i {
        font-size: 1.75rem;
    }

    .wedding-feature-item-content h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .wedding-feature-item-content p {
        font-size: 0.9375rem;
    }

    .wedding-fleet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wedding-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wedding-image-section {
        padding: 3rem 0;
    }

    .wedding-content-grid {
        gap: 1.5rem;
    }

    .wedding-content-text h2 {
        font-size: 1.75rem;
        margin: 0.5rem 0;
    }

    .wedding-content-text p {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .wedding-content-image {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .wedding-feature-item {
        margin-bottom: 1.25rem;
        padding: 0;
    }

    .wedding-feature-icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 0.875rem;
    }

    .wedding-feature-icon-box i {
        font-size: 1.5rem;
    }

    .wedding-feature-item-content h4 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .wedding-feature-item-content p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .wedding-service-card,
    .wedding-feature-card,
    .wedding-fleet-card,
    .wedding-step-card {
        padding: 1.5rem;
    }

    .wedding-fleet-cta-box {
        padding: 2rem 1.5rem;
    }
}
        .local-fleet-section {
            margin-top: 3rem;
        }
        .local-fleet-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 1024px) {
            .local-fleet-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        @media (max-width: 640px) {
            .local-fleet-grid {
                grid-template-columns: 1fr;
            }
        }
        .local-fleet-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .local-fleet-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
        }
        .local-fleet-featured {
            border: 2px solid var(--secondary-color);
        }
        .local-fleet-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        .local-fleet-image {
            width: 100%;
            height: 260px;
            min-height: 260px;
            overflow: hidden;
            background: var(--bg-peach);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 1rem;
        }
        .local-fleet-image img {
            width: 100%;
            height: auto;
            max-width: 100%;
            max-height: 220px;
            object-fit: contain;
            object-position: center;
            transition: transform 0.3s ease;
        }
        .local-fleet-card:hover .local-fleet-image img {
            transform: scale(1.05);
        }
        .local-fleet-content {
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .local-fleet-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }
        .local-fleet-specs {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        .local-fleet-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.25rem;
            flex-grow: 1;
        }
        .local-fleet-btn {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }
