/* ==========================================================================
   YGZ Transfer — B2C Booking Premium Styles
   ========================================================================== */

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.3);
    --success: #10b981;
    --success-hover: #059669;
    --danger: #dc2626;
    --whatsapp: #25d366;
    --telegram: #0088cc;
    --bg: #0a0e1a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(245, 158, 11, 0.5);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 8px;
    --shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --primary: #ffffff;
    --primary-light: #f8fafc;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.15);
    --bg: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-glass: rgba(0, 0, 0, 0.03);
    --text: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;
    --border: rgba(0, 0, 0, 0.08);
    --border-focus: rgba(245, 158, 11, 0.4);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
}

* { 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;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ===== Header Wrapper & Top Bar ===== */
.header-wrapper {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .header-wrapper {
    background: rgba(248, 250, 252, 0.85);
}
.top-bar {
    background: rgba(5, 8, 15, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 24px; font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
}
[data-theme="light"] .top-bar {
    background: #f1f5f9; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.top-bar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.top-bar-socials {
    display: flex; gap: 14px; align-items: center;
}
.top-bar-socials a {
    color: var(--text-muted); text-decoration: none;
    transition: color 0.3s, transform 0.2s; font-size: 0.88rem;
}
.top-bar-socials a:hover {
    color: var(--accent); transform: scale(1.15);
}

/* ===== Header ===== */
.header {
    position: relative;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0 24px;
}
/* Standalone header (when no header-wrapper parent) */
:not(.header-wrapper) > .header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
/* Spread layout: logo left, links center, actions right */
.header-spread {
    display: flex; align-items: center; justify-content: space-between;
}
.header-spread .logo { flex: 0 0 auto; }
.header-spread .header-links { flex: 1 1 auto; justify-content: center; }
.header-spread .header-actions { flex: 0 0 auto; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.logo-accent { color: var(--accent); }
.logo-img { max-height: 40px; width: auto; object-fit: contain; display: block; }

.header-actions {
    display: flex; align-items: center; gap: 14px;
}
.header-socials {
    display: flex; align-items: center; gap: 8px;
}
.social-icon-link {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg-glass); border: 1px solid var(--border);
    text-decoration: none; font-size: 15px;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.social-icon-link:hover {
    transform: scale(1.15); background: var(--border); border-color: var(--accent);
}

.header-links {
    display: flex; align-items: center; gap: 32px;
}
.header-links a {
    color: var(--text); text-decoration: none; font-weight: 600;
    font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
    position: relative; padding-bottom: 4px; transition: color 0.25s ease;
}
.header-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: width 0.3s ease;
}
.header-links a:hover { color: var(--accent); }
.header-links a:hover::after { width: 100%; }
.lang-switcher { position: relative; }
.lang-select {
    background: var(--bg-glass); border: 1px solid var(--border);
    color: var(--text); padding: 6px 12px; border-radius: var(--radius-xs);
    font-family: var(--font); font-size: 14px; font-weight: 500;
    outline: none; cursor: pointer; transition: var(--transition);
}
.lang-select option {
    background: var(--primary);
    color: var(--text);
}
.lang-select:hover { border-color: var(--accent); }
.theme-toggle {
    background: var(--bg-glass); border: 1px solid var(--border);
    color: var(--text); padding: 6px; border-radius: 50%;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); overflow: hidden; position: relative;
}
.theme-toggle:hover { background: var(--border); }
.theme-icon { position: absolute; transition: var(--transition); font-size: 16px; }
.dark-icon { opacity: 0; transform: translateY(20px); }
[data-theme="light"] .light-icon { opacity: 0; transform: translateY(-20px); }
[data-theme="light"] .dark-icon { opacity: 1; transform: translateY(0); }

.nav-phone {
    color: var(--accent); text-decoration: none; font-weight: 600; font-size: 14px;
    padding: 8px 16px; border: 1px solid var(--accent); border-radius: 99px;
    transition: var(--transition);
}
.nav-phone:hover { background: var(--accent); color: var(--primary); }

/* ===== Hero ===== */
.hero {
    position: relative; padding: 160px 24px 120px;
    background-image: url('/static/images/arkaplan.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: visible; text-align: center;
}

/* ===== Hero Compact Search Bar ===== */
.hero-search-bar {
    position: relative; bottom: auto; left: 0; right: 0;
    margin: 40px auto 0; max-width: 960px;
    z-index: 20;
}
.hsb-inner {
    display: flex; align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}
.hsb-field {
    flex: 1 1 0; padding: 14px 18px;
    display: flex; flex-direction: column; justify-content: center;
    min-width: 0;
}
.hsb-field-sm { flex: 0 0 130px; }
.hsb-label {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px;
}
.hsb-input {
    background: transparent; border: none; outline: none;
    color: var(--text); font-family: var(--font);
    font-size: 0.88rem; font-weight: 500;
    padding: 0; width: 100%; cursor: pointer;
}
.hsb-input::placeholder { color: var(--text-muted); opacity: 0.7; }
.hsb-input option { background: var(--bg-card); color: var(--text); }
.hsb-divider {
    width: 1px; background: var(--border); margin: 10px 0;
}
.hsb-search-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 28px; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #1a1a2e; font-weight: 700; font-size: 0.88rem;
    font-family: var(--font); white-space: nowrap;
    transition: filter 0.2s, transform 0.2s;
}
.hsb-search-btn:hover:not(:disabled) {
    filter: brightness(1.1); transform: scale(1.02);
}
.hsb-search-btn:disabled {
    opacity: 0.5; cursor: not-allowed;
}
@media (max-width: 768px) {
    .hsb-inner { flex-direction: column; border-radius: 12px; }
    .hsb-field { padding: 12px 16px; }
    .hsb-field-sm { flex: 1 1 auto; }
    .hsb-divider { width: auto; height: 1px; margin: 0 16px; }
    .hsb-search-btn { justify-content: center; padding: 14px; }
    .header-spread .header-links { display: none; }
}
/* Dark overlay over the photo so text stays readable */
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(5, 10, 20, 0.58);
    z-index: 0;
}
/* Subtle animated colour accent on top of overlay */
.hero::after {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
    z-index: 0;
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(1deg); }
    66% { transform: translate(-10px, 10px) rotate(-1deg); }
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 700px; margin: 0 auto;
    /* Frosted glass backdrop behind the text */
    background: rgba(5, 10, 20, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
}
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; color: #fff; }
.hero-accent { color: var(--accent); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 24px; }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.badge {
    padding: 8px 16px; border-radius: 99px; font-size: 13px; font-weight: 500;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px); color: #fff;
}

/* ===== Booking Section ===== */
.booking-section { padding: 60px 24px 80px; margin-top: -30px; position: relative; z-index: 2; }
.booking-container {
    max-width: 1360px; margin: 0 auto;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    color: var(--text);
    box-shadow: var(--shadow);
}

/* ===== Progress Bar ===== */
.progress-bar { display: none; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.step-circle {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    background: var(--bg-glass); border: 2px solid var(--text-dim); color: var(--text-dim);
    transition: var(--transition);
}
.progress-step.active .step-circle { background: var(--accent); border-color: var(--accent); color: var(--primary); box-shadow: 0 0 20px var(--accent-glow); }
.progress-step.completed .step-circle { background: var(--success); border-color: var(--success); color: white; }
.step-label { font-size: 12px; font-weight: 500; color: var(--text-dim); white-space: nowrap; transition: var(--transition); }
.progress-step.active .step-label, .progress-step.completed .step-label { color: var(--text); }
.progress-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; position: relative; margin-bottom: 20px; }
.progress-line-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: var(--accent); transition: width 0.5s ease; }

/* ===== Form Steps ===== */
.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.step-title { font-size: 1.7rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-subtitle { font-size: 15px; color: var(--text-muted); }
.section-subtitle { font-size: 1.1rem; font-weight: 600; margin: 28px 0 16px; color: var(--accent); }

/* ===== Form Elements ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label { font-size: 14px; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.form-input {
    padding: 14px 16px; border-radius: var(--radius-xs);
    background: var(--primary-light); border: 1px solid var(--border);
    color: var(--text); font-family: var(--font); font-size: 15px;
    transition: var(--transition); outline: none; width: 100%;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); background: var(--primary-light); }
.form-input option { background: var(--primary-light); color: var(--text); }
textarea.form-input { resize: vertical; }

/* ===== Direction Toggle ===== */
.direction-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.direction-option {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px 16px; border-radius: var(--radius-sm);
    background: var(--bg-glass); border: 1px solid var(--border);
    cursor: pointer; transition: var(--transition); text-align: center;
}
.direction-option input { display: none; }
.direction-option.active { border-color: var(--accent); background: var(--accent-glow); }
.direction-option:hover { border-color: var(--accent); }
.direction-icon { font-size: 28px; }
.direction-text { font-size: 14px; font-weight: 600; color: var(--accent); }

.compact-toggle {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    width: fit-content;
    min-width: 360px;
}

.compact-toggle .direction-option {
    padding: 12px 18px;
    border-radius: 999px;
}

.search-intake {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.search-intake-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.route-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    gap: 14px;
    align-items: end;
}

.route-field {
    gap: 8px;
}

.route-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.route-label span {
    color: #f97316;
    font-weight: 600;
}

.route-input {
    min-height: 52px;
    font-size: 16px;
}

.route-swap {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #f97316;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 8px;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

.inline-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.compact-field .form-input {
    min-height: 48px;
}

.return-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    align-self: end;
    color: var(--text-muted);
    font-weight: 500;
}

.return-toggle input {
    display: none;
}

.return-slider {
    width: 52px;
    height: 30px;
    border-radius: 999px;
    background: #e5e7eb;
    border: 1px solid #fb923c;
    position: relative;
}

.return-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #a3a3a3;
}

.return-toggle input:checked + .return-slider {
    background: #fdba74;
}

.return-toggle input:checked + .return-slider::after {
    left: 27px;
    background: #ea580c;
}

.return-fields {
    border: 1px solid var(--border);
    background: var(--bg-glass);
    border-radius: 12px;
    padding: 16px;
}

.return-fields h4 {
    margin-bottom: 12px;
    color: var(--accent);
}

.passenger-fields {
    display: grid;
    gap: 12px;
}

.passenger-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    background: var(--bg-glass);
}

.passenger-card h4 {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text);
}

.booking-map-hidden {
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.zone-warning {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--danger);
    font-size: 14px;
}

.zone-warning a {
    color: var(--danger);
    font-weight: 700;
}

.search-action {
    display: flex;
    justify-content: center;
}

.btn-search {
    min-width: 160px;
    justify-content: center;
    border-radius: 999px;
    font-size: 18px;
    padding: 15px 34px;
}

/* ===== Vehicle Cards ===== */
.vehicle-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.vehicle-card {
    padding: 20px; border-radius: var(--radius-sm);
    background: var(--primary-light); border: 2px solid var(--border);
    cursor: pointer; transition: var(--transition); text-align: center;
}
.vehicle-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.vehicle-card.selected { border-color: var(--accent); background: rgba(245, 158, 11, 0.1); box-shadow: 0 0 25px var(--accent-glow); }
.vehicle-icon { font-size: 36px; margin-bottom: 8px; }
.vehicle-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.vehicle-capacity { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.vehicle-price { font-size: 24px; font-weight: 800; color: var(--accent); }
.vehicle-currency { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.loading-text { color: #6b7280; text-align: center; padding: 20px; grid-column: 1/-1; }

/* ===== Buttons ===== */
.step-actions { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-xs);
    font-family: var(--font); font-size: 15px; font-weight: 600;
    border: none; cursor: pointer; transition: var(--transition);
    text-decoration: none; white-space: nowrap;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 25px var(--accent-glow); }
.btn-secondary { background: #f8fafc; color: #111827; border: 1px solid #dbe2ea; }
.btn-secondary:hover { background: #eef2f7; }
.btn-success { background: var(--success); color: white; font-size: 16px; padding: 16px 32px; }
.btn-success:hover:not(:disabled) { background: var(--success-hover); transform: translateY(-1px); }
.btn-arrow { font-size: 18px; }

/* ===== Hotel Info ===== */
.selected-hotel-info { margin-top: 16px; }
.info-card {
    display: flex; align-items: center; gap: 12px;
    padding: 16px; border-radius: var(--radius-xs);
    background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
}
.info-icon { font-size: 24px; }
.info-zone { display: block; font-size: 13px; color: var(--text-muted); }

/* ===== Confirm Page ===== */
.confirm-section { padding: 120px 24px 80px; text-align: center; }
.confirm-container { max-width: 600px; margin: 0 auto; }
.confirm-icon { font-size: 64px; margin-bottom: 16px; animation: bounceIn 0.6s ease; }
@keyframes bounceIn { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
.confirm-title { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.confirm-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; }
.confirm-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px; text-align: left;
    margin-bottom: 32px; backdrop-filter: blur(20px);
}
.confirm-card h3 { margin-bottom: 16px; font-size: 1.1rem; }
.detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--text-muted); font-size: 14px; }
.detail-value { font-weight: 600; font-size: 14px; }
.price-row { margin-top: 8px; padding-top: 16px; border-top: 2px solid var(--accent); border-bottom: none; }
.price-value { color: var(--accent); font-size: 20px; font-weight: 800; }

/* ===== CTA Buttons ===== */
.confirm-cta { margin-bottom: 24px; }
.confirm-cta h3 { font-size: 1.1rem; margin-bottom: 8px; }
.confirm-cta p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.btn-whatsapp { background: var(--whatsapp); color: white; font-size: 16px; padding: 16px 32px; }
.btn-whatsapp:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
.btn-telegram { background: var(--telegram); color: white; font-size: 16px; padding: 16px 32px; }
.btn-telegram:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3); }
.btn-icon { font-size: 20px; }
.cta-note { font-size: 13px; color: var(--text-dim); }
.cta-note a { color: var(--accent); }
.back-link { margin-top: 16px; }

/* ===== Footer ===== */
.footer { padding: 40px 24px; background: var(--primary); border-top: 1px solid var(--border); text-align: center; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer p { font-size: 14px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

/* ===== Informational Sections ===== */
.info-section { padding: 80px 24px; position: relative; }
.info-container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.2rem; font-weight: 800; text-align: center; margin-bottom: 48px; color: var(--text); }
.text-center { text-align: center; }

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.glass-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent-glow); }

/* About & Mission */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.info-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.info-card-icon { font-size: 56px; margin-bottom: 20px; }
.info-card-body { display: flex; flex-direction: column; align-items: center; }
.info-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.info-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* Services */
.services-section { background: var(--bg-glass); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.service-item {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}
.service-item:hover { border-color: var(--accent); transform: translateY(-5px); }
.service-icon { font-size: 56px; margin-bottom: 24px; display: inline-block; padding: 20px; background: var(--bg-glass); border-radius: 50%; border: 1px solid var(--border); }
.service-item h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.service-item p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

/* Contact */
.contact-box { max-width: 800px; margin: 0 auto; text-align: center; padding: 48px 32px; }
.contact-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.contact-box p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; }
.contact-methods { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.contact-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 99px;
    font-weight: 600; font-size: 16px; text-decoration: none;
    transition: var(--transition);
}
.phone-btn { background: var(--primary-light); color: var(--text); border: 1px solid var(--border); }
.phone-btn:hover { background: var(--bg); border-color: var(--accent); }
.wa-btn { background: var(--whatsapp); color: white; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }
.wa-btn:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3); }

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .booking-container { padding: 24px 16px; }
    .form-grid { grid-template-columns: 1fr; }
    .direction-toggle { grid-template-columns: 1fr; }
    .vehicle-cards { grid-template-columns: 1fr; }
    .hero { padding: 110px 16px 60px; }
    .hero-title { font-size: 1.8rem; }
    .cta-buttons { flex-direction: column; }
    .step-actions { flex-direction: column-reverse; }
    .step-actions .btn { width: 100%; justify-content: center; }
    .footer-inner { flex-direction: column; text-align: center; }
    .search-intake-top,
    .route-grid,
    .inline-fields {
        grid-template-columns: 1fr;
        display: grid;
    }
    .compact-toggle {
        min-width: 0;
        width: 100%;
    }
    .route-swap {
        display: none;
    }
    .return-toggle {
        min-height: auto;
    }
    .custom-contact-buttons {
        flex-direction: column;
    }
}

/* ===== Tourist Spot Buttons ===== */
.tourist-spots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.spot-btn {
    padding: 10px 18px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--bg-glass);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.spot-btn:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-2px);
}

.spot-btn.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.spot-btn-none {
    border-style: dashed;
    opacity: 0.85;
}

.spot-btn-none.active {
    opacity: 1;
    border-style: solid;
}

/* ===== Custom Contact Section ===== */
.custom-contact-section {
    margin-top: 20px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    border: 1px solid var(--border);
}

.custom-contact-buttons {
    display: flex;
    gap: 14px;
}

.btn-whatsapp-custom,
.btn-telegram-custom {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-xs);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-whatsapp-custom {
    background: #25d366;
    color: #fff;
}
.btn-whatsapp-custom:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-telegram-custom {
    background: #0088cc;
    color: #fff;
}
.btn-telegram-custom:hover {
    background: #006fa1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

/* ===== Floating Support Widget ===== */
.support-fab {
    position: fixed; bottom: 28px; right: 28px; z-index: 9998;
    display: flex; flex-direction: column-reverse; align-items: flex-end; gap: 12px;
}
.support-fab-toggle {
    width: 56px; height: 56px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff; font-size: 26px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.support-fab-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.support-fab-toggle .fab-icon-close {
    display: none;
}
.support-fab.open .support-fab-toggle .fab-icon-open { display: none; }
.support-fab.open .support-fab-toggle .fab-icon-close { display: block; }

.support-fab-menu {
    display: none; flex-direction: column; gap: 10px; align-items: flex-end;
}
.support-fab.open .support-fab-menu { display: flex; }

.support-fab-item {
    display: flex; align-items: center; gap: 10px; padding: 10px 18px 10px 14px;
    border-radius: 99px; text-decoration: none; font-weight: 600; font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.25s, box-shadow 0.25s;
    animation: fabSlideIn 0.3s ease-out backwards;
}
.support-fab-item:nth-child(1) { animation-delay: 0.05s; }
.support-fab-item:nth-child(2) { animation-delay: 0.12s; }

.support-fab-item:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.support-fab-item.fab-whatsapp {
    background: #25d366; color: #fff;
}
.support-fab-item.fab-telegram {
    background: #0088cc; color: #fff;
}
.support-fab-item .fab-item-icon {
    font-size: 20px; line-height: 1;
}

@keyframes fabSlideIn {
    from { opacity: 0; transform: translateY(16px) scale(0.85); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Pulse animation on the FAB */
.support-fab-toggle::after {
    content: '';
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: fabPulse 2s ease-out infinite;
}
@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}
