/* ============================================================
   AIRPORT TRANSFER THEME - COMPLETE CSS
   Color: Trust Blue (#1a56db) + Amber Accent (#f59e0b)
   Approach: Desktop-first, Light theme, WCAG AA
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
    --accent: #ff6b00;
    --accent-dark: #c05000;
    --accent-light: #fff7ed;
    --dark: #1e293b;
    --gray-dark: #334155;
    --gray: #64748b;
    --gray-light: #7c8da0;
    --light: #f1f5f9;
    --lighter: #f8fafc;
    --white: #ffffff;
    --success: #059669;
    --danger: #dc2626;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.1);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --section-padding: 100px;
    --font-body: Arial, Helvetica, sans-serif;
    --font-heading: Arial, Helvetica, sans-serif;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 16px;
    color: var(--gray-dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

input, select, textarea, button {
    font-family: var(--font-body);
    font-size: 16px;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================================
   3. CONTAINER & LAYOUT
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: var(--section-padding) 0;
}

.section-light {
    padding: var(--section-padding) 0;
    background-color: var(--lighter);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .section-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header .section-title {
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header .section-description {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
}

.btn i {
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--light);
    border-color: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-accent {
    background-color: transparent;
    color: var(--accent-dark);
    border-color: var(--accent);
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   5. ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   6. HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo img {
    height: 40px;
    width: auto;
}
.logo-mark {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}
.logo-first {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.logo-second {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.3px;
}

/* ---- Navigation ---- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover {
    color: var(--primary);
}

.nav-menu > li.active > a {
    color: var(--primary);
}

/* ---- Dropdown ---- */
.has-dropdown > a i {
    font-size: 10px;
    transition: var(--transition);
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--light);
}

@media (min-width: 993px) {
    .has-dropdown:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-dark);
    transition: var(--transition);
}

.dropdown li a:hover {
    background-color: var(--lighter);
    color: var(--primary);
    padding-left: 24px;
}

.dropdown li a i {
    font-size: 14px;
    color: var(--gray-light);
    width: 20px;
    text-align: center;
}

.dropdown li a:hover i {
    color: var(--primary);
}

/* ---- Header Actions ---- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.header-phone i {
    font-size: 18px;
    color: var(--primary);
}

.header-phone:hover {
    color: var(--primary);
}

.header-actions .btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* ---- Language Switcher ---- */
.lang-switcher {
    display: flex;
    align-items: center;
}
.lang-switcher button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: 0.3px;
}
.lang-switcher button:hover {
    background: var(--primary-light, #eff6ff);
    border-color: var(--primary);
    color: var(--primary);
}

/* ---- Mobile Menu Button ---- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile Menu Overlay ---- */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ============================================================
   7. HERO — 2026 PREMIUM LIGHT
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    background:
        /* Nokta deseni */
        radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        /* Ana gradient */
        linear-gradient(160deg, #f0f5ff 0%, #e8f0fe 30%, #ffffff 60%, #fff7ed 100%);
    background-size: 24px 24px, 100% 100%;
    position: relative;
    overflow: hidden;
}

/* Sağ üst büyük daire */
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, rgba(37, 99, 235, 0.03) 40%, transparent 70%);
    pointer-events: none;
}

/* Sol alt turuncu halka */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 40%, rgba(255, 107, 0, 0.06) 42%, rgba(255, 107, 0, 0.06) 44%, transparent 46%);
    pointer-events: none;
}

/* Dekoratif geometrik şekiller */
.hero-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -40px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(37, 99, 235, 0.08);
    border-radius: 16px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: -1;
}

.hero-grid::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 107, 0, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Küçük dekoratif noktalar */
.hero-content::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 48%;
    width: 8px;
    height: 8px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(255, 107, 0, 0.05));
    border-radius: 12px;
    transform: rotate(20deg);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 40px 0 20px;
}

.hero-content {
    padding-right: 20px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 107, 0, 0.15);
}

.hero-badge i {
    font-size: 14px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--primary);
}

.hero > .container > .hero-grid > .hero-content > p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-features {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    background: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--light);
}

.hero-feature i {
    color: var(--success);
    font-size: 16px;
}

/* ---- PNG Icon Style ---- */
.icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    vertical-align: middle;
}

.service-card-icon .icon-img,
.feature-icon .icon-img,
.step-card-icon .icon-img {
    width: 24px;
    height: 24px;
}

.hero-trust-item .icon-img {
    width: 18px;
    height: 18px;
}

.stars .icon-img {
    width: 16px;
    height: 16px;
}

/* ---- Hero Vehicle Image ---- */
.hero-vehicle {
    margin-top: 24px;
    text-align: center;
}

.hero-vehicle img {
    max-width: 480px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18)) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
    transform: translateX(-20px);
    transition: transform 0.4s ease;
}

.hero-vehicle img:hover {
    transform: translateX(-20px) scale(1.02);
}

@media (max-width: 992px) {
    .hero-vehicle img {
        max-width: 360px;
        transform: translateX(0);
    }
    .hero-vehicle img:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .hero-vehicle img {
        max-width: 280px;
    }
}

/* ---- Hero Form — Premium White Card ---- */
.hero-form {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.02);
}

.hero-form-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light);
}

.hero-form-header h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 4px;
}

.hero-form-header h3 i {
    color: var(--accent);
    margin-right: 8px;
}

.hero-form-header p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

.hero-form .form-group {
    margin-bottom: 14px;
}

.hero-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-form .form-control,
.hero-form select,
.hero-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: var(--dark);
    background: var(--lighter);
    transition: var(--transition);
}

.hero-form .form-control:focus,
.hero-form select:focus,
.hero-form input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    background: var(--white);
}

.hero-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-form .form-icon {
    position: relative;
}

.hero-form .form-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    font-size: 16px;
    z-index: 1;
}

.hero-form .form-icon .form-control,
.hero-form .form-icon select,
.hero-form .form-icon input {
    padding-left: 42px;
}

.hero-form .btn-accent {
    width: 100%;
    padding: 15px 28px;
    font-size: 16px;
    margin-top: 8px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.hero-form .btn-accent:hover {
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.45);
    transform: translateY(-2px);
}

.form-alt {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.form-alt a {
    color: #25d366;
    font-weight: 600;
}

.form-alt a i {
    margin-right: 4px;
}

/* ---- Hero Trust Bar ---- */
.hero-trust-bar {
    position: relative;
    z-index: 2;
    padding: 28px 0;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(37, 99, 235, 0.08);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(8px);
}

.hero-trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.hero-trust-item i {
    color: var(--accent);
    font-size: 16px;
}

/* ============================================================
   8. BOOKING / RESERVATION FORM
   ============================================================ */
.booking-form {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light);
}

.booking-form-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.booking-form-subtitle {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--danger);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--dark);
    background-color: var(--white);
    transition: var(--transition);
    line-height: 1.5;
}

.form-control:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-control::placeholder {
    color: var(--gray-light);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.form-icon {
    position: relative;
}

.form-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    font-size: 16px;
    pointer-events: none;
}

.form-icon .form-control {
    padding-left: 44px;
}

.form-hint {
    font-size: 12px;
    color: var(--gray);
    margin-top: 6px;
}

.form-error {
    font-size: 12px;
    color: var(--danger);
    margin-top: 6px;
}

.form-control.error {
    border-color: var(--danger);
}

.form-control.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ---- Booking Steps ---- */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    padding: 0 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    flex-shrink: 0;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
    white-space: nowrap;
}

.step-item.active .step-number {
    background-color: var(--accent);
    color: var(--dark);
}

.step-item.active .step-label {
    color: var(--dark);
}

.step-item.completed .step-number {
    background-color: var(--success);
    color: var(--white);
}

.step-item.completed .step-label {
    color: var(--gray-dark);
}

.step-line {
    width: 60px;
    height: 2px;
    background-color: var(--light);
    margin: 0 16px;
    flex-shrink: 0;
}

.step-line.active {
    background-color: var(--accent);
}

/* ---- Vehicle Select Grid ---- */
.vehicle-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.vehicle-option {
    border: 2px solid var(--light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background-color: var(--white);
}

.vehicle-option:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.vehicle-option.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.vehicle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vehicle-option-img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.vehicle-option-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.vehicle-option-capacity {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.vehicle-option-capacity span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vehicle-option-capacity i {
    font-size: 14px;
    color: var(--gray-light);
}

.vehicle-option-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.vehicle-option-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
}

.vehicle-option .check-mark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.vehicle-option.selected .check-mark {
    display: flex;
}

/* ---- Extras Grid ---- */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--white);
}

.extra-item:hover {
    border-color: var(--primary-light);
    background-color: var(--lighter);
}

.extra-item.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.extra-item-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.extra-item-icon i {
    font-size: 18px;
    color: var(--primary);
}

.extra-item-info {
    flex: 1;
}

.extra-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.extra-item-price {
    font-size: 13px;
    color: var(--gray);
}

.extra-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

/* ---- Payment Options ---- */
.payment-options {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.payment-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid var(--light);
    border-radius: var(--radius);
    padding: 18px 24px;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--white);
}

.payment-option:hover {
    border-color: var(--primary-light);
}

.payment-option.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.payment-option i {
    font-size: 24px;
    color: var(--primary);
}

.payment-option-text strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.payment-option-text span {
    font-size: 13px;
    color: var(--gray);
}

/* ---- Booking Summary ---- */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.booking-summary {
    background-color: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--light);
    position: sticky;
    top: 100px;
}

.booking-summary-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
}

.summary-item-label {
    font-size: 14px;
    color: var(--gray);
}

.summary-item-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.price-row .label {
    color: var(--gray);
}

.price-row .value {
    font-weight: 600;
    color: var(--dark);
}

.price-row.discount .value {
    color: var(--success);
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    margin-top: 12px;
    border-top: 2px solid var(--dark);
}

.price-total .label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.price-total .value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

/* ============================================================
   8a. BOOKING PAGE (from reference rezervasyon.html)
   ============================================================ */

/* Steps Indicator */
.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    background: transparent;
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
    position: relative;
}
.step-indicator.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transform: scale(1.02);
}
.step-indicator.completed {
    background: var(--success);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}
.step-indicator-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--gray);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.step-indicator.active .step-indicator-number {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.step-indicator.completed .step-indicator-number {
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.step-connector {
    width: 48px;
    height: 3px;
    background: var(--light);
    flex-shrink: 0;
    border-radius: 3px;
    margin: 0 4px;
    transition: all 0.3s ease;
}
.step-connector.completed {
    background: linear-gradient(90deg, var(--success), var(--primary));
}

/* Form Card */
.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
}
.booking-form-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
}
.booking-form-card .form-subtitle {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 32px;
}

/* Form Elements - Booking specific */
.booking-form .form-group {
    margin-bottom: 20px;
}
.booking-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.booking-form label .optional {
    font-weight: 400;
    color: var(--gray);
    font-size: 13px;
}
.booking-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    font-family: var(--font-body);
}
.booking-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.booking-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.booking-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Vehicle Selection & Extras — styles moved to rezervasyon.blade.php @push('styles') */

/* Payment Options - Booking page version */
.booking-form .payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking-form .payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.booking-form .payment-option:hover {
    border-color: var(--primary);
}
.booking-form .payment-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}
.booking-form .payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}
.payment-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}
.payment-option-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.btn-back {
    padding: 14px 28px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
}
.btn-back:hover {
    border-color: var(--gray);
    background: var(--light);
}
.btn-next,
.btn-submit {
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    flex: 1;
    justify-content: center;
}
.btn-next {
    background: var(--primary);
    color: var(--white);
}
.btn-next:hover {
    background: var(--primary-dark);
}
.btn-submit {
    background: var(--accent);
    color: var(--white);
}
.btn-submit:hover {
    background: var(--accent-dark);
}

/* Summary Card (Sticky) */
.booking-summary {
    position: sticky;
    top: 100px;
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}
.summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.summary-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
}
.summary-card-header h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.summary-card-body {
    padding: 24px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.summary-row:last-child {
    border-bottom: none;
}
.summary-row-label {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.summary-row-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}
.summary-row-value.empty {
    color: var(--gray-light);
    font-weight: 400;
    font-style: italic;
}
.summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
}
.summary-total-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}
.summary-total-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}
.summary-help {
    margin-top: 20px;
    padding: 16px;
    background: var(--lighter);
    border-radius: var(--radius);
    text-align: center;
}
.summary-help p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}
.summary-help a {
    color: var(--success);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.summary-help a:hover {
    text-decoration: underline;
}

/* Trust Features */
.booking-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.booking-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}
.booking-trust-text h4 {
    font-size: 15px;
    margin-bottom: 2px;
}
.booking-trust-text p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0;
}

/* Step visibility */
.booking-step {
    display: none;
}
.booking-step.active {
    display: block;
}

/* ============================================================
   8b. FEATURES / WHY CHOOSE US
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light);
    transition: var(--transition);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 22px;
    color: var(--primary);
}

.feature-card h3,
.feature-card h4 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 0;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   8c. HERO FEATURES & FORM EXTRAS
   ============================================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
}

.hero-feature i {
    color: var(--success);
    font-size: 16px;
}

.hero-form-header {
    margin-bottom: 24px;
}

.hero-form-header h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 4px;
}

.hero-form-header h3 i {
    color: var(--accent);
    margin-right: 8px;
}

.hero-form-header p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

.form-alt {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
}

.form-alt a {
    color: var(--success);
    font-weight: 600;
}

.form-alt a i {
    margin-right: 4px;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ============================================================
   9. SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ---- Inline Card Header (icon + title side by side) ---- */
.card-header-inline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.card-header-inline h3,
.card-header-inline h4 {
    margin-bottom: 0;
}

.service-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius);
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon i {
    font-size: 22px;
    color: var(--primary);
}

.service-card-title {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 0;
}

.service-card-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.service-card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.service-card-link i {
    font-size: 12px;
    transition: var(--transition);
}

/* Service Detail */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.service-features {
    margin-top: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-dark);
}

.service-features li i {
    font-size: 16px;
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================================
   10. VEHICLE FLEET
   ============================================================ */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fleet-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light);
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.fleet-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-badge.vip {
    background-color: var(--accent);
    color: var(--white);
}

.fleet-badge.popular {
    background-color: var(--primary);
    color: var(--white);
}

.fleet-badge.economy {
    background-color: var(--success);
    color: var(--white);
}

.fleet-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fleet-card-img img {
    max-width: 90%;
    max-height: 180px;
    object-fit: contain;
}

.fleet-card-body {
    padding: 28px;
}

.fleet-card-name {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 16px;
}

.fleet-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light);
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
}

.fleet-spec i {
    font-size: 15px;
    color: var(--primary);
}

.fleet-card-features {
    margin-bottom: 20px;
}

.fleet-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-dark);
    padding: 4px 0;
}

.fleet-card-features li i {
    font-size: 12px;
    color: var(--success);
}

.fleet-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleet-card-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.fleet-card-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
    display: block;
}

.fleet-card-footer .btn {
    padding: 10px 24px;
}

/* ============================================================
   11. POPULAR ROUTES
   ============================================================ */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.route-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.route-card-route {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.route-card-from,
.route-card-to {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.route-card-arrow {
    color: var(--accent);
    font-size: 14px;
}

.route-card-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray);
}

.route-card-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.route-card-info i {
    font-size: 14px;
    color: var(--gray-light);
}

.route-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--light);
}

.route-card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.route-card-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
}

.route-card-bottom .btn {
    padding: 8px 20px;
    font-size: 13px;
}

/* ============================================================
   12. HOW IT WORKS (STEPS)
   ============================================================ */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: left;
    padding: 0 24px;
    position: relative;
}

.step-card-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.step-card .card-header-inline {
    gap: 10px;
}

.step-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card-icon i {
    font-size: 20px;
    color: var(--primary);
}

.step-card-title {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 0;
}

.step-card-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* Connector line between steps */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-light),
        var(--primary-light) 6px,
        transparent 6px,
        transparent 12px
    );
    z-index: 1;
}

/* ============================================================
   13. PRICING TABLE
   ============================================================ */
.pricing-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead th {
    background: var(--dark);
    color: var(--white);
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.pricing-table thead th:not(:first-child) {
    text-align: center;
}

.pricing-table tbody td {
    padding: 14px 24px;
    font-size: 15px;
    color: var(--gray-dark);
    border-bottom: 1px solid var(--light);
}

.pricing-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover:not(.pricing-group-row) {
    background-color: var(--lighter);
}

.pricing-group-row td {
    background: var(--primary-light);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-dark);
    padding: 12px 24px;
    letter-spacing: 0.2px;
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-top: 20px;
}

.pricing-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* ---- Pricing Table Responsive ---- */
@media (max-width: 576px) {
    .pricing-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table {
        min-width: 480px;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card-quote {
    font-size: 36px;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 12px;
}

.testimonial-card-text {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.stars i {
    font-size: 14px;
    color: var(--accent);
}

.stars i.empty {
    color: #e2e8f0;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--light);
}

.testimonial-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.testimonial-card-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-card-route {
    font-size: 13px;
    color: var(--gray);
}

/* ============================================================
   15. STATS
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Stats with accent bg */
.stats-section.accent-bg {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.stats-section.accent-bg .stat-number {
    color: var(--dark);
}

.stats-section.accent-bg .stat-number span {
    color: var(--white);
}

.stats-section.accent-bg .stat-label {
    color: rgba(0, 0, 0, 0.6);
}

/* ============================================================
   16. RESERVATION LOOKUP
   ============================================================ */
.lookup-section {
    max-width: 600px;
    margin: 0 auto;
}

.lookup-form {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light);
}

.lookup-form-title {
    font-size: 24px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 8px;
}

.lookup-form-subtitle {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 32px;
}

.lookup-result {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light);
    margin-top: 32px;
}

.lookup-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light);
}

.lookup-result-code {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.lookup-result-status {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.lookup-result-status.confirmed {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.lookup-result-status.pending {
    background-color: var(--accent-light);
    color: var(--accent-dark);
}

.lookup-result-status.cancelled {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.lookup-result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lookup-detail-item {
    padding: 12px 0;
}

.lookup-detail-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.lookup-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* ============================================================
   17. FAQ
   ============================================================ */
.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-sidebar-title {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
}

.faq-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-nav-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.faq-nav-item:hover {
    background-color: var(--lighter);
    color: var(--primary);
}

.faq-nav-item.active {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    border-left-color: var(--primary);
}

.faq-content {
    /* main content area */
}

.faq-group {
    margin-bottom: 40px;
}

.faq-group-title {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.faq-item {
    border: 1px solid var(--light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background-color: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
}

.faq-item.active .faq-question-text {
    color: var(--primary);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

/* FAQ simple (no sidebar) */
.faq-simple {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================================
   18. BLOG
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-category {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.blog-card-title {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--dark);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--light);
    font-size: 13px;
    color: var(--gray);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-author-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-light);
    overflow: hidden;
}

.blog-card-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-date i {
    font-size: 13px;
}

/* Blog Detail Layout */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.blog-detail-content {
    /* main content */
}

.blog-detail-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light);
    font-size: 14px;
    color: var(--gray);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta i {
    color: var(--gray-light);
}

.blog-detail-featured {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.blog-detail-featured img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
}

.blog-detail-body h2 {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-detail-body h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.blog-detail-body p {
    margin-bottom: 16px;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-detail-body ul li,
.blog-detail-body ol li {
    list-style: disc;
    margin-bottom: 8px;
}

.blog-detail-body ol li {
    list-style: decimal;
}

.blog-detail-body blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 24px 0;
    background-color: var(--lighter);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--gray-dark);
}

.blog-detail-body img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--light);
    flex-wrap: wrap;
}

.blog-detail-tags span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.blog-detail-tags a {
    display: inline-block;
    padding: 4px 14px;
    background-color: var(--light);
    color: var(--gray-dark);
    font-size: 13px;
    border-radius: 50px;
    transition: var(--transition);
}

.blog-detail-tags a:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light);
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.sidebar-search {
    display: flex;
    gap: 0;
}

.sidebar-search .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
}

.sidebar-search .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 12px 18px;
}

.sidebar-categories li {
    border-bottom: 1px solid var(--light);
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-dark);
    transition: var(--transition);
}

.sidebar-categories li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.sidebar-categories li a span {
    font-size: 12px;
    color: var(--gray-light);
    background-color: var(--light);
    padding: 2px 10px;
    border-radius: 50px;
}

.sidebar-recent-posts li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
}

.sidebar-recent-posts li:last-child {
    border-bottom: none;
}

.sidebar-recent-post-img {
    width: 72px;
    height: 56px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-recent-post-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar-recent-post-title a {
    color: var(--dark);
}

.sidebar-recent-post-title a:hover {
    color: var(--primary);
}

.sidebar-recent-post-date {
    font-size: 12px;
    color: var(--gray);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    border: none;
}

.sidebar-cta .sidebar-widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    width: 100%;
}

/* ============================================================
   19. CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    /* left column */
}

.contact-info-title {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-info-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 22px;
    color: var(--primary);
}

.contact-item-content {
    /* text content */
}

.contact-item-label {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.contact-item-value a {
    color: var(--dark);
}

.contact-item-value a:hover {
    color: var(--primary);
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light);
}

.contact-form-title {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 24px;
}

.map-section {
    width: 100%;
    height: 400px;
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-section-full {
    width: 100%;
    height: 400px;
    margin: 0;
    border-radius: 0;
}

/* ============================================================
   20. ABOUT / CORPORATE
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-experience {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--accent);
    color: var(--dark);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.about-experience-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content {
    /* right column */
}

.about-content .section-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.about-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 18px;
    color: var(--primary);
}

.about-feature-text h3,
.about-feature-text h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand {
    /* first column */
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-links li a i {
    font-size: 10px;
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact li i {
    font-size: 16px;
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ============================================================
   22. CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
}

.cta-phone i {
    color: var(--accent);
}

/* ============================================================
   SEO CONTENT
   ============================================================ */
.seo-content {
    background: var(--gray-bg);
    border-top: 1px solid var(--light);
}

.seo-content-inner {
    max-width: 860px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.seo-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-top: 28px;
    margin-bottom: 10px;
}

.seo-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 0;
}

.seo-content p + p {
    margin-top: 12px;
}

/* ============================================================
   23. PAGE TITLE
   ============================================================ */
.page-title-section {
    background-color: var(--lighter);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--light);
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(26, 86, 219, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-title-inner {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--gray-light);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

.page-title {
    font-size: 40px;
    color: var(--dark);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
}

/* ============================================================
   24. COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 9999;
    display: none;
    border-top: 1px solid var(--light);
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-text {
    font-size: 14px;
    color: var(--gray-dark);
    flex: 1;
    margin-bottom: 0;
}

.cookie-banner-text a {
    color: var(--primary);
    font-weight: 600;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ============================================================
   25. WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   26. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
}

/* ============================================================
   27. UTILITIES
   ============================================================ */

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Colors */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent-dark) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-dark { color: var(--dark) !important; }
.text-gray { color: var(--gray) !important; }
.text-gray-light { color: var(--gray-light) !important; }
.text-white { color: var(--white) !important; }

/* Background Colors */
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-accent-light { background-color: var(--accent-light) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-lighter { background-color: var(--lighter) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-dark { background-color: var(--dark) !important; }

/* Font Weights */
.fw-400 { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

/* Font Sizes */
.fs-sm { font-size: 13px !important; }
.fs-md { font-size: 15px !important; }
.fs-lg { font-size: 18px !important; }
.fs-xl { font-size: 24px !important; }

/* Margins */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mt-5 { margin-top: 48px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-5 { margin-bottom: 48px !important; }

.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Paddings */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 8px !important; }
.pt-2 { padding-top: 16px !important; }
.pt-3 { padding-top: 24px !important; }
.pt-4 { padding-top: 32px !important; }
.pt-5 { padding-top: 48px !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 8px !important; }
.pb-2 { padding-bottom: 16px !important; }
.pb-3 { padding-bottom: 24px !important; }
.pb-4 { padding-bottom: 32px !important; }
.pb-5 { padding-bottom: 48px !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-inline-flex { display: inline-flex !important; }

/* Flexbox */
.flex-wrap { flex-wrap: wrap !important; }
.flex-column { flex-direction: column !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 24px !important; }
.gap-4 { gap: 32px !important; }

/* Width/Height */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }

/* Position */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

/* Border Radius */
.rounded { border-radius: var(--radius) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-full { border-radius: 50% !important; }

/* Shadows */
.shadow { box-shadow: var(--shadow) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-none { box-shadow: none !important; }

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.badge-accent {
    background-color: var(--accent-light);
    color: var(--accent-dark);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.badge-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.badge-gray {
    background-color: var(--light);
    color: var(--gray);
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background-color: var(--light);
    margin: 24px 0;
}

/* List with check icons */
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-dark);
}

.check-list li::before {
    content: '\2713';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Truncate */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================================
   28. RESPONSIVE - 1200px
   ============================================================ */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    .hero-title {
        font-size: 46px;
    }

    .section-header .section-title {
        font-size: 34px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-form {
        padding: 28px;
    }

    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .footer-grid {
        gap: 32px;
    }

    .blog-detail-layout {
        grid-template-columns: 1fr 300px;
        gap: 36px;
    }

    .booking-layout {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }

    .vehicle-select-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .about-grid {
        gap: 40px;
    }

    .page-title {
        font-size: 36px;
    }

    .stats-grid {
        gap: 32px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ============================================================
   29. RESPONSIVE - 992px
   ============================================================ */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        max-width: 720px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    .section-header .section-title {
        font-size: 30px;
    }

    /* ---- Mobile Navigation ---- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 0 32px;
        gap: 0;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li > a {
        padding: 14px 24px;
        font-size: 16px;
        color: var(--dark);
        border-radius: 0;
        border-bottom: 1px solid var(--light);
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .nav-menu > li > a:hover {
        background-color: var(--lighter);
        color: var(--primary);
    }

    /* Mobile Dropdown */
    .has-dropdown > a {
        display: flex;
        justify-content: space-between;
    }

    .has-dropdown > a i {
        transition: var(--transition);
    }

    .has-dropdown.open > a i {
        transform: rotate(180deg);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding: 0;
        display: none;
        background-color: var(--lighter);
    }

    .has-dropdown.open > .dropdown {
        display: block;
    }

    .dropdown li a {
        padding: 12px 24px 12px 44px;
        border-bottom: 1px solid var(--light);
        font-size: 14px;
    }

    .dropdown li a:hover {
        background-color: var(--light);
        padding-left: 48px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .header-phone {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .lang-switcher button span {
        display: none;
    }
    .lang-switcher button {
        padding: 4px 8px;
    }

    /* Header always solid at 992 */
    .header {
        background-color: var(--white);
        box-shadow: var(--shadow);
    }

    /* ---- Hero ---- */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-form {
        order: -1;
        max-width: 100%;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    }

    .hero-form-header {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .hero-form-header h3 {
        font-size: 17px;
    }

    .hero-form-header p {
        font-size: 13px;
    }

    .hero-form .form-group {
        margin-bottom: 10px;
    }

    .hero-form label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .hero-form .form-control,
    .hero-form select,
    .hero-form input {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 8px;
    }

    .hero-form .btn-block {
        padding: 12px;
        font-size: 15px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero > .container > .hero-grid > .hero-content > p {
        font-size: 15px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-vehicle {
        margin-top: 16px;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-trust-items {
        gap: 16px;
    }

    .hero-trust-item {
        font-size: 13px;
    }

    /* ---- Grids to 2 columns ---- */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-number {
        font-size: 38px;
    }

    /* ---- Steps ---- */
    .steps-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

    .step-card {
        flex: 0 0 calc(50% - 16px);
        padding: 0 16px;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    /* ---- Service Detail ---- */
    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* ---- About ---- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img img {
        height: 360px;
    }

    /* ---- Contact ---- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* ---- FAQ ---- */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .faq-nav-item {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 8px 16px;
    }

    .faq-nav-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary);
    }

    /* ---- Features ---- */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ---- Booking ---- */
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-summary {
        position: static;
    }

    .vehicle-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ---- Blog Detail ---- */
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
    }

    /* ---- Footer ---- */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* ---- Page Title ---- */
    .page-title {
        font-size: 32px;
    }

    .page-title-section {
        padding: 120px 0 48px;
    }

    /* ---- CTA ---- */
    .cta-title {
        font-size: 30px;
    }

    /* ---- Pricing Table ---- */
    .pricing-table {
        font-size: 14px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 16px;
    }

    /* ---- Extras ---- */
    .extras-grid {
        grid-template-columns: 1fr;
    }

    /* ---- Payment ---- */
    .payment-options {
        flex-direction: column;
    }

    /* ---- Cookie ---- */
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    /* ---- Lookup ---- */
    .lookup-result-details {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   30. RESPONSIVE - 768px
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 19px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header .section-title {
        font-size: 26px;
    }

    .section-header .section-description {
        font-size: 15px;
    }

    /* ---- Hero ---- */
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 0;
    }

    .hero-grid {
        gap: 20px;
        padding: 20px 0 16px;
    }

    .hero-form {
        padding: 18px;
    }

    .hero-form-header {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .hero-form-header h3 {
        font-size: 16px;
    }

    .hero-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-feature {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero-trust-bar {
        padding: 16px 0;
        margin-top: 12px;
    }

    .hero-trust-items {
        gap: 12px;
    }

    .hero-trust-item {
        font-size: 12px;
    }

    /* ---- Grids to 1 column ---- */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* ---- Steps ---- */
    .steps-grid {
        flex-direction: column;
        gap: 32px;
    }

    .step-card {
        flex: 1 1 100%;
        padding: 24px;
        background: var(--white);
        border-radius: var(--radius-lg);
        border: 1px solid var(--light);
        box-shadow: var(--shadow);
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    /* ---- Form ---- */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 24px;
    }

    .vehicle-select-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-option {
        padding: 20px;
    }

    /* ---- Booking Steps ---- */
    .booking-steps {
        gap: 0;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .step-label {
        display: none;
    }

    .step-line {
        width: 40px;
    }

    /* ---- About ---- */
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img img {
        height: 280px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    /* ---- Footer ---- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* ---- Blog Detail ---- */
    .blog-detail-content h1 {
        font-size: 28px;
    }

    .blog-detail-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .blog-detail-featured img {
        height: 260px;
    }

    /* ---- CTA ---- */
    .cta-section {
        padding: 64px 0;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* ---- Page Title ---- */
    .page-title-section {
        padding: 110px 0 40px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    /* ---- Map ---- */
    .map-section {
        height: 300px;
        margin-top: 40px;
    }

    /* ---- Pricing ---- */
    .pricing-table th,
    .pricing-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* ---- Lookup ---- */
    .lookup-form {
        padding: 24px;
    }

    .lookup-result {
        padding: 24px;
    }

    /* ---- Stats Section ---- */
    .stats-section {
        padding: 60px 0;
    }

    /* ---- FAQ ---- */
    .faq-question {
        padding: 14px 18px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 16px;
    }

    /* ---- Trust Bar ---- */
    .hero-trust-items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }
}

/* ============================================================
   31. RESPONSIVE - 480px
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 23px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 17px;
    }

    .section-header .section-title {
        font-size: 23px;
    }

    .section-header .section-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    /* ---- Buttons ---- */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .btn-sm {
        padding: 10px 18px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* ---- Hero ---- */
    .hero {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .hero-grid {
        gap: 16px;
        padding: 16px 0 12px;
    }

    .hero-form {
        padding: 16px;
        border-radius: 14px;
    }

    .hero-form-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .hero-form-header h3 {
        font-size: 15px;
    }

    .hero-form-header p {
        font-size: 12px;
    }

    .hero-form .form-group {
        margin-bottom: 8px;
    }

    .hero-form label {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .hero-form .form-control,
    .hero-form select,
    .hero-form input {
        padding: 9px 12px;
        font-size: 13px;
    }

    .hero-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-form .btn-block {
        padding: 11px;
        font-size: 14px;
    }

    .form-alt {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hero > .container > .hero-grid > .hero-content > p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-features {
        gap: 6px;
    }

    .hero-feature {
        font-size: 11px;
        padding: 6px 10px;
        gap: 6px;
    }

    .hero-feature .icon-img {
        width: 14px;
        height: 14px;
    }

    .hero-vehicle {
        margin-top: 12px;
    }

    .hero-trust-bar {
        padding: 14px 0;
        margin-top: 8px;
    }

    .hero-trust-items {
        gap: 8px 16px;
    }

    .hero-trust-item {
        font-size: 11px;
        gap: 4px;
    }

    .hero-trust-item .icon-img {
        width: 14px;
        height: 14px;
    }

    /* ---- Header ---- */
    .header-inner {
        height: 64px;
    }

    .logo img {
        height: 32px;
    }
    .logo-first,
    .logo-second {
        font-size: 18px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .nav-menu.active {
        right: 0;
        width: 100%;
    }

    /* ---- Form Icon ---- */
    .hero-form .form-icon i {
        font-size: 13px;
        left: 10px;
    }

    .hero-form .form-icon .form-control,
    .hero-form .form-icon select,
    .hero-form .form-icon input {
        padding-left: 34px;
    }

    /* ---- Cards ---- */
    .service-card {
        padding: 24px;
    }

    .service-card-icon .icon-img {
        width: 28px;
        height: 28px;
    }

    .fleet-card-img {
        height: 180px;
        padding: 16px;
    }

    .fleet-card-img img {
        max-height: 150px;
    }

    .fleet-card-body {
        padding: 20px;
    }

    .fleet-specs {
        gap: 8px;
    }

    .fleet-spec {
        font-size: 12px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .blog-card-body {
        padding: 20px;
    }

    .route-card {
        padding: 20px;
    }

    .route-card-route {
        flex-wrap: wrap;
        gap: 8px;
    }

    .route-card-from,
    .route-card-to {
        font-size: 13px;
    }

    /* ---- Steps ---- */
    .step-card-icon .icon-img {
        width: 28px;
        height: 28px;
    }

    /* ---- Features ---- */
    .feature-icon .icon-img {
        width: 28px;
        height: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* ---- SEO Content ---- */
    .seo-content h2 {
        font-size: 20px;
    }

    .seo-content h3 {
        font-size: 16px;
    }

    .seo-content p {
        font-size: 14px;
    }

    /* ---- Stats ---- */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* ---- Form ---- */
    .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .booking-form {
        padding: 20px;
    }

    .booking-summary {
        padding: 20px;
    }

    /* ---- Contact ---- */
    .contact-form {
        padding: 24px;
    }

    .contact-item-icon {
        width: 44px;
        height: 44px;
    }

    /* ---- Footer ---- */
    .footer {
        padding-top: 48px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    /* ---- Page Title ---- */
    .page-title-section {
        padding: 100px 0 32px;
    }

    .page-title {
        font-size: 24px;
    }

    .breadcrumb {
        font-size: 13px;
    }

    /* ---- CTA ---- */
    .cta-section {
        padding: 48px 0;
    }

    .cta-title {
        font-size: 23px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-phone {
        font-size: 16px;
    }

    /* ---- Pricing ---- */
    .pricing-section {
        margin: 0 -16px;
    }

    .pricing-table {
        border-radius: 0;
    }

    /* ---- About ---- */
    .about-img img {
        height: 220px;
    }

    .about-experience {
        padding: 14px 20px;
    }

    .about-experience-number {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    /* ---- Blog Detail ---- */
    .blog-detail-content h1 {
        font-size: 24px;
    }

    .blog-detail-body {
        font-size: 15px;
    }

    /* ---- WhatsApp & Back to Top ---- */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        font-size: 16px;
        bottom: 72px;
        right: 16px;
    }

    /* ---- Cookie ---- */
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }

    /* ---- FAQ ---- */
    .faq-group-title {
        font-size: 19px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    /* ---- Lookup ---- */
    .lookup-form {
        padding: 20px;
    }

    .lookup-form-title {
        font-size: 20px;
    }

    /* ---- Map ---- */
    .map-section {
        height: 240px;
        margin-top: 32px;
    }

    /* ---- Extras ---- */
    .extra-item {
        padding: 12px 16px;
    }

    .extra-item-icon {
        width: 36px;
        height: 36px;
    }

    /* ---- Booking Steps ---- */
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .step-line {
        width: 24px;
        margin: 0 8px;
    }

    /* ---- Price Total ---- */
    .price-total .value {
        font-size: 20px;
    }

    /* ---- Vehicle Options ---- */
    .vehicle-option-price {
        font-size: 18px;
    }

    .vehicle-option-img {
        width: 100px;
        height: 64px;
    }

    /* ---- Fleet Card ---- */
    .fleet-card-price {
        font-size: 20px;
    }

    .fleet-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .fleet-card-footer .btn {
        width: 100%;
    }
}

/* ============================================================
   32. PRINT STYLES
   ============================================================ */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .back-to-top,
    .cookie-banner,
    .mobile-menu-btn,
    .mobile-menu-overlay {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
    }

    .section,
    .section-light {
        padding: 24px 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .page-title-section {
        padding-top: 0;
    }
}

/* ============================================================
   WCAG AA - ACCESSIBILITY ENHANCEMENTS
   ============================================================ */

/* Skip Navigation Link */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-nav:focus {
    top: 0;
    color: var(--white);
}

/* Focus-visible for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Focus ring for non-form elements */
.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
}

.btn-accent:focus-visible {
    outline-color: var(--accent-dark);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.25);
}

/* WhatsApp float focus */
.whatsapp-float:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.5);
}

/* Back to top focus */
.back-to-top:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

/* Cookie banner buttons */
.btn-cookie-accept:focus-visible,
.btn-cookie-settings:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Footer link underline on hover/focus for distinction */
.footer-links li a:hover,
.footer-links li a:focus-visible,
.footer-contact li a:hover,
.footer-contact li a:focus-visible,
.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced motion preference */
@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;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   HIZMET DETAY PAGE
   ============================================================ */
.hizmet-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.hizmet-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--dark);
}

.hizmet-detail-content h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark);
}

.hizmet-detail-content p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* Features checklist */
.hizmet-features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.hizmet-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-dark);
    border-bottom: 1px solid var(--light);
}

.hizmet-features-list li:last-child {
    border-bottom: none;
}

.hizmet-features-list li .icon-img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* How it works steps (vertical) */
.hizmet-steps {
    margin: 24px 0 32px;
    counter-reset: step-counter;
}

.hizmet-step {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light);
}

.hizmet-step:last-child {
    border-bottom: none;
}

.hizmet-step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    margin-top: 2px;
}

.hizmet-step-content h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.hizmet-step-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Included services list */
.included-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-dark);
}

.included-list li i {
    color: var(--success);
    font-size: 14px;
    flex-shrink: 0;
}

/* Sidebar */
.hizmet-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light);
    margin-bottom: 24px;
}

.sidebar-card-title {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.sidebar-card-title i {
    color: var(--primary);
    margin-right: 8px;
}

/* Booking form in sidebar */
.sidebar-card .form-group {
    margin-bottom: 16px;
}

.sidebar-card .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 6px;
}

.sidebar-card .form-control {
    padding: 12px 16px;
    font-size: 14px;
}

.sidebar-card .form-icon .form-control {
    padding-left: 44px;
}

.sidebar-card .btn-accent {
    margin-top: 4px;
}

/* Price card */
.sidebar-price {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-light), var(--white));
    border-color: var(--accent);
}

.sidebar-price .price-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 4px;
}

.sidebar-price .price-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.sidebar-price .price-note {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

/* Contact card */
.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--light);
}

.sidebar-contact-item:last-child {
    border-bottom: none;
}

.sidebar-contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sidebar-contact-icon.phone-icon {
    background-color: var(--primary-light);
    color: var(--primary);
}

.sidebar-contact-icon.whatsapp-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.sidebar-contact-info {
    flex: 1;
}

.sidebar-contact-info small {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.sidebar-contact-info a {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.sidebar-contact-info a:hover {
    color: var(--primary);
}

/* Related services grid */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================================================
   BOOKING PAGE - Additional
   ============================================================ */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.vehicle-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.vehicle-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid var(--light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.vehicle-option:hover,
.vehicle-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.vehicle-option input[type="radio"] {
    display: none;
}

.vehicle-option img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
}

.vehicle-option-body h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.vehicle-option-specs {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px;
}

.vehicle-option-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-dark);
}

.booking-extras {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--light);
}

.booking-extras h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

/* ============================================================
   LOOKUP PAGE - Additional
   ============================================================ */
.lookup-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.lookup-result-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light);
}

.lookup-details {
    margin: 0;
}

.lookup-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
}

.lookup-detail-row:last-child {
    border-bottom: none;
}

.lookup-detail-row dt {
    font-weight: 600;
    color: var(--gray-dark);
}

.lookup-detail-row dd {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE - Booking Page
   ============================================================ */
@media (max-width: 992px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .booking-form-card {
        order: 1;
    }
    .booking-summary {
        position: static;
        order: 2;
    }
    .steps-indicator {
        flex-wrap: nowrap;
        gap: 0;
        padding: 8px 12px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .step-indicator {
        padding: 6px 10px;
        font-size: 12px;
        gap: 6px;
    }
    .step-indicator-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .step-connector {
        width: 20px;
        height: 2px;
        margin: 0 2px;
    }
    .booking-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .booking-form-card {
        padding: 24px;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    .form-buttons {
        flex-direction: column;
    }
    .booking-trust {
        grid-template-columns: 1fr;
    }
    .steps-indicator {
        display: none;
    }
    /* Vehicle cards responsive — handled in page styles */
}

/* ============================================================
   RESPONSIVE - Hizmet Detay
   ============================================================ */
@media (max-width: 1024px) {
    .hizmet-detail-layout {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hizmet-detail-layout {
        grid-template-columns: 1fr;
    }

    .hizmet-sidebar {
        position: static;
    }

    .included-list {
        grid-template-columns: 1fr;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-option {
        flex-direction: column;
        text-align: center;
    }

    .vehicle-option img {
        width: 100%;
        height: 120px;
    }
}

/* Places Autocomplete Custom Dropdown */
.places-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10001;
    background: #fff;
    border: 1px solid var(--light, #e5e7eb);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    margin-top: 4px;
    max-height: 260px;
    overflow-y: auto;
}
.places-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
}
.places-dropdown-item:last-child {
    border-bottom: none;
}
.places-dropdown-item:hover {
    background: var(--primary-light, #eff6ff);
}
.places-dropdown-item strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark, #1a202c);
}
.places-dropdown-item small {
    font-size: 12px;
    color: var(--gray, #6b7280);
}
.places-dropdown-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--gray, #6b7280);
    text-align: center;
}
