
/* ============================================
   ARS Tour - VIP Transfer Website
   Main Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a84c;
    --gold-dark: #b08d3a;
    --gold-light: #d4b85e;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --dark-3: #0f3460;
    --text: #e0e0e0;
    --text-muted: #8892b0;
    --white: #ffffff;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--gold-light);
}

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

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

/* ============================================
   Top Bar
   ============================================ */
.topbar {
    background: rgba(0,0,0,0.3);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-item {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item:hover {
    color: var(--gold);
}

.lang-switcher {
    display: flex;
    gap: 4px;
}

.lang-btn {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.social-links-top a {
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
}

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

/* ============================================
   Navbar
   ============================================ */
.navbar {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.brand-highlight {
    color: var(--gold);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: var(--text);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.nav-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-left: 10px;
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-default {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 100%);
}

.slide-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Hero Quick Form */
.hero-form-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 40px;
}

.hero-form {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-form h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: end;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238892b0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

select.form-control option {
    background: var(--dark-2);
    color: var(--white);
}

.btn-calculate {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

/* Price Result */
.price-result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
}

.price-result .route-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}

.price-result .route-info .arrow {
    color: var(--gold);
}

.price-vehicles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.price-vehicle-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.price-vehicle-card:hover {
    border-color: var(--gold);
}

.price-vehicle-card.unavailable {
    opacity: 0.5;
    pointer-events: none;
}

.price-vehicle-card h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.price-vehicle-card .price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    margin: 8px 0;
}

.price-vehicle-card .price-detail {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   Section Styles
   ============================================ */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

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

/* Why Us */
.why-us {
    padding: 80px 0;
    background: var(--dark-2);
}

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

.feature-card {
    text-align: center;
    padding: 35px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
}

.feature-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Vehicles Section */
.vehicles-section {
    padding: 80px 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.vehicle-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.3);
}

.vehicle-image {
    height: 200px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.vehicle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-3);
    font-size: 48px;
    color: var(--text-muted);
}

.vehicle-info {
    padding: 20px;
}

.vehicle-info h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
}

.vehicle-specs {
    display: flex;
    gap: 20px;
}

.vehicle-specs span {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.vehicle-specs i {
    color: var(--gold);
}

/* Routes Section */
.routes-section {
    padding: 80px 0;
    background: var(--dark-2);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.route-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.route-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.route-from, .route-to {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.route-arrow {
    color: var(--gold);
    font-size: 20px;
    margin: 8px 0;
}

.route-distance {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 8px;
}

/* ============================================
   Reservation Page
   ============================================ */
.reservation-section {
    padding: 60px 0;
}

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

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.step.active {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.step.completed {
    color: var(--success);
    border-color: var(--success);
}

.step span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    background: rgba(255,255,255,0.1);
}

.step.active span {
    background: var(--gold);
    color: var(--dark);
}

.step.completed span {
    background: var(--success);
    color: white;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 25px;
    text-align: center;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Vehicle selection in reservation */
.vehicle-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.vehicle-select-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.vehicle-select-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
}

.vehicle-select-card.selected {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.vehicle-select-card.unavailable {
    opacity: 0.4;
    pointer-events: none;
}

.vehicle-select-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.vehicle-select-card h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.vehicle-select-card .vehicle-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    margin: 8px 0;
}

.vehicle-select-card .vehicle-specs-sm {
    font-size: 12px;
    color: var(--text-muted);
}

.reservation-summary {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.summary-row span:first-child {
    color: var(--text-muted);
}

.summary-row.total {
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    margin-top: 10px;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--gold);
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
    color: var(--dark);
}

.btn-gold.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Success Box */
.success-box {
    text-align: center;
    padding: 60px 30px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius);
}

.success-box i {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 20px;
}

.success-box h2, .success-box h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.success-box .reservation-code {
    font-size: 18px;
    color: var(--gold);
    margin: 15px 0 25px;
}

.alert-errors {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.alert-errors p {
    color: var(--danger);
    font-size: 14px;
    margin-bottom: 5px;
}

.alert-errors p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Tariffs Page
   ============================================ */
.tariffs-section {
    padding: 60px 0;
}

.tariff-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.tariff-note i {
    color: var(--gold);
}

.vehicle-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.vehicle-tab {
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.vehicle-tab.active, .vehicle-tab:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.tariffs-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
}

.tariffs-table {
    width: 100%;
    border-collapse: collapse;
}

.tariffs-table thead {
    background: rgba(201, 168, 76, 0.1);
}

.tariffs-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

.tariffs-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.tariffs-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.price-cell strong {
    color: var(--gold);
}

.no-price {
    color: var(--text-muted);
}

.btn-reserve-sm {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-reserve-sm:hover {
    background: var(--gold);
    color: var(--dark);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 16px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 60px 0;
}

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

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.contact-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-card h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-card a, .contact-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-form-wrapper h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 25px;
}

/* ============================================
   Page Content
   ============================================ */
.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 15px;
}

.content-wrapper h2, .content-wrapper h3 {
    color: var(--white);
    margin: 25px 0 15px;
}

.content-wrapper p {
    margin-bottom: 15px;
    color: var(--text);
}

.content-wrapper ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-wrapper li {
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.7;
}

.content-wrapper li strong {
    color: var(--gold);
}

/* About Page */
.about-page h2 {
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 20px;
}

.about-page h3 {
    color: var(--white);
    font-size: 20px;
    margin: 30px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* FAQ Page */
.faq-page {
    max-width: 800px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    margin-bottom: 15px;
    padding: 25px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.faq-item h3 {
    color: var(--gold) !important;
    font-size: 17px;
    margin: 0 0 10px 0 !important;
    padding: 0;
    border: none;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-2);
    padding: 60px 0 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

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

.footer-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand span {
    color: var(--gold);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.footer-col i {
    color: var(--gold);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* ============================================
   Floating Buttons
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn {
    background: #25d366;
}

.phone-btn {
    background: var(--gold);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        gap: 5px;
    }

    .topbar-left, .topbar-right {
        gap: 10px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-2);
        flex-direction: column;
        padding: 15px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        gap: 5px;
    }

    .navbar-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-btn {
        margin: 10px 0 0;
        text-align: center;
        width: 100%;
        display: block;
    }

    .hero-slider {
        height: 280px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

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

    .hero-form-wrapper {
        margin-top: -50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .routes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .step-indicator {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    /* Responsive table */
    .tariffs-table thead {
        display: none;
    }

    .tariffs-table tr {
        display: block;
        margin-bottom: 15px;
        background: rgba(255,255,255,0.02);
        border-radius: 8px;
        overflow: hidden;
    }

    .tariffs-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
    }

    .tariffs-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        font-size: 12px;
    }

    .vehicle-select-grid {
        grid-template-columns: 1fr;
    }

    .price-vehicles {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-content h2 {
        font-size: 22px;
    }

    .slide-content {
        padding: 15px 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }
}
