/* 
==================================================
   GOOGLE FONTS
================================================== 
*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* 
==================================================
   VARIABLES & BASE STYLES
================================================== 
*/
:root {
    /* Mediterranean Palette */
    --primary-color: #1B3A5C; /* Deep Aegean Blue */
    --primary-hover: #142d47;
    --primary-light: #2a5a8c;
    --secondary-color: #e8f0f8; /* Soft sky */
    --accent-color: #C9A14A; /* Greek Gold */
    --accent-hover: #b8922e;
    --warm-white: #FDF8F0; /* Marble white */
    --olive: #6B7F3B; /* Olive green */
    --terracotta: #C4704B; /* Warm accent */
    --bg-color: #ffffff;
    --bg-light: #f6f8fb;
    --surface-color: #f9fafb;
    --text-main: #1a1a1a;
    --text-muted: #4b5563;
    --text-color: #1a1a1a;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-base: 16px;
    --line-height: 1.6;
    
    /* Layout */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-base);
    line-height: var(--line-height);
    color: var(--text-main);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px; 
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-main);
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mr-2 { margin-right: 8px; }
.bg-light { background-color: var(--bg-light); }
.text-small { font-size: 0.875rem; }
.text-muted { color: var(--text-muted); }

.section-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin-bottom: 40px;
    font-family: var(--font-body);
}

/* 
==================================================
   SCROLL ANIMATIONS
================================================== 
*/
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* 
==================================================
   GREEK MEANDER BORDER (section divider)
================================================== 
*/
.greek-divider {
    width: 100%;
    height: 20px;
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0 10 L5 10 L5 5 L10 5 L10 0 L20 0 L20 5 L15 5 L15 10 L20 10 L20 15 L25 15 L25 20 L30 20 L30 15 L35 15 L35 10 L40 10 L40 20 L0 20 Z' fill='%23C9A14A' fill-opacity='0.15'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: center;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Inline ornamental divider for headings */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.ornament::before,
.ornament::after {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.ornament h2 {
    margin-bottom: 0;
    white-space: nowrap;
}

/* 
==================================================
   BUTTONS & BADGES
================================================== 
*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    min-height: 48px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(27, 58, 92, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    color: white;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 58, 92, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(201, 161, 74, 0.3);
}

.btn-accent:hover, .btn-accent:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 161, 74, 0.4);
    color: white;
    outline: none;
}

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

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--primary-color);
    color: white;
    outline: none;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    min-height: 40px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn:active, .card:active, .step-card:active, .mobile-bar-btn:active, .faq-question:active, .audience-item:active {
    transform: scale(0.98);
}

/* Pulsing CTA */
@keyframes pulse-glow {
    0% { box-shadow: 0 4px 15px rgba(201, 161, 74, 0.3), 0 0 0 0 rgba(201, 161, 74, 0.4); }
    70% { box-shadow: 0 4px 15px rgba(201, 161, 74, 0.3), 0 0 0 15px rgba(201, 161, 74, 0); }
    100% { box-shadow: 0 4px 15px rgba(201, 161, 74, 0.3), 0 0 0 0 rgba(201, 161, 74, 0); }
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.badge-accent {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.badge-outline {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

/* 
==================================================
   HEADER
================================================== 
*/
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header.header-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.header.header-hidden {
    transform: translateY(-100%);
}

/* Transparent state: white logo/nav */
.header .logo {
    color: white;
    transition: color 0.3s ease;
}

.header .logo svg {
    stroke: white;
    transition: stroke 0.3s ease;
}

.header .main-nav a:not(.btn) {
    color: rgba(255,255,255,0.9);
    transition: color 0.3s ease;
}

.header .main-nav a.btn-outline.btn-sm {
    border-color: rgba(255,255,255,0.6);
    color: white;
    transition: all 0.3s ease;
}

.header .main-nav a.btn-outline.btn-sm:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.header .mobile-menu-btn {
    color: white;
    transition: color 0.3s ease;
}

/* Scrolled state: dark logo/nav */
.header.header-scrolled .logo {
    color: var(--primary-color);
}

.header.header-scrolled .logo svg {
    stroke: var(--primary-color);
}

.header.header-scrolled .main-nav a:not(.btn) {
    color: var(--text-main);
}

.header.header-scrolled .main-nav a:not(.btn):hover {
    color: var(--primary-color);
}

.header.header-scrolled .main-nav a.btn-outline.btn-sm {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header.header-scrolled .main-nav a.btn-outline.btn-sm:hover {
    background: var(--primary-color);
    color: white;
}

.header.header-scrolled .mobile-menu-btn {
    color: var(--primary-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.main-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
}

.main-nav a:not(.btn) {
    color: var(--text-main);
    font-weight: 500;
    font-family: var(--font-body);
}

.main-nav a:not(.btn):hover, .main-nav a:not(.btn):focus {
    color: var(--primary-color);
}

/* 
==================================================
   HERO — Full-image background
================================================== 
*/
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: url('assets/hero-bg.png') center center / cover no-repeat;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.85) 0%, rgba(27, 58, 92, 0.6) 50%, rgba(27, 58, 92, 0.75) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(246, 248, 251, 0) 0%, rgba(246, 248, 251, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 3.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    font-family: var(--font-body);
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.hero-actions .btn-outline {
    border-color: white;
    color: white;
}

.hero-actions .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Hero car card — floating on right (desktop) */
.hero-image-side {
    display: flex;
    justify-content: center;
}

.hero-image-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-image-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

/* Mobile hero reorder */
@media (max-width: 991px) {
    .hero-text-side { display: contents; }
    .hero-text-side > h1 { order: 1; }
    .hero-badges { order: 2; margin-bottom: 20px; }
    .hero-image-side { order: 3; width: 100%; margin-bottom: 20px; }
    .hero-actions { order: 4; width: 100%; margin-bottom: 20px; }
    .hero .subtitle { order: 5; margin-bottom: 0; }
}

/* 
==================================================
   SEATS PROGRESS BAR
================================================== 
*/
.seats-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.12);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 350px;
    margin: 0 auto 24px;
}

.seats-progress-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    font-family: var(--font-body);
}

.seats-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    overflow: hidden;
}

.seats-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #e8c162);
    border-radius: 100px;
    transition: width 1s ease;
}

/* 
==================================================
   DRIVER SECTION
================================================== 
*/
.driver-section {
    background: var(--warm-white);
    padding: 80px 0;
}

.driver-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.driver-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    flex-shrink: 0;
}

.driver-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.driver-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.driver-info .driver-role {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.driver-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .driver-content {
        flex-direction: row;
        text-align: left;
    }
    .driver-photo {
        width: 180px;
        height: 180px;
    }
}

/* 
==================================================
   GRID CARDS
================================================== 
*/
.grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.card {
    background: var(--bg-color);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card svg {
    margin-bottom: 16px;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 8px;
}

/* 
==================================================
   ROUTE
================================================== 
*/
.route-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.route-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-color);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0;
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 600;
}


/* 
==================================================
   TRANSPORT
================================================== 
*/
.transport-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.features-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
}

.transport-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

/* 
==================================================
   IMPORTANT INFO GRID
================================================== 
*/
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.info-card {
    background: var(--bg-color);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-card p {
    color: var(--text-muted);
}


/* 
==================================================
   FAQ
================================================== 
*/
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.faq-question:hover, .faq-question:focus {
    background: var(--bg-light);
    outline: none;
}

.faq-question svg {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
}

/* 
==================================================
   CONTACTS
================================================== 
*/
.contacts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contacts-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.info-group {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.info-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.info-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contacts-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-contact {
    min-height: 56px;
}

.viber-btn { color: #7360f2; border-color: #7360f2; }
.viber-btn:hover, .viber-btn:focus { background-color: #7360f2; color: white; }

.tg-btn { color: #0088cc; border-color: #0088cc; }
.tg-btn:hover, .tg-btn:focus { background-color: #0088cc; color: white; }

.wa-btn { color: #25D366; border-color: #25D366; }
.wa-btn:hover, .wa-btn:focus { background-color: #25D366; color: white; }

/* 
==================================================
   FOOTER
================================================== 
*/
.footer {
    background: var(--primary-color);
    color: white;
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 8px;
    transition: var(--transition);
}

.footer-link-btn:hover, .footer-link-btn:focus {
    color: white;
    outline: none;
}

.footer-warning {
    background: rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 
==================================================
   MODALS
================================================== 
*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    padding: 24px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-color);
    padding: 32px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal h2 {
    margin-top: 0;
    padding-right: 40px;
}

.modal-body {
    overflow-y: auto;
    padding-right: 8px;
}

.text-formatted p, .text-formatted ul, .text-formatted ol {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.text-formatted ul, .text-formatted ol {
    padding-left: 24px;
}

.text-formatted li {
    margin-bottom: 8px;
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:focus {
    outline: 2px solid var(--primary-color);
}

/* 
==================================================
   MOBILE BOTTOM BAR
================================================== 
*/
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    padding: 12px 16px;
    gap: 12px;
    z-index: 99;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

.mobile-bar-btn {
    flex: 1;
    min-height: 48px;
}

/* 
==================================================
   TOAST NOTIFICATION
================================================== 
*/
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    z-index: 1001;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 
==================================================
   BOTTOM SHEET FOR CONTACTS
================================================== 
*/
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}

.bottom-sheet-overlay.active .bottom-sheet {
    transform: translateY(0);
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sheet-header h3 {
    margin: 0;
}

.close-sheet {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-light);
}

/* 
==================================================
   SCROLL TO TOP BUTTON
================================================== 
*/
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

@media (min-width: 768px) {
    .scroll-top-btn {
        bottom: 32px;
        right: 32px;
    }
}

/* 
==================================================
   MOBILE ONLY OVERRIDES
================================================== 
*/
@media (max-width: 767px) {
    .hero-actions {
        display: none;
    }
    
    /* Mobile Menu with backdrop */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 24px 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
        display: flex;
        justify-content: flex-start;
        gap: 16px;
    }

    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav a:not(.btn) {
        font-size: 1.25rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .scrollable-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px; 
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .scrollable-cards::-webkit-scrollbar {
        display: none;
    }
    
    .scrollable-cards > .card, .scrollable-cards > .step-card {
        scroll-snap-align: center;
        flex: 0 0 85%;
        min-width: 250px;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 48px 0;
    }
    
    h2 {
        font-size: 1.625rem;
        margin-bottom: 24px;
    }
    
    .ornament {
        gap: 8px;
    }
    
    .ornament::before,
    .ornament::after {
        width: 30px;
    }
    
    .ornament h2 {
        white-space: normal;
        text-align: center;
        font-size: 1.5rem;
    }
}

/* 
==================================================
   MEDIA QUERIES (DESKTOP)
================================================== 
*/
@media (min-width: 768px) {
    h1 { font-size: 3.2rem; margin-bottom: 12px; }
    h2 { font-size: 2.5rem; margin-bottom: 48px; }
    
    .hero { padding: 100px 0 80px; }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 64px;
    }
    
    .hero-text-side {
        flex: 1.2;
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-badges {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    
    .hero .subtitle {
        margin-bottom: 20px;
    }
    
    .hero-image-side {
        flex: 0.8;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
    }
    
    .main-nav { display: flex; transform: none; position: static; box-shadow: none; background: transparent; padding: 0; flex-direction: row; height: auto; backdrop-filter: none; justify-content: flex-end; }
    .main-nav a:not(.btn) { font-size: 1rem; padding: 0; border-bottom: none; }
    .mobile-menu-btn { display: none; }
    
    .grid-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transport-content {
        flex-direction: row;
        align-items: center;
    }
    .transport-text, .transport-image {
        flex: 1;
    }
    
    .steps-container {
        grid-template-columns: repeat(5, 1fr);
    }
    .step-card {
        padding: 32px 16px;
    }
    
    .contacts-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contacts-actions {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    .footer-links {
        flex-direction: row;
        gap: 32px;
    }
    
    .mobile-bottom-bar {
        display: none;
    }
    
    .trip-details {
        flex-direction: row;
        justify-content: space-between;
        text-align: center;
    }

    .toast {
        bottom: 32px;
    }
}

/* 
==================================================
   NEW SECTIONS & PLACEHOLDERS
================================================== 
*/

/* Image Placeholders */
.card.card-with-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.card-with-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-with-image .img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.card.card-with-image:hover img {
    transform: scale(1.08);
}

.card-content {
    padding: 24px;
    text-align: center;
    background: white;
    z-index: 1;
}

.card-with-image h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.image-placeholder {
    background: var(--secondary-color);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.8;
    gap: 12px;
}

.image-placeholder svg {
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Transport Image Group */
.transport-image-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.main-transport-img {
    width: 100%;
    height: auto;
    padding: 0;
}

.transport-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.small-placeholder {
    height: 120px;
    border-radius: var(--radius-md);
    background: white;
    border: 1px dashed var(--border-color);
    color: var(--text-muted);
}

.small-placeholder svg {
    color: var(--text-muted);
}

/* Packing List */
.packing-list-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.packing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.packing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.packing-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Included / Excluded */
.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.included-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.included-header.success {
    background: #10b981;
}

.included-header.danger {
    background: #ef4444;
}

.included-header h3 {
    margin: 0;
    color: white;
}

.check-list, .cross-list {
    list-style: none;
    padding: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li, .cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cross-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

@media (min-width: 768px) {
    .packing-list {
        grid-template-columns: 1fr 1fr;
    }
    .included-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .transport-image-group {
        width: 50%;
    }
}

/* 
==================================================
   TRIP SUMMARY BENTO
================================================== 
*/
.summary-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}

.summary-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.bento-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--surface-color);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}

.bento-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(27, 58, 92, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
}

.bento-content {
    display: flex;
    flex-direction: column;
}

.bento-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: var(--font-body);
}

.bento-value {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
    font-family: var(--font-body);
}

.route-item {
    grid-column: 1 / -1;
}

/* Countdown Timer */
.countdown-wrapper {
    display: inline-flex;
    gap: 20px;
    background: var(--primary-color);
    padding: 20px 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.25);
    margin-top: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .summary-wrapper {
        padding: 24px 16px;
    }
    .bento-item {
        padding: 16px;
    }
    .countdown-wrapper {
        padding: 16px 20px;
        gap: 16px;
    }
    .countdown-value {
        font-size: 1.5rem;
    }
}

/* 
==================================================
   CAROUSEL
================================================== 
*/
.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 32px;
    padding: 0 40px;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 600px) {
    .carousel-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 900px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

.carousel-btn {
    position: absolute;
    top: calc(50% - 24px);
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.carousel-btn:hover {
    background: var(--surface-color);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (min-width: 900px) {
    .carousel-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .carousel-container {
        padding: 0 16px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    .prev-btn {
        left: -8px;
    }
    .next-btn {
        right: -8px;
    }
}

/* 
==================================================
   MOBILE COMPACTNESS
================================================== 
*/
@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .check-list, .cross-list {
        padding: 16px;
        gap: 12px;
    }
    .bento-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
}

/* 
==================================================
   TABS & ACCORDION
================================================== 
*/
/* Route Accordion */
.route-accordion-wrapper {
    position: relative;
}
.route-steps {
    transition: max-height 0.4s ease;
    overflow: hidden;
    position: relative;
}
.route-steps.collapsed {
    max-height: 320px;
}
.route-gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(246, 248, 251, 0), rgba(246, 248, 251, 1));
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.route-steps.collapsed .route-gradient {
    opacity: 1;
}

/* Tabs */
.tabs-container {
    width: 100%;
}
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.tab-btn {
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: white;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    font-family: var(--font-body);
}
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}
.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile badge adjustments */
@media (max-width: 480px) {
    .badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* Carousel Pagination Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.carousel-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* 
==================================================
   PARALLAX SECTIONS
================================================== 
*/
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(27, 58, 92, 0.8);
    z-index: 1;
}

.parallax-section > .container {
    position: relative;
    z-index: 2;
}

.parallax-section h2,
.parallax-section p,
.parallax-section .section-description {
    color: white;
}
