:root {
    --primary: #0f1b2d;
    --primary-light: #1a2d4a;
    --accent: #c9a227;
    --accent-hover: #b8921f;
    --accent-light: #f5e6b8;
    --text: #2d3436;
    --text-light: #636e72;
    --text-muted: #b2bec3;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-dark: #0f1b2d;
    --border: #e9ecef;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --nav-height: 75px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}
.section-alt .section-title { color: var(--primary); }
.section-dark .section-title { color: #fff; }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    text-align: center;
    justify-content: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,162,39,0.35); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar i { margin-right: 5px; }
.lang-switch { display: flex; gap: 4px; }
.lang-switch a {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}
.lang-switch a.active { background: var(--accent); color: #fff; }

/* ====== NAVIGATION ====== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15,27,45,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: var(--nav-height);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.nav-logo img { height: 55px; width: auto; }
.nav-logo span { color: var(--accent); }
.footer-logo-img { height: 60px; width: auto; }
@media (max-width: 768px) {
    .nav-logo img { height: 40px; }
    .footer-logo-img { height: 50px; }
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links .btn {
    margin-left: 12px;
    padding: 10px 24px;
}

/* ====== DROPDOWN MENU ====== */
.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.7);
    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;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2d4a 50%, #0a1525 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(201,162,39,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,224C672,213,768,171,864,149.3C960,128,1056,128,1152,149.3C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') bottom no-repeat;
    background-size: cover;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
}
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ====== HERO BOOKING FORM ====== */
.hero-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow-lg);
}
.hero-form h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg);
    color: var(--text);
    -webkit-appearance: none;
    appearance: none;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,162,39,0.15); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { 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='%23636e72' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 35px; }
.price-display {
    text-align: center;
    padding: 12px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    margin: 10px 0;
}
.price-display .price-amount { font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.price-display .price-label { font-size: 0.9rem; color: var(--text-light); }

.dropdown-wrap { position: relative; }
.dropdown-wrap .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text);
}
.dropdown-wrap .dropdown-trigger:hover { border-color: var(--accent); }
.dropdown-wrap .dropdown-trigger i { color: var(--text-muted); font-size: 0.8rem; transition: var(--transition); }
.dropdown-placeholder { color: var(--text-muted); }
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    border: 2px solid var(--accent);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: none;
    margin-top: -2px;
}
.dropdown-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
}
.dropdown-search i { color: var(--text-muted); font-size: 0.85rem; }
.dropdown-search input {
    border: none;
    outline: none;
    background: none;
    font-family: var(--font);
    font-size: 0.9rem;
    width: 100%;
    color: var(--text);
}
.dropdown-items {
    max-height: 240px;
    overflow-y: auto;
}
.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}
.dropdown-item:hover { background: var(--accent-light); color: var(--primary); }
.dropdown-item:not(:last-child) { border-bottom: 1px solid var(--border); }
.dd-item-price { font-weight: 700; color: var(--accent); font-size: 0.85rem; }

.booking-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}
.booking-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.booking-step span {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}
.booking-step.active { color: var(--accent); }
.booking-step.active span { background: var(--accent); color: #fff; }

.booking-summary {
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}
.summary-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.summary-label { color: var(--text-light); }
.summary-value { font-weight: 600; color: var(--text); }
.summary-total .summary-label { font-size: 1rem; font-weight: 600; color: var(--text); }
.summary-total .summary-value { font-size: 1.3rem; color: var(--accent); font-weight: 700; }



/* ====== VEHICLES ====== */
.vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.vehicle-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.vehicle-card.featured { border-color: var(--accent); }
.vehicle-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.vehicle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
}
.vehicle-icon img { width: 45px; height: 45px; object-fit: contain; }
.vehicle-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.vehicle-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 5px; }
.vehicle-card .price { font-size: 1.5rem; font-weight: 700; color: var(--accent); margin: 15px 0; }
.vehicle-card .price small { font-size: 0.8rem; color: var(--text-light); }

/* ====== DESTINATIONS ====== */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.destination-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.destination-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.destination-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
}
.destination-card h4 { font-size: 1rem; margin-bottom: 5px; }
.destination-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; }
.destination-card .route-price { font-weight: 700; color: var(--accent); font-size: 1.1rem; }

/* ====== ABOUT / CONTENT ====== */
.content-page { padding: 60px 0; }
.content-page h1 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; }
.content-page p { margin-bottom: 15px; color: var(--text-light); line-height: 1.8; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 5rem;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; }
.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-detail .icon {
    width: 45px;
    height: 45px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.9rem; margin-bottom: 3px; }
.contact-detail p { font-size: 0.9rem; color: var(--text-light); }
.contact-form .form-group { margin-bottom: 15px; }
.contact-form textarea.form-control { min-height: 120px; resize: vertical; }

/* ====== FOOTER ====== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}
.footer-brand h3 span { color: var(--accent); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-links a {
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.footer-contact i { width: 16px; color: var(--accent); }
.footer-legal {
    margin-top: 30px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-legal a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    white-space: nowrap;
}
.footer-legal a:hover { color: var(--accent); }
.footer-legal a i { width: 16px; color: var(--accent); }
.footer-seal {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.footer-seal img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}
.footer-bottom {
    margin-top: 20px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
}
.footer-seals {
    display: flex;
    align-items: center;
    gap: 0;
}

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

.support-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: supportPulse 2s infinite;
}
.support-btn:hover { transform: scale(1.1); color: #fff; }
@keyframes supportPulse {
    0% { box-shadow: 0 4px 15px rgba(212,175,55,0.4); }
    50% { box-shadow: 0 4px 25px rgba(212,175,55,0.6); }
    100% { box-shadow: 0 4px 15px rgba(212,175,55,0.4); }
}

/* ====== 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: 90px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201,162,39,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ====== BREADCRUMB ====== */
.breadcrumb {
    background: var(--bg-alt);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb ul { display: flex; gap: 8px; font-size: 0.85rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .active { color: var(--accent); font-weight: 600; }

/* ====== NOTIFICATION ====== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ====== LOADING ====== */
.loading { text-align: center; padding: 40px; }
.loading i { font-size: 2rem; color: var(--accent); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2.5rem; text-align: center; }
    .hero-text p { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .destinations-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .top-bar .container { flex-direction: column; gap: 5px; }
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(15,27,45,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-links a { width: 100%; padding: 12px 18px; }
    .nav-links .btn { width: 100%; margin-left: 0; margin-top: 5px; }
    .hamburger { display: flex; }
    .section { padding: 50px 0; }
    .section-title { font-size: 2rem; }
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero-text h1 { font-size: 2rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .form-row { grid-template-columns: 1fr; }
    .vehicles-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-legal { gap: 15px; flex-direction: column; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .back-to-top { bottom: 80px; right: 15px; width: 40px; height: 40px; }
    .whatsapp-btn, .support-btn { bottom: 20px; width: 50px; height: 50px; font-size: 1.3rem; }
    .whatsapp-btn { right: 77px; }
    .support-btn { right: 15px; }
}
@media (max-width: 480px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 1.7rem; }
}
