/* ===== CSS VARIABLES & RESET ===== */
:root {
    /* Цвета из config.php */
    --primary: #00a2fb;
    --accent: #ffbf00;
    --text: #1a1a2e;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e2e8f0;
    
    /* Типографика */
    --font-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
    
    /* Размеры */
    --container: 1200px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    
    /* Анимации */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 200ms var(--ease);
}

/* Светлая тема зафиксирована: авто-темная ломала контраст коммерческих блоков */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
#order-title,
#how-title,
#main-content,
#faq-title,
#destinations-title {
    scroll-margin-top: 96px;
}
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* Доступность: ссылка видна только с клавиатуры, не перекрывает логотип */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    color: #fff;
    background: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus-visible {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1100;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

a:focus-visible:not(.skip-link),
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Контейнеры */
.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}
.container-fluid { width: min(100% - 2rem, 1400px); margin-inline: auto; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}
.site-header { background: rgba(255,255,255,0.96); }

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}
.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}
.logo-accent {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

/* Мобильное меню */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: transform var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.mobile-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.primary-nav { display: flex; align-items: center; }
.phone-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.phone-cta {
    background: var(--primary);
    color: #fff;
}
.phone-cta:hover { background: #008fd9; }
.phone-cta .icon-phone { fill: #fff; }
.icon-phone { width: 28px; height: 28px; fill: var(--primary); flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,162,251,0.3));
}
.hero-content {
    position: relative;
    padding: 4rem 1rem;
    max-width: 700px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover {
    background: #008fd9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}
.btn-lg { font-size: 1.1rem; padding: 1rem 2rem; }
.icon { width: 18px; height: 18px; fill: currentColor; }

/* ===== SECTIONS ===== */
.section { padding: 4rem 0; }
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* Шаги заказа */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.step-card {
    text-align: center;
    padding: 1.5rem;
}
.step-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-light); font-size: 0.95rem; }

/* Подзаголовок секции */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

/* Цены */
.pricing-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.pricing-img img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}
.pricing-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}
.pricing-features {
    list-style: none;
    margin: 1rem 0 1.5rem;
}
.pricing-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

/* Преимущества */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-light); }

/* Отзывы */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow);
}
.review-card p { margin-bottom: 1rem; font-style: italic; }
.review-card footer {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Направления */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.destination-link {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    text-align: center;
    transition: all var(--transition);
}
.destination-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.link-more {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.link-more:hover { text-decoration: underline; }


/* Блок доверия */
.trust { padding: 2.5rem 0; background: var(--bg-soft); }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.trust-number {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}
.trust-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-item summary {
    padding: 1.125rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA-баннер */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #0077cc);
    padding: 3.5rem 0;
    color: white;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.cta-subtitle {
    opacity: 0.9;
    font-size: 1.05rem;
}
.cta-btn {
    background: white;
    color: var(--primary);
    font-size: 1.15rem;
    white-space: nowrap;
    border: 2px solid white;
}
.cta-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Хлебные крошки */
.breadcrumb {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}
.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep {
    margin: 0 0.4rem;
    opacity: 0.5;
}

/* Мини-герой для подстраниц */
.page-hero-sm { padding: 2.5rem 0 1rem; }
.page-hero-sm .section-title { margin-bottom: 1rem; }
.page-hero-sm .section-subtitle {
    margin-top: 0;
    margin-bottom: 0;
}

/* Регионы (все направления) */
.region-block { margin-bottom: 2.5rem; }
.region-block:last-child { margin-bottom: 0; }
.region-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

/* Страницы направлений */
.dest-hero { padding-bottom: 1rem; }
.dest-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}
.dest-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.dest-meta-item::before {
    content: '•';
    color: var(--primary);
    font-weight: 700;
}
.dest-meta-item:first-child::before { display: none; }

.widget-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius);
}

.dest-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.dest-image img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}
.dest-details h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.dest-details p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.dest-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.dest-features li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}
.dest-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.route-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.route-card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.route-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.route-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .dest-info-grid { grid-template-columns: 1fr; }
}

/* Страница 404 */
.error-page {
    padding: 5rem 0;
    text-align: center;
    min-height: 60vh;
    display: grid;
    place-items: center;
}
.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 0;
}
.error-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.error-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-inline: auto;
}
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.error-phone {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: inline-block;
}
.error-phone p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.error-phone-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.error-phone-link:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0b1f33;
    color: #cbd5e1;
    border-top: none;
    padding: 2.5rem 0 1rem;
    margin-top: 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.footer-col strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.footer-phone {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.25rem;
}
.footer-col address {
    font-style: normal;
    color: #94a3b8;
    line-height: 1.5;
}
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    .primary-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .phone-cta { justify-content: center; width: 100%; }
    
    .pricing-card { grid-template-columns: 1fr; text-align: center; }
    .pricing-features { margin-inline: auto; max-width: 300px; }
    
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    
    .cta-inner { justify-content: center; text-align: center; }
    .cta-text { text-align: center; }
    
    .hero-content { padding: 3rem 1rem; }
    .hero-title { font-size: 2rem; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.site-header { position: sticky; }
.primary-nav { gap: 1rem; }
.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
}
.nav-link:hover { background: var(--bg-soft); }

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb-list li:not(:last-child)::after {
    content: '→';
    margin-left: 0.5rem;
    opacity: 0.5;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.car-card {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.car-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.car-card img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto 0.75rem;
}
.car-card h3 { margin-bottom: 0.5rem; }
.car-card p { color: var(--text-light); }

.prose { max-width: 800px; margin: 0 auto; }
.prose h1, .prose h2 { text-align: left; }
.prose h2 { margin: 1.75rem 0 0.75rem; font-size: 1.35rem; }
.prose p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.75; }
.prose-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.prose-split h2 { margin-bottom: 0.75rem; }
.prose-split p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.7; }

.muted { color: var(--text-light); margin-top: 1rem; }
.form-consent {
    position: relative;
    z-index: 2;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}
.form-consent a,
.form-consent-trigger {
    color: var(--primary);
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.consent-modal-open { overflow: hidden; }
.consent-modal[hidden] { display: none; }
.consent-modal:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
}
.consent-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 51, 0.58);
}
.consent-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 640px);
    max-height: min(86vh, 720px);
    overflow: auto;
    background: #fff;
    color: var(--text);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.75rem 1.5rem 1.25rem;
}
.consent-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    color: var(--text-light);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.consent-modal-close:hover { color: var(--text); }
.consent-modal-dialog h2 {
    font-size: 1.35rem;
    margin: 0 1.5rem 0.75rem 0;
}
.consent-modal-lead {
    font-weight: 600;
    margin-bottom: 1rem;
}
.consent-modal-body h2 {
    font-size: 1.05rem;
    margin: 1.1rem 0 0.4rem;
}
.consent-modal-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.consent-modal-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.consent-modal-page {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.consent-modal-page:hover { text-decoration: underline; }

.image-fallback {
    min-height: 280px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0f3b5c, #00a2fb);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    text-align: center;
    padding: 2rem;
}
.hero-bg:not(:has(img)) {
    background: linear-gradient(135deg, #0b1f33, #0077b6);
    min-height: 500px;
}

.footer-col a { color: #7dd3fc; text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }

.mobile-call {
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 90;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.85rem 1.1rem;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    align-items: center;
    gap: 0.4rem;
}
.mobile-call .icon { width: 20px; height: 20px; fill: currentColor; }

@media (max-width: 768px) {
    .mobile-call { display: inline-flex; }
    body { padding-bottom: 4.5rem; }
    .primary-nav { flex-direction: column; }
}

.hero.hero-split { min-height: 0; text-align: left; }
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    padding: 4.5rem 0;
}
.hero-copy { max-width: 640px; }
.hero-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    font-size: 0.9rem;
    font-weight: 600;
}
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0 0 1.5rem;
}
.hero-chips li {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.92rem;
}
.hero-form {
    background: #fff;
    color: var(--text);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1rem 0.5rem;
    box-shadow: var(--shadow-lg);
}
.hero-form-title {
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
}
.hero-form-note {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
}
.hero-form .widget-wrap iframe {
    display: block;
    margin: 0;
}
.hero-form .form-consent { margin-top: 0.15rem; }

.include-strip {
    background: #0b1f33;
    color: #fff;
    padding: 1rem 0;
}
.include-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}
.include-grid p::before {
    content: '✓ ';
    color: var(--accent);
}

.featured-routes { margin-bottom: 1.5rem; }
.route-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform var(--transition), box-shadow var(--transition);
}
.route-card-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.route-card-link .link-more { margin-top: 0.75rem; }
.compact-dest { margin-top: 0.5rem; }
.dest-lead {
    text-align: center;
    color: var(--text-light);
    max-width: 720px;
    margin: 1rem auto 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin: 0.3rem 0; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; padding: 3rem 0; text-align: center; }
    .hero-copy { max-width: none; }
    .hero-chips { justify-content: center; }
    .include-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .phone-cta { background: var(--primary); color: #fff; }
}

.featured-grid,
.catalog-grid,
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.dest-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    text-decoration: none;
    color: #fff;
    min-height: 200px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.dest-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.dest-tile img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.dest-tile-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.25rem 1rem 0.9rem;
    background: linear-gradient(180deg, transparent, rgba(11, 31, 51, 0.92));
}
.dest-tile-name {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.25;
}
.dest-tile-meta {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.dest-hero-rich { padding-top: 2rem; padding-bottom: 1rem; }
.dest-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}
.dest-hero-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow);
}
.dest-hero-copy h1 {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: left;
}
.dest-hero-rich .dest-meta { justify-content: flex-start; }
.dest-hero-rich .dest-lead {
    text-align: left;
    margin: 1rem 0 1.25rem;
}
.dest-details-wide { max-width: 860px; margin: 0 auto; }
.dest-features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1.5rem;
}

.error-popular {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 180px));
    justify-content: center;
    gap: 0.6rem;
    margin: 0 auto 2rem;
}

@media (max-width: 1024px) {
    .featured-grid,
    .catalog-grid,
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .dest-hero-grid { grid-template-columns: 1fr; }
    .dest-hero-media img { height: 240px; }
    .dest-hero-copy h1 { text-align: center; }
    .dest-hero-rich .dest-meta { justify-content: center; }
    .dest-hero-rich .dest-lead { text-align: center; }
    .dest-hero-copy .btn { display: inline-flex; }
    .dest-hero-copy { text-align: center; }
}
@media (max-width: 640px) {
    .featured-grid,
    .catalog-grid,
    .related-grid { grid-template-columns: 1fr; }
    .dest-features-split { grid-template-columns: 1fr; }
    .dest-tile img { height: 190px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
}