/* ============================================
   VIP TRANSFER - MODERN CSS
   Ultra Fast, Mobile First, AdSense Ready
   ============================================ */

.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}

:root {
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ef5350;
    --secondary: #1a1a2e;
    --dark: #111111;
    --dark-lighter: #1e1e2f;
    --text: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --text-dark: #111111;
    --white: #ffffff;
    --light: #f8f9fa;
    --light-gray: #f0f0f0;
    --success: #25d366;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --border: rgba(0,0,0,0.1);
    --border-light: rgba(0,0,0,0.06);
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

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

.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    position: relative;
    z-index: 999;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a { color: rgba(255,255,255,0.8); }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-left i { margin-right: 6px; color: var(--primary); }

.top-bar-right { display: flex; align-items: center; gap: 15px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
    color: rgba(255,255,255,0.7);
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    font-size: 13px;
}
.social-links a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.lang-switcher { display: flex; gap: 6px; align-items: center; }
.lang-flag {
    display: flex; align-items: center;
    padding: 3px 6px;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}
.lang-flag:hover, .lang-flag.active { opacity: 1; border-color: var(--primary); }
.lang-flag img { border-radius: 2px; }

/* ============ NAVIGATION ============ */
.main-nav {
    background: var(--white);
    position: relative;
    z-index: 1000;
    border-bottom: none;
    transition: var(--transition);
}
.main-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, var(--primary), #ff6b35);
}

.main-nav.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 3px 20px rgba(0,0,0,0.15);
    background: var(--white);
    animation: slideDown 0.3s ease;
}

.nav-spacer {
    display: none;
}

.nav-spacer.active {
    display: block;
    height: 68px;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: auto; height: auto;
    background: none;
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--primary);
    transform: rotate(-25deg);
    margin-right: 2px;
}

.logo-name { display: block; font-weight: 700; font-size: 17px; color: var(--dark); letter-spacing: 0.5px; line-height: 1.2; font-style: italic; }
.logo-tagline { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 1px; font-style: italic; }

.nav-menu {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-menu > li > a {
    color: var(--dark);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu > li > a i.fa-chevron-down { font-size: 10px; }
.nav-menu > li > a:hover,
.nav-menu > li > a.active { background: rgba(211,47,47,0.08); color: var(--primary); }

.has-dropdown { position: relative; }
.dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 260px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 100;
}

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

.dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.dropdown li a:hover { background: rgba(211,47,47,0.08); color: var(--primary); padding-left: 22px; }

.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-phone-btn, .search-toggle, .mobile-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--light-gray);
    color: var(--dark);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}
.nav-phone-btn:hover, .search-toggle:hover { background: var(--primary); color: var(--white); }
.mobile-toggle { display: none; }

/* ============ SEARCH OVERLAY ============ */
.search-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.search-overlay.active { display: flex; }
.search-overlay-inner { width: 90%; max-width: 600px; }
.search-close {
    position: absolute;
    top: 30px; right: 30px;
    width: 50px; height: 50px;
    background: none; border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}
.search-form-overlay {
    display: flex;
    border-bottom: 2px solid var(--primary);
}
.search-form-overlay input {
    flex: 1;
    background: none; border: none;
    color: var(--white);
    font-size: 24px;
    padding: 15px 0;
    outline: none;
    font-family: var(--font);
}
.search-form-overlay input::placeholder { color: var(--text-muted); }
.search-form-overlay button {
    background: none; border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
}

/* ============ HERO SECTION ============ */
.hero-section { position: relative; height: 85vh; min-height: 550px; overflow: hidden; }

.hero-slider { width: 100%; height: 100%; position: relative; }

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(211,47,47,0.3));
}

.hero-content {
    position: relative; z-index: 2;
    height: 85vh; min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-prev, .hero-next {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.hero-prev:hover, .hero-next:hover { background: var(--primary); }

.hero-dots { display: flex; gap: 8px; }
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ============ RESERVATION FORM BAR ============ */
.reservation-bar {
    background: var(--primary);
    padding: 25px 0;
    margin-top: -5px;
    position: relative;
    z-index: 5;
}
.reservation-bar-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.reservation-bar-title {
    background: var(--primary-dark);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    color: var(--white);
    min-width: 200px;
    text-align: center;
}
.reservation-bar-title small { display: block; font-size: 12px; opacity: 0.8; }
.reservation-bar-title strong { display: block; font-size: 20px; font-weight: 800; }
.reservation-fields {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 10px;
    align-items: center;
}
.reservation-field {
    position: relative;
}
.reservation-field select,
.reservation-field input {
    width: 100%;
    padding: 12px 16px;
    padding-right: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    font-family: var(--font);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.reservation-field i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 14px;
}
.reservation-search-btn {
    padding: 12px 25px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.reservation-search-btn:hover { background: var(--primary-dark); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(211,47,47,0.4); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

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

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

.btn-success { background: var(--success); color: var(--white); border-color: var(--success); }
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); color: var(--white); }

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-xs { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 15px 35px; font-size: 16px; }
.btn-block { display: flex; justify-content: center; width: 100%; margin-bottom: 10px; }

/* ============ QUICK BOOKING - GRID ============ */
.quick-booking { padding: 40px 0 50px; background: var(--dark); }

.booking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.booking-grid-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.booking-grid-card:hover { border-color: var(--primary); background: rgba(211,47,47,0.08); }
.booking-grid-card .airport-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 8px; letter-spacing: 0.5px; }
.booking-grid-card .region-name { font-size: 18px; font-weight: 700; color: #ff6b6b; margin-bottom: 12px; font-style: italic; }
.booking-grid-card .btn { font-size: 12px; padding: 6px 16px; }

.booking-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.booking-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}
.booking-slider::-webkit-scrollbar { display: none; }

.booking-slider-prev,
.booking-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(211,47,47,0.4);
    transition: var(--transition);
}
.booking-slider-prev { left: 5px; }
.booking-slider-next { right: 5px; }
.booking-slider-prev:hover,
.booking-slider-next:hover { transform: translateY(-50%) scale(1.1); }

.booking-card {
    min-width: 240px;
    max-width: 240px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    flex-shrink: 0;
}
.booking-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(211,47,47,0.2); }

.booking-card-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.booking-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.booking-card-airport {
    position: absolute;
    bottom: 8px; left: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: rgba(211,47,47,0.9);
    padding: 4px 10px;
    border-radius: 4px;
}
.booking-card-airport i { margin-right: 4px; }

.booking-card-body { padding: 12px 15px 8px; }
.booking-card-body h4 { font-size: 15px; color: var(--white); font-weight: 700; }
.booking-card-body h4 i { color: var(--primary); margin-right: 6px; font-size: 13px; }

.booking-card-footer { padding: 0 15px 15px; }
.booking-card-footer .btn { width: 100%; justify-content: center; }

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px; height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header.dark h2 { color: var(--dark); }
.section-header h2 .text-primary { color: var(--primary); }

/* ============ ABOUT SECTION ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    text-align: center;
}
.badge-number { display: block; font-size: 28px; font-weight: 900; line-height: 1; }
.badge-text { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.about-content h2 { color: var(--primary); font-size: 22px; font-weight: 700; margin-bottom: 15px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(211,47,47,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.about-feature i { color: var(--primary); font-size: 20px; }
.about-feature span { font-size: 14px; font-weight: 500; color: var(--text); }

/* ============ WHY US SECTION ============ */
.why-us-section {
    position: relative;
    padding: 60px 0;
    background: var(--primary);
    overflow: hidden;
}
.why-us-section::before {
    content: '';
    position: absolute;
    top: -40px; left: 0; right: 0;
    height: 80px;
    background: var(--primary);
    border-radius: 50% 50% 0 0;
    transform: scaleX(1.5);
}
.why-us-section::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 0; right: 0;
    height: 80px;
    background: var(--primary);
    border-radius: 0 0 50% 50%;
    transform: scaleX(1.5);
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.why-us-title { color: var(--white); font-size: 28px; font-weight: 800; }
.why-us-title span { font-weight: 300; }
.why-us-list { list-style: none; }
.why-us-list li {
    color: var(--white);
    font-size: 16px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.why-us-list li::before {
    content: '\bb';
    font-size: 20px;
    font-weight: bold;
}

/* ============ SERVICES SECTION ============ */
.bg-dark { background: var(--dark); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); border-color: var(--primary); }

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-icon {
    position: absolute;
    bottom: -20px; right: 20px;
    width: 50px; height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(211,47,47,0.4);
}

.service-body { padding: 25px 20px 20px; }
.service-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }

/* ============ GALLERY GRID ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-grid > div {
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
}

/* ============ VEHICLES SECTION ============ */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.vehicle-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.vehicle-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow); }

.vehicle-image { position: relative; height: 180px; overflow: hidden; }
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-capacity {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.vehicle-body { padding: 20px; }
.vehicle-body h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; }
.vehicle-body p { color: var(--text-muted); font-size: 13px; }

/* ============ PRICES TABLE ============ */
.prices-table-wrapper { overflow-x: auto; }

.prices-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.prices-table thead { background: var(--dark); }
.prices-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    white-space: nowrap;
}
.prices-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
}
.prices-table td i { margin-right: 8px; color: var(--primary); }
.prices-table tbody tr:hover { background: rgba(211,47,47,0.03); }

/* Currency Switcher */
.currency-switcher {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.currency-btn {
    padding: 8px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}
.currency-btn.active,
.currency-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.price-cell { font-weight: 700; color: var(--primary); font-size: 16px; }

.price-section-block { margin-bottom: 40px; }
.price-airport-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(211,47,47,0.05);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}
.price-airport-title i { margin-right: 10px; color: var(--primary); }

.price-note {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(211,47,47,0.04);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.price-note p { color: var(--text-muted); font-size: 14px; }
.price-note i { color: var(--primary); margin-right: 8px; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { border-color: var(--primary); transform: translateY(-3px); }

.testimonial-stars { margin-bottom: 15px; }
.testimonial-stars i { color: var(--primary); font-size: 14px; }

.testimonial-text { color: var(--text-muted); font-size: 14px; font-style: italic; margin-bottom: 20px; line-height: 1.8; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { font-size: 40px; color: var(--primary); }
.testimonial-author h4 { font-size: 15px; color: var(--dark); font-weight: 600; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.faq-item.active { border-color: var(--primary); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover { background: rgba(211,47,47,0.03); }
.faq-question h3 { font-size: 15px; font-weight: 600; color: var(--dark); }
.faq-question i { color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 22px 18px;
}
.faq-answer p { color: var(--text-muted); font-size: 14px; line-height: 1.8; }

/* ============ CTA SECTION ============ */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1449965408869-ebd3fee7210d?w=1920&q=80') center/cover;
    text-align: center;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(211,47,47,0.4));
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 15px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ============ VIP GALLERY SECTION ============ */
.vip-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.vip-gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}
.vip-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.vip-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}
.vip-gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 15px 15px;
    transition: var(--transition);
}
.vip-gallery-overlay span {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.vip-gallery-item:hover .vip-gallery-overlay {
    padding-bottom: 22px;
}

/* ============ TRUST SECTION ============ */
.trust-section {
    background: var(--light);
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.trust-ssl {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
}
.trust-gov {
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: #fff;
}
.trust-d2 {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}
.trust-trip {
    background: linear-gradient(135deg, #00aa6c, #34e89e);
    color: #fff;
}
.trust-tursab {
    background: linear-gradient(135deg, #c8a94e, #f1c40f);
    color: #fff;
}
.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.trust-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}
.trust-text span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============ PAGE BANNER ============ */
.page-banner {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(211,47,47,0.3));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ============ CONTENT GRID ============ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.content-body h2 { font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.content-body h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin: 25px 0 15px; }
.content-body p { color: var(--text-muted); margin-bottom: 15px; line-height: 1.8; font-size: 15px; }
.content-body img { border-radius: var(--radius); margin: 20px 0; }

.content-image-full { margin: 25px 0; border-radius: var(--radius); overflow: hidden; }
.content-image-full img { width: 100%; height: 300px; object-fit: cover; }

.advantage-list { list-style: none; margin: 20px 0; }
.advantage-list li {
    padding: 10px 0;
    color: var(--text);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.advantage-list li i { color: var(--success); font-size: 16px; }

/* ============ SIDEBAR ============ */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }

.sidebar-menu { list-style: none; }
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--text-muted);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-bottom: 2px;
}
.sidebar-menu li a:hover, .sidebar-menu li.active a { background: rgba(211,47,47,0.06); color: var(--primary); padding-left: 18px; }
.sidebar-menu li a i { color: var(--primary); }

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    text-align: center;
    border: none !important;
}
.sidebar-cta h3 { color: var(--white) !important; border-bottom-color: rgba(255,255,255,0.3) !important; }
.sidebar-cta p { color: rgba(255,255,255,0.8); margin-bottom: 15px; }
.sidebar-cta .btn { border-color: rgba(255,255,255,0.3); }
.sidebar-cta .btn-primary { background: var(--white); color: var(--dark); border-color: var(--white); }
.sidebar-cta .btn-primary:hover { background: transparent; color: var(--white); }

.sidebar-img { border-radius: var(--radius); width: 100%; }

/* ============ VISION MISSION ============ */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.vm-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.vm-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.vm-icon { font-size: 40px; color: var(--primary); margin-bottom: 15px; }
.vm-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.vm-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.contact-info-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.contact-info-icon { font-size: 30px; color: var(--primary); margin-bottom: 12px; }
.contact-info-card h3 { font-size: 14px; color: var(--dark); font-weight: 600; margin-bottom: 8px; }
.contact-info-card a, .contact-info-card p { color: var(--text-muted); font-size: 13px; }

.contact-form-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-form-wrapper h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form .form-group { margin-bottom: 15px; }
.contact-form label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }

.map-section { border-radius: var(--radius); overflow: hidden; }

/* ============ QUERY PAGE ============ */
.query-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.query-icon { font-size: 50px; color: var(--primary); margin-bottom: 20px; }
.query-box h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.query-box > p { color: var(--text-muted); margin-bottom: 30px; }

.query-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.query-input-group input {
    flex: 1;
    padding: 14px 18px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 16px;
    outline: none;
    font-family: var(--font);
}
.query-input-group input:focus { border-color: var(--primary); }

.query-result {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}
.query-result-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.query-result-header i { font-size: 24px; color: var(--success); }
.query-result-header h3 { font-size: 18px; color: var(--dark); }

.query-not-found .query-result-header i { color: var(--danger); }
.query-not-found p { color: var(--text-muted); }

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.result-row span { color: var(--text-muted); }
.result-row strong { color: var(--dark); }

.status-pending { color: var(--warning) !important; }
.status-confirmed { color: var(--success) !important; }
.status-completed { color: var(--info) !important; }
.status-cancelled { color: var(--danger) !important; }

/* ============ 404 PAGE ============ */
.error-page { text-align: center; padding: 100px 0; }
.error-content .error-icon { font-size: 80px; color: var(--primary); margin-bottom: 20px; }
.error-content h1 { font-size: 120px; font-weight: 900; color: var(--primary); line-height: 1; }
.error-content h2 { font-size: 28px; color: var(--dark); margin-bottom: 15px; }
.error-content p { color: var(--text-muted); margin-bottom: 30px; }

/* ============ ALERTS ============ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: rgba(37,211,102,0.1); color: #166534; border: 1px solid rgba(37,211,102,0.3); }
.alert-error { background: rgba(239,68,68,0.1); color: #991b1b; border: 1px solid rgba(239,68,68,0.3); }

/* ============ FOOTER ============ */
.site-footer { background: var(--light); border-top: 3px solid var(--primary); }

.footer-top { padding: 60px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about { color: var(--primary); font-weight: 600; font-size: 16px; margin-bottom: 15px; }
.footer-social-label { color: var(--primary); font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.footer-desc { color: var(--text-muted); font-size: 13px; line-height: 1.8; margin-bottom: 20px; }

.footer-vehicles { display: grid; gap: 10px; }
.footer-vehicle-item {
    background: var(--white);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.footer-vehicle-item h4 { font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.footer-vehicle-item h4 i { color: var(--primary); margin-right: 6px; }
.footer-vehicle-item p { color: var(--text-muted); font-size: 12px; line-height: 1.5; }

.footer-col h3 {
    font-size: 18px; font-weight: 700; color: var(--primary);
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 5px; }
.footer-links li a {
    color: var(--text-muted); font-size: 14px;
    display: flex; align-items: center; gap: 6px;
    padding: 5px 0;
    transition: var(--transition);
}
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }
.footer-links li a i { color: var(--primary); font-size: 12px; }

.footer-contact { list-style: none; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted); font-size: 14px;
}
.footer-contact li i { color: var(--primary); margin-top: 4px; font-size: 16px; }
.footer-contact li a { color: var(--text-muted); }
.footer-contact li a:hover { color: var(--primary); }

.footer-social { margin-top: 20px; }
.footer-social p { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.social-icons a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

/* Footer Trust Badges */
.footer-trust {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}
.footer-trust p {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.trust-badge i { font-size: 18px; color: var(--primary); }
.trust-badge:hover { border-color: var(--primary); color: var(--primary); }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============ FLOATING BUTTONS ============ */
.whatsapp-btn {
    position: fixed;
    bottom: 90px; right: 25px;
    width: 56px; height: 56px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); color: var(--white); }

.phone-float-btn {
    position: fixed;
    bottom: 155px; right: 25px;
    width: 56px; height: 56px;
    background: var(--info);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(59,130,246,0.5);
    transition: var(--transition);
}
.phone-float-btn:hover { transform: scale(1.1); color: var(--white); }

.scroll-top {
    position: fixed;
    bottom: 25px; right: 25px;
    width: 45px; height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center; justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============ COOKIE CONSENT ============ */
.cookie-consent {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: var(--dark);
    border-top: 2px solid var(--primary);
    padding: 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}
.cookie-consent.show { transform: translateY(0); }

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.cookie-icon { font-size: 30px; color: var(--primary); }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text p { color: rgba(255,255,255,0.85); font-size: 14px; }

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    background: var(--dark);
    color: rgba(255,255,255,0.9);
}
.cookie-btn.cookie-accept { background: var(--primary); color: var(--white); border-color: var(--primary); }
.cookie-btn.cookie-reject { background: transparent; color: rgba(255,255,255,0.7); }
.cookie-btn.cookie-customize { background: transparent; color: var(--primary); border-color: var(--primary); }
.cookie-btn:hover { transform: translateY(-1px); }

.cookie-settings {
    max-width: 1200px;
    margin: 15px auto 0;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.cookie-setting-item label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.cookie-setting-item span { color: var(--text-muted); font-size: 12px; }

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 65px; left: 0; width: 100%;
        background: var(--white);
        border-top: 3px solid var(--primary);
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-menu.active > li > a { padding: 12px 16px; border-bottom: 1px solid var(--border); }
    .mobile-toggle { display: flex; }
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light);
        min-width: auto;
        display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .reservation-fields { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: repeat(2, 1fr); }
    .vip-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { justify-content: center; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .hero-section { height: 70vh; min-height: 450px; }
    .hero-content { height: 70vh; min-height: 450px; }
    .hero-title { font-size: 28px; }
    .section-padding { padding: 50px 0; }
    
    .services-grid { grid-template-columns: 1fr; }
    .vehicles-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .booking-card { min-width: 200px; max-width: 200px; }
    .booking-slider-prev, .booking-slider-next { width: 32px; height: 32px; font-size: 14px; }
    .footer-grid { grid-template-columns: 1fr; }
    .vision-mission-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .query-input-group { flex-direction: column; }
    .cta-content h2 { font-size: 24px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .page-banner { height: 220px; }
    .reservation-bar-inner { flex-direction: column; }
    .reservation-bar-title { width: 100%; }
    .reservation-fields { grid-template-columns: 1fr; }
    .why-us-section::before, .why-us-section::after { display: none; }
    .currency-switcher { justify-content: center; }
    .booking-grid { grid-template-columns: repeat(2, 1fr); }
    .vip-gallery-grid { grid-template-columns: 1fr 1fr; }
    .vip-gallery-item { height: 200px; }
    .trust-grid { justify-content: center; gap: 15px; }
    .trust-item { min-width: 140px; }
}

@media (max-width: 480px) {
    .booking-grid { grid-template-columns: 1fr; }
    .vehicles-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-section { height: 60vh; }
    .hero-content { height: 60vh; }
    .trust-badges img { height: 30px; }
    .vip-gallery-grid { grid-template-columns: 1fr; }
    .vip-gallery-item { height: 220px; }
    .trust-grid { flex-direction: column; align-items: center; text-align: center; }
    .trust-item { flex-direction: column; text-align: center; }
    .trust-text { align-items: center; }
}

/* RTL Support */
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="rtl"] .nav-menu { flex-direction: row-reverse; }
[dir="rtl"] .dropdown { left: auto; right: 0; }
[dir="rtl"] .footer-links li a i { transform: rotate(180deg); }
[dir="rtl"] .sidebar-menu li a i { transform: rotate(180deg); }
[dir="rtl"] .advantage-list li { flex-direction: row-reverse; }

/* AdSense Uyumlu Alanlar */
.adsense-slot { margin: 20px 0; text-align: center; min-height: 90px; }
