/* ============================================
   HERO SECTION
============================================ */
.lh-hero-section {
    background: linear-gradient(135deg, #001f3d 0%, #003d6b 40%, var(--brand) 80%, #0072b8 100%);
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-mountain-silhouette {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}
.hero-mountain-silhouette svg { width: 100%; height: 100%; }
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.badge-pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e; display: inline-block; margin-right: 2px;
    animation: pulse 2s infinite;
}
.hero-title {
    font-size: clamp(32px, 5.5vw, 60px);
    font-weight: 800;
    color: #fff !important;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero-title-accent { color: var(--gold) !important; }
.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.80) !important;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 52ch;
}
.hero-content .btn-row { margin-bottom: 32px; }
.hero-content .btn-row .btn { min-width: 180px; }

/* Trust badges */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}
.trust-item svg { stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Hero inquiry card */
.hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
}
.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.hero-card-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy) !important;
    margin: 0;
}
.hero-card-online {
    font-size: 12px;
    color: #16a34a;
    font-weight: 600;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.form-or { font-size: 13px; color: var(--muted); white-space: nowrap; }
.form-response { margin-top: 12px; }
.form-submit-row .btn { flex: 1; min-width: 140px; }

/* ============================================
   STATS STRIP
============================================ */
.lh-stats-strip {
    background: var(--navy);
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-box {
    text-align: center;
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(255,255,255,0.04); }
.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0,91,148,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.stat-icon svg { stroke: var(--brand); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.02em;
    margin: 0 0 4px !important;
}
.stat-label {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55) !important;
    margin: 0 !important;
    line-height: 1.4;
}

/* ============================================
   ROUTES SECTION
============================================ */
.lh-routes-section { background: var(--bg); }
.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}
.routes-footer { text-align: center; }

/* Route Card */
.route-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,91,148,0.2);
}
.route-card-band {
    background: linear-gradient(135deg, #003d6b 0%, var(--brand) 55%, #0072b8 100%);
    padding: 18px 20px 16px;
    position: relative;
    overflow: hidden;
}
.route-card-band::after {
    content: '';
    position: absolute;
    bottom: -24px; right: -24px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.route-card-band .badge { margin-bottom: 12px; }
.route-card-path {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.route-place { flex: 1; }
.route-place-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
}
.route-place-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.route-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.route-arrow svg { stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.route-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.route-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.route-price {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}
.route-price-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}
.route-price-val {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.01em;
}
.route-price-sub {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin-top: 1px;
}
.route-times {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}
.route-time-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--brand-light);
    border: 1px solid rgba(0,91,148,0.15);
    border-radius: 99px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand);
}
.route-time-chip svg { stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.route-duration {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0 0 12px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}
.route-duration svg { stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.route-card .btn { justify-content: center; }
.route-card .btn svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================
   WHY SECTION
============================================ */
.lh-why-section { background: #fff; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}
.why-content h2 { margin-bottom: 16px; }
.why-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0;
}
.why-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.why-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-feature-icon svg { stroke: var(--brand); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy) !important;
    margin: 0 0 3px !important;
}
.why-feature-desc {
    font-size: 13px;
    color: var(--muted) !important;
    margin: 0 !important;
    line-height: 1.6;
}
.why-visual { display: flex; align-items: center; justify-content: center; }
.why-card-stack { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.why-review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-md);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars svg { fill: var(--gold); }
.review-text {
    font-size: 14px;
    font-style: italic;
    color: var(--ink) !important;
    line-height: 1.65;
    margin-bottom: 10px !important;
}
.review-author {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted) !important;
    margin: 0 !important;
}
.why-stat-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.why-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.why-stat-num { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.why-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ============================================
   DEPARTURES SECTION
============================================ */
.lh-departures-section { background: var(--bg); }
.departures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
.departure-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: var(--transition);
}
.departure-item:hover {
    border-color: rgba(0,91,148,0.25);
    box-shadow: var(--shadow-sm);
}
.dep-route {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy) !important;
    margin: 0 0 4px !important;
}
.dep-time {
    font-size: 12px;
    color: var(--muted) !important;
    margin: 0 !important;
}
.departures-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}
.departures-note {
    font-size: 13px;
    color: var(--muted) !important;
    margin: 0 !important;
}

/* ============================================
   GUIDE CTA BANNER
============================================ */
.lh-guide-cta { background: var(--gold-light); border-top: 1px solid rgba(200,146,42,0.2); border-bottom: 1px solid rgba(200,146,42,0.2); }
.guide-cta-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.guide-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(200,146,42,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.guide-cta-icon svg { stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.guide-cta-text { flex: 1; }
.guide-cta-text h3 { font-size: 18px; margin: 0 0 6px; color: var(--navy) !important; }
.guide-cta-text p { font-size: 14px; margin: 0 !important; color: var(--muted) !important; }

/* ============================================
   CTA STRIP
============================================ */
.lh-cta-strip {
    background: linear-gradient(135deg, #003d6b 0%, var(--brand) 55%, #0072b8 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.lh-cta-strip::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.lh-cta-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
}
.lh-cta-strip-text h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff !important;
    margin: 0 0 8px;
}
.lh-cta-strip-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.78) !important;
    margin: 0;
}
.lh-cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.lh-cta-strip .btn svg { stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================
   CONTENT PAGES
============================================ */
.lh-content-wrap { padding: 60px 0; }
.content-container { max-width: 780px; }
.content-container h1,
.content-container h2,
.content-container h3 { margin-top: 2rem; margin-bottom: 1rem; }
.content-container img { border-radius: var(--radius-md); margin: 1.5rem 0; }
.content-container ul, .content-container ol { margin-bottom: 1rem; }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.lh-page-hero {
    background: linear-gradient(135deg, #001f3d 0%, #003d6b 50%, var(--brand) 100%);
    padding: 60px 0 64px;
    position: relative;
    overflow: hidden;
}
.lh-page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-inner { position: relative; max-width: 720px; }
.page-hero-inner h1 { color: #fff !important; font-size: clamp(24px, 4vw, 42px); margin-bottom: 14px; }
.page-hero-inner p { color: rgba(255,255,255,0.80) !important; font-size: 16px; margin: 0; }
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.7) !important; text-decoration: none; }
.page-hero-breadcrumb a:hover { color: #fff !important; }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   PAGINATION
============================================ */
.lh-pagination { padding: 40px 0; }
.lh-pagination ul { list-style: none; padding: 0; display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.lh-pagination a, .lh-pagination span { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; border: 1px solid var(--line); color: var(--ink) !important; text-decoration: none; transition: var(--transition); }
.lh-pagination a:hover { background: var(--brand-light); border-color: rgba(0,91,148,0.3); color: var(--brand) !important; }
.lh-pagination .current span { background: var(--brand); color: #fff !important; border-color: var(--brand); }

/* ============================================
   ANIMATE ON SCROLL
============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
    .departures-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 560px; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-visual { order: -1; }
    .why-card-stack { max-width: 480px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-box:nth-child(2) { border-right: none; }
    .stat-box:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 768px) {
    .routes-grid { grid-template-columns: 1fr; }
    .departures-grid { grid-template-columns: 1fr 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .lh-hero-section { padding: 56px 0 72px; }
    .hero-title { font-size: clamp(28px, 8vw, 44px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-cta-inner { flex-direction: column; text-align: center; }
    .lh-cta-strip .container { flex-direction: column; text-align: center; }
    .lh-cta-strip-actions { justify-content: center; }
}
@media (max-width: 480px) {
    .departures-grid { grid-template-columns: 1fr; }
    .hero-card { padding: 20px; }
    .form-submit-row { flex-direction: column; }
    .form-submit-row .btn { width: 100%; }
    .form-or { display: none; }
    .trust-row { gap: 10px; }
}
