:root {
    --ink: #16212e;
    --muted: #5b6b7c;
    --green: #103353;
    --green-2: #1b4d7c;
    --lime: #ffc94d;
    --paper: #fbfcfd;
    --tint: #eff3f7;
    --line: #dde4eb;
    --white: #fff;
    --danger: #a12c2c;
    --shadow: 0 24px 70px rgba(11, 33, 55, .14);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid rgba(221, 228, 235, .8);
    background: rgba(251, 252, 253, .92);
    backdrop-filter: blur(16px);
}
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 22px; font-weight: 850; letter-spacing: -.04em; }
.brand span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    color: var(--green);
    background: var(--lime);
}
nav { display: flex; gap: 28px; color: #45525f; font-size: 14px; font-weight: 700; }
nav a:hover { color: var(--green); }

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    padding: 0 22px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.button-small { min-height: 42px; padding: 0 17px; font-size: 14px; }
.button-primary { color: var(--green); background: var(--lime); box-shadow: 0 10px 24px rgba(255, 201, 77, .28); }
.button-primary:hover { background: #ffd66e; }
.button-outline { border: 1px solid var(--green); color: var(--green); background: transparent; }
.button-light { color: var(--green); background: var(--white); border: 1px solid var(--line); }
.button-wide { width: 100%; }

.hero {
    overflow: hidden;
    padding: 70px 0 80px;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 201, 77, .10), transparent 32%),
        radial-gradient(circle at 88% 90%, rgba(70, 130, 190, .28), transparent 34%),
        var(--green);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr); align-items: center; gap: 68px; }
.eyebrow { margin: 0 0 12px; color: #5c6f85; font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero .eyebrow { color: var(--lime); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 690px; margin-bottom: 22px; font-size: clamp(42px, 5.7vw, 72px); }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 48px); }
h3 { margin-bottom: 10px; font-size: 21px; }
.lead { max-width: 620px; margin: 0; color: #d3e1ef; font-size: 19px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 44px; }
.trust-row span { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.18); }
.trust-row strong, .trust-row small { display: block; }
.trust-row strong { font-size: 14px; }
.trust-row small { margin-top: 4px; color: #a8bcd0; font-size: 12px; }

.booking-card { color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.card-heading h2 { margin-bottom: 22px; font-size: 32px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; color: #36434f; font-size: 13px; font-weight: 750; }
input, select {
    width: 100%;
    height: 50px;
    margin-top: 7px;
    border: 1px solid #c9d3de;
    border-radius: 12px;
    color: var(--ink);
    background: #fff;
    padding: 0 14px;
    outline: none;
}
select { cursor: pointer; }
input:focus, select:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(27, 77, 124, .12); }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.booking-form { display: grid; gap: 15px; }
.date-time-group { min-width: 0; margin: 0; border: 0; padding: 0; }
.date-time-group legend { margin-bottom: 7px; padding: 0; color: #36434f; font-size: 13px; font-weight: 800; }
.date-time-row { display: grid; grid-template-columns: minmax(0, 1fr) 96px; gap: 8px; }
.date-time-row label > span { display: block; color: var(--muted); font-size: 11px; font-weight: 650; }
.date-time-row input, .date-time-row select { margin-top: 4px; }
.price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #d8e1ea;
    border-radius: 16px;
    background: var(--tint);
    padding: 16px 18px;
}
.price-box div { display: grid; gap: 3px; }
.price-box div:last-child { text-align: right; }
.price-box span { color: var(--muted); font-size: 12px; }
.price-box strong { font-size: 15px; }
.price-box .price { color: var(--green); font-size: 24px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.check input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; }
.form-note { margin: -4px 0 0; color: #75808b; font-size: 11px; text-align: center; }
.hp-field { position: absolute; left: -9999px; }
.alert { border-radius: 12px; padding: 12px 14px; font-size: 13px; }
.alert-error { color: #7d1c1c; background: #fdeaea; }
.alert-warning { color: #664b00; background: #fff3c8; }
.success-panel { padding: 30px 10px; text-align: center; }
.success-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 18px; place-items: center; border-radius: 50%; color: var(--green); background: var(--lime); font-size: 28px; font-weight: 900; }
.success-panel h2 { font-size: 34px; }

.section { padding: 96px 0; }
.section-tint { background: var(--tint); }
.section-heading { max-width: 650px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps article { border: 1px solid var(--line); border-radius: 20px; background: var(--white); padding: 28px; }
.steps article > span { display: grid; width: 40px; height: 40px; margin-bottom: 28px; place-items: center; border-radius: 12px; color: var(--green); background: var(--lime); font-weight: 900; }
.steps p, .location-grid p { margin-bottom: 0; color: var(--muted); }
.gallery { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.gallery img, .photo-placeholder { width: 100%; height: 430px; border-radius: 22px; object-fit: cover; }
.photo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--green); background: #dfe6ed; text-align: center; }
.photo-placeholder span { font-size: 32px; font-weight: 900; }
.photo-placeholder p { margin: 8px 20px 0; }
.photo-placeholder-dark { color: #fff; background: var(--green); }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.route-facts { display: flex; gap: 12px; margin: 26px 0; }
.route-facts span { min-width: 135px; border-radius: 14px; background: var(--tint); padding: 14px; }
.route-facts strong, .route-facts small { display: block; }
.route-facts strong { color: var(--green); font-size: 20px; }
.route-facts small { color: var(--muted); }
.route-steps { margin-top: 24px; border-left: 4px solid var(--lime); padding-left: 18px; }
.route-steps h3 { margin-bottom: 8px; font-size: 18px; }
.map-card { display: grid; min-height: 350px; place-content: center; border-radius: 24px; background: radial-gradient(circle at center, #f4f7fa 0 16%, transparent 17%), repeating-linear-gradient(45deg, #e4eaef 0 1px, transparent 1px 25px), #d3dde6; text-align: center; }
.map-pin { display: grid; width: 64px; height: 64px; margin: 0 auto 14px; place-items: center; border: 7px solid #fff; border-radius: 50% 50% 50% 0; color: var(--green); background: var(--lime); box-shadow: 0 12px 30px rgba(11,33,55,.2); font-size: 24px; font-weight: 900; transform: rotate(-45deg); }
.map-pin::first-letter { transform: rotate(45deg); }
.map-card strong { font-size: 25px; }
.map-card small { color: var(--muted); }
.map-frame { overflow: hidden; position: relative; min-height: 390px; border: 1px solid var(--line); border-radius: 24px; background: #dbe3ea; }
.map-frame iframe { width: 100%; height: 390px; border: 0; }
.map-frame > div { position: absolute; left: 18px; bottom: 18px; display: grid; border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(11,33,55,.2); padding: 12px 16px; }
.map-frame small { color: var(--muted); }
.faq-wrap { max-width: 860px; }
details { border-bottom: 1px solid #ccd6e0; padding: 20px 0; }
summary { cursor: pointer; font-size: 18px; font-weight: 800; }
details p { color: var(--muted); }

footer { color: #c2d0de; background: #0a2138; padding: 56px 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.brand-footer { color: #fff; }
.footer-inner div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-inner p { margin: 3px 0 0; }
.footer-inner strong { color: #fff; }
.footer-inner a:not(.brand) { font-size: 14px; }
.legal-page { min-height: 70vh; max-width: 780px; padding-top: 80px; padding-bottom: 80px; }
.legal-page h1 { color: var(--green); }

@media (max-width: 920px) {
    nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-copy { text-align: center; }
    .hero-copy h1, .hero-copy .lead { margin-left: auto; margin-right: auto; }
    .location-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
    .wrap { width: min(100% - 24px, 1180px); }
    .header-inner { min-height: 66px; }
    .brand { font-size: 19px; }
    .brand span { width: 32px; height: 32px; }
    .hero { padding: 42px 0 48px; }
    h1 { font-size: 40px; }
    .lead { font-size: 17px; }
    .trust-row { grid-template-columns: 1fr; margin-top: 30px; text-align: left; }
    .booking-card { border-radius: 19px; padding: 20px; }
    .field-grid { grid-template-columns: 1fr; }
    .price-box { align-items: flex-end; }
    .section { padding: 68px 0; }
    .steps, .gallery, .footer-inner { grid-template-columns: 1fr; }
    .gallery img, .photo-placeholder { height: 300px; }
    .map-card { min-height: 280px; }
    .contact-actions { flex-direction: column; }
    .contact-actions .button { width: 100%; }
}

/* Price teaser (hero) */
.price-teaser {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin: 20px 0 0;
    border: 1px solid rgba(255, 201, 77, .38);
    border-radius: 999px;
    background: rgba(255, 201, 77, .12);
    padding: 9px 18px;
    color: #d3e1ef;
    font-size: 14px;
    font-weight: 700;
}
.price-teaser strong { color: var(--lime); font-size: 20px; letter-spacing: -.02em; }

/* Google reviews */
.reviews { color: var(--white); background: var(--green); }
.reviews .eyebrow { color: var(--lime); }
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.reviews-head h2 { margin-bottom: 0; }
.rating-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    padding: 14px 20px;
}
.rating-badge > strong { font-size: 40px; letter-spacing: -.03em; }
.stars { display: block; color: var(--lime); font-size: 16px; letter-spacing: 2px; }
.rating-badge small { color: #a8bcd0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.reviews-grid blockquote {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    padding: 22px;
    color: #d3e1ef;
    font-size: 15px;
}

/* Sticky mobile CTA */
.mobile-cta { display: none; }

@media (max-width: 640px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .mobile-cta {
        position: fixed;
        z-index: 40;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 10px;
        border-top: 1px solid var(--line);
        background: rgba(251, 252, 253, .95);
        backdrop-filter: blur(14px);
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    }
    body { padding-bottom: 78px; }
    footer { padding-bottom: 110px; }
}

/* Language switcher */
.header-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.lang-switch a { display: grid; place-items: center; width: 40px; height: 34px; padding: 0; font-size: 12px; font-weight: 800; color: var(--muted); }
.lang-switch a.active { color: var(--white); background: var(--green); }
.header-call { width: 108px; min-width: 108px; white-space: nowrap; }
.mobile-cta .button { min-width: 0; white-space: nowrap; }

/* Route map (Leaflet) */
#route-map { width: 100%; height: 430px; }
.map-marker { display: grid; place-items: center; border-radius: 50%; font-weight: 900; box-shadow: 0 8px 22px rgba(11, 33, 55, .35); border: 3px solid #fff; }
.map-marker-start { color: var(--green); background: var(--lime); font-size: 19px; }
.map-marker-end { color: #fff; background: var(--green); font-size: 16px; }
.route-label { border: 0; border-radius: 999px; background: var(--green); color: #fff; font-weight: 800; font-size: 12px; padding: 6px 12px; box-shadow: 0 8px 22px rgba(11, 33, 55, .3); }
.route-label::before { display: none; }

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    z-index: 45;
    right: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
    transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-2px); }

@media (max-width: 640px) {
    .header-actions .button { display: none; }
    #route-map { height: 340px; }
    .wa-float { right: 12px; bottom: 88px; width: 52px; height: 52px; }
}
