:root {
    --primary: #111111;
    --primary-light: #1f2937;
    --accent: #00e5ff;
    --accent-hover: #33eaff;
    --accent-gradient: linear-gradient(135deg, #00e5ff, #3b82f6);
    --accent-glow: 0 0 20px rgba(0, 229, 255, 0.15);
    --bg: #050816;
    --bg-alt: #0a0f2a;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-glass: rgba(5, 8, 22, 0.85);
    --glass-border: rgba(0, 229, 255, 0.08);
    --glass-border-hover: rgba(0, 229, 255, 0.2);
    --text: #f8fafc;
    --text-light: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(0, 229, 255, 0.08);
    --border-light: rgba(0, 229, 255, 0.12);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.08);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --font: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: rgba(0, 229, 255, 0.2); color: #fff; }

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

/* ===== TOP BAR ===== */
.top-bar {
    background: rgba(5, 8, 22, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 0.82rem;
    position: relative;
    z-index: 1001;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: var(--text-light);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar a:hover { color: var(--accent); }
.lang-switch a {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin: 0 2px;
    border: 1px solid transparent;
}
.lang-switch a.active {
    color: var(--accent);
    border-color: rgba(0, 229, 255, 0.2);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 22, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(5, 8, 22, 0.95);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-display);
}
.nav-logo i { color: var(--accent); font-size: 1.4rem; }
.nav-logo span { color: var(--accent); }
.nav-logo-img { max-height: 38px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}
.nav-links .btn { margin-left: 6px; }

/* ====== MEGA MENU ====== */
.mega-menu-item {
    position: relative;
    list-style: none;
}
.mega-menu-trigger {
    display: flex !important;
    align-items: center;
    gap: 6px;
}
.mega-menu-trigger .fa-chevron-down {
    font-size: 0.6rem;
    transition: transform 0.2s;
}
.mega-menu-item:hover .mega-menu-trigger .fa-chevron-down {
    transform: rotate(180deg);
}
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.mega-menu-item:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mega-menu-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    color: var(--text) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: background 0.2s;
}
.mega-menu-link:hover {
    background: var(--accent-glass) !important;
    color: var(--accent) !important;
}
.mega-menu-link i {
    color: var(--accent);
    font-size: 0.7rem;
    flex-shrink: 0;
}
.mega-menu-link small {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .mega-menu-item { width: 100%; }
    .mega-menu-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        background: transparent;
        display: none;
    }
    .mega-menu-item:hover .mega-menu-dropdown { display: block; }
    .mega-menu-link { padding: 8px 14px !important; font-size: 0.82rem !important; }
}

/* ====== DROPDOWN MENU (Diğer) ====== */
.dropdown-menu-item {
    position: relative;
    list-style: none;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    z-index: 9999;
    white-space: nowrap;
}
.dropdown-menu-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu a {
    display: block;
    padding: 6px 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    border-radius: 0;
    background: none;
    transition: color 0.2s;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--accent);
    background: none;
}
@media (max-width: 768px) {
    .dropdown-menu-item { width: 100%; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 0 0 4px 16px;
    }
    .dropdown-menu-item.open .dropdown-menu { display: block; }
    .dropdown-menu a { padding: 4px 0; font-size: 0.82rem; }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.2px;
}
.btn-sm { padding: 8px 16px; font-size: 0.78rem; }
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }
.btn-primary {
    background: var(--accent-gradient);
    color: #050816;
}
.btn-primary:hover {
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.25);
    transform: translateY(-2px);
    color: #050816;
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--accent-glow);
    transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(-30px, 30px) scale(1.2); opacity: 1; }
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.hero-text h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 540px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
    display: flex;
    gap: 35px;
}
.hero-stat h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat p {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ===== HERO FORM ===== */
.hero-form {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}
.hero-form:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.06);
}
.hero-form h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-form h3 i { color: var(--accent); }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 6px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.form-control {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.85rem;
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.1);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%2364748b' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-dark {
    background: linear-gradient(135deg, #050816 0%, #0a0f2a 100%);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-title span { color: var(--accent); }
.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ===== VEHICLES GRID ===== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 10px;
}
.vehicle-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.vehicle-card:hover {
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.06);
}
.vehicle-card.featured {
    border-color: rgba(0, 229, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.04);
}
.vehicle-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
}
.vehicle-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}
.vehicle-icon img { max-height: 60px; }
.vehicle-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.vehicle-card p {
    color: var(--text-light);
    font-size: 0.82rem;
    margin-bottom: 6px;
}
.vehicle-card .price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0;
}
.vehicle-card .price small {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font);
    font-weight: 400;
}

/* ===== DESTINATIONS GRID ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.destination-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
    transition: var(--transition);
}
.destination-card:hover {
    border-color: rgba(0, 229, 255, 0.12);
    transform: translateY(-4px);
}
.destination-card .icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.destination-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.destination-card p {
    font-size: 0.78rem;
    color: var(--text-light);
}
.route-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 10px 0;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover {
    border-color: rgba(0, 229, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.04);
}
.feature-card .icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 14px;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    text-align: center;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.3;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 24px;
}
.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-detail .icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-detail h4 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.contact-detail p { font-size: 0.9rem; color: var(--text); }
.contact-detail a { color: var(--text); }
.contact-detail a:hover { color: var(--accent); }
.contact-form .form-group { margin-bottom: 16px; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumbs a { color: var(--accent); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-hover); }

/* ===== CONTENT PAGE ===== */
.content-page {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}
.content-page h3 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 28px 0 10px;
    font-size: 1.15rem;
}
.content-page p { margin-bottom: 14px; }
.content-page table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.content-page td { padding: 10px 14px; border: 1px solid var(--border); }

/* ===== BOOKING STEPS ===== */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    position: relative;
}
.booking-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: var(--border);
}
.booking-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.booking-step span {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}
.booking-step.active {
    color: var(--accent);
}
.booking-step.active span {
    background: var(--accent-gradient);
    color: #050816;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

/* ===== PRICE DISPLAY ===== */
.price-display {
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
    animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(0, 229, 255, 0); }
    50% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.04); }
}
.price-label { font-size: 0.82rem; color: var(--text-light); margin-bottom: 6px; }
.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

/* ===== BOOKING SUMMARY ===== */
.booking-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-label { font-size: 0.82rem; color: var(--text-light); }
.summary-value { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.summary-total .summary-label,
.summary-total .summary-value {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 700;
}

/* ===== DROPDOWN ===== */
.dropdown-wrap { position: relative; }
.dropdown-wrap .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    min-height: 42px;
}
.dropdown-wrap .dropdown-trigger:hover { border-color: rgba(0, 229, 255, 0.15); }
.dropdown-wrap .dropdown-trigger i { color: var(--text-muted); font-size: 0.7rem; }
.dropdown-placeholder { color: var(--text-muted); font-size: 0.85rem; }
.dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    z-index: 50;
    max-height: 280px;
    overflow: hidden;
}
.dropdown-panel.open { display: block; }
.dropdown-search {
    padding: 8px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropdown-search input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.82rem;
    outline: none;
}
.dropdown-search i { color: var(--text-muted); font-size: 0.8rem; }
.dropdown-items { max-height: 200px; overflow-y: auto; }
.dropdown-item {
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-size: 0.82rem;
}
.dropdown-item:hover { background: rgba(0, 229, 255, 0.04); }
.dd-item-name { color: var(--text); }
.dd-item-price { color: var(--accent); font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
    background: #030712;
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.15), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--accent); }
.footer-logo-img { max-height: 36px; margin-bottom: 12px; }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 0.85rem;
}
.footer-social a:hover {
    background: rgba(0, 229, 255, 0.06);
    border-color: rgba(0, 229, 255, 0.15);
    color: var(--accent);
}
.footer h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    color: var(--text-light);
    font-size: 0.82rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 8px;
}
.footer-contact i { color: var(--accent); width: 14px; }
.footer-contact a { color: var(--text-light); }
.footer-contact a:hover { color: var(--accent); }
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}
.footer-legal a {
    color: var(--text-muted);
    font-size: 0.78rem;
    transition: var(--transition);
}
.footer-legal a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-muted);
}
.footer-seals { display: flex; align-items: center; gap: 12px; }
.footer-seal img { height: 100px; width: 100px; object-fit: contain; opacity: 0.5; transition: var(--transition); }
.footer-seal:hover img { opacity: 0.8; }
.footer-pro {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 600;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 96px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); color: #fff; }
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== SUPPORT MODAL ===== */
.support-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: #050816;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.3);
}
/* ====== SUPPORT MODAL ====== */
.support-modal {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.support-modal.active {
    opacity: 1;
    visibility: visible;
}
.support-modal-content {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 12px;
    max-width: 420px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
}
.support-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
}
.support-modal-close:hover { color: #fff; }
.support-modal-content h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.support-modal-content h3 i { margin-right: 8px; }
.support-modal-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.support-modal-content .form-group { margin-bottom: 14px; }
.support-modal-content .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 14px;
    border-radius: 6px;
    width: 100%;
    font-size: 0.9rem;
    transition: var(--transition);
    box-sizing: border-box;
}
.support-modal-content .form-control:focus {
    border-color: var(--accent);
    outline: none;
    background: rgba(255,255,255,0.08);
}
.support-modal-content .form-control::placeholder { color: rgba(255,255,255,0.3); }
.support-modal-content textarea.form-control { resize: vertical; min-height: 100px; }
.support-modal-content .btn-block { width: 100%; padding: 12px; font-size: 1rem; }
.support-success {
    text-align: center;
    padding: 30px 0;
}
.support-success i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 15px;
}
.support-success p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 84px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== FLASH MESSAGES ===== */
.flash-message {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeSlideIn 0.3s ease;
}
.flash-success {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.1);
    color: var(--accent);
}
.flash-error {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== ANIMATED FLOATING ELEMENTS ===== */
.floating-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    animation: floatParticle 20s infinite linear;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2.4rem; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 16px 20px;
        flex-direction: column;
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 12px 14px; }
    .nav-links .btn { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; }
    .hamburger { display: flex; }
    .hero { min-height: auto; padding: 60px 0; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat h3 { font-size: 1.3rem; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { justify-content: center; }
    .booking-steps::before { width: 60%; }
    .vehicles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .top-bar .container { flex-direction: column; gap: 6px; }
    .top-bar a { margin-right: 10px; font-size: 0.75rem; }
    .hero-text h1 { font-size: 1.5rem; }
    .hero-form { padding: 20px; }
    .booking-step { padding: 8px 12px; font-size: 0.78rem; }
    .booking-step span { width: 36px; height: 36px; font-size: 0.78rem; }
}
