﻿:root {
    --sky: #7eb8d8;
    --sky-deep: #2f6f96;
    --travertine: #f6f3ed;
    --pool: #1f8a7e;
    --pool-deep: #16685f;
    --ink: #142028;
    --muted: #52616b;
    --white: #ffffff;
    --gold: #b8893a;
    --gold-soft: #f3e6cc;
    --shadow: 0 22px 50px rgba(20, 32, 40, 0.12);
    --radius: 14px;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Outfit", "Segoe UI", sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.8125rem;
    --fs-meta: 0.875rem;
    --fs-body: 1rem;
    --fs-lead: 1.125rem;
    --fs-title-sm: 1.25rem;
    --fs-title: 1.375rem;
    --fs-price: 1.85rem;
    --fs-btn: 0.9375rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    background: var(--travertine);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.65;
    font-size: var(--fs-body);
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-media img,
    .feature-visual .float-shot { animation: none !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; }
address { font-style: normal; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

nav.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.85rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: rgba(246, 243, 237, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(20, 32, 40, 0.06);
}
.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--ink);
    white-space: nowrap;
}
.logo span { color: var(--sky-deep); }

.nav-links {
    display: flex;
    gap: 1.35rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fs-meta);
    color: var(--muted);
    transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--sky-deep); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(20, 32, 40, 0.12);
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--ink);
    color: #fff;
    padding: 0.78rem 1.35rem;
    min-height: 2.85rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--fs-btn);
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(20, 32, 40, 0.16);
}
.btn-accent {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}
.btn-accent:hover { background: #1ebe57; }
.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(20, 32, 40, 0.18);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a3772e; }
.btn-sm { padding: 0.68rem 1.1rem; font-size: var(--fs-btn); min-height: 2.7rem; }

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    align-items: end;
    position: relative;
    overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 32, 40, 0.28) 0%, rgba(20, 32, 40, 0.18) 38%, rgba(20, 32, 40, 0.78) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    width: min(1160px, 92%);
    margin: 0 auto;
    padding: 7.5rem 0 4.2rem;
    color: #fff;
}
.brand-mark {
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 7vw, 5.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 1rem;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
}
.hero-lead {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    max-width: 40rem;
    opacity: 0.9;
    margin-bottom: 1.45rem;
    line-height: 1.55;
    font-weight: 400;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}
.hero-home .hero-media img { object-position: center 42%; }
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}
.price-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.58rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: var(--fs-meta);
}
.price-pill strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.page-hero {
    min-height: 72vh;
    min-height: 72dvh;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: min(1160px, 92%);
    margin: -2.2rem auto 0;
    position: relative;
    z-index: 3;
}
.trust-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
    font-size: 1.02rem;
    font-weight: 700;
}
.trust-item small {
    display: block;
    font-weight: 500;
    color: var(--muted);
    font-size: var(--fs-sm);
    margin-top: 0.2rem;
}

.section {
    padding: clamp(3.6rem, 7vw, 6.4rem) 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-wide { max-width: none; padding-left: 0; padding-right: 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.eyebrow {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky-deep);
    margin-bottom: 0.65rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 0.75rem;
    max-width: 26ch;
}
.section-lead {
    color: var(--muted);
    font-size: var(--fs-lead);
    max-width: 40rem;
    margin-bottom: 1.85rem;
    line-height: 1.6;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}
.tour-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 32, 40, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
}
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.tour-card .media {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.tour-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.tour-card:hover .media img { transform: scale(1.06); }
.badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: var(--gold);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
}
.badge-hot { background: #d3543a; }
.tour-card .body {
    padding: 1.2rem 1.25rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.tour-card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-title);
    line-height: 1.25;
}
.tour-card p { color: var(--muted); font-size: var(--fs-meta); line-height: 1.55; }
.tour-card .card-price {
    color: var(--ink);
    font-size: var(--fs-price);
    line-height: 1;
}
.tour-card .card-price small {
    font-size: var(--fs-xs);
    line-height: 1.3;
}
.tour-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.25rem 0 0.5rem;
}
.chip {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--pool-deep);
    background: rgba(31, 138, 126, 0.1);
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
}
.tour-card .foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding-top: 0.7rem;
}
.tour-card .btn-accent.btn-sm {
    min-width: 7.4rem;
}
.tour-card .body > .btn-outline {
    width: auto;
    align-self: flex-start;
    margin-top: 0.1rem;
    padding: 0.2rem 0;
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: none;
    color: var(--sky-deep);
    font-size: var(--fs-meta);
    font-weight: 600;
    box-shadow: none;
}
.tour-card .body > .btn-outline:hover {
    background: none;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    transform: none;
    box-shadow: none;
}
.card-price {
    font-family: var(--font-display);
    font-size: var(--fs-price);
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
.card-price small {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--muted);
    margin-top: 0.22rem;
}

.combo {
    margin-top: 1.4rem;
    background: linear-gradient(135deg, #17313c, #2f6f96);
    color: #fff;
    border-radius: calc(var(--radius) + 4px);
    padding: 1.4rem 1.5rem;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 1rem;
    align-items: center;
}
.combo h3 {
    font-family: var(--font-display);
    font-size: var(--fs-title);
    margin-bottom: 0.3rem;
}
.combo p { opacity: 0.88; font-size: var(--fs-meta); }

.feature-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.6rem, 4vw, 3.4rem);
    align-items: center;
}
.feature-visual { position: relative; min-height: 480px; }
.feature-visual img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.feature-visual .float-shot {
    position: absolute;
    width: 42%;
    bottom: -7%;
    right: -3%;
    min-height: auto;
    height: auto;
    border: 6px solid var(--travertine);
    animation: floatY 5.5s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.3rem; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; }
.feature-list .num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--sky-deep);
    font-weight: 700;
}
.feature-list h3 { font-size: 1.05rem; margin-bottom: 0.18rem; }
.feature-list p { color: var(--muted); font-size: var(--fs-meta); }

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.3rem 0 1.6rem;
}
.includes-grid span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 32, 40, 0.07);
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    font-weight: 600;
    font-size: var(--fs-meta);
}
.includes-grid span::before {
    content: "✓ ";
    color: var(--pool);
}

.price-box {
    background: linear-gradient(165deg, rgba(126, 184, 216, 0.2), rgba(31, 138, 126, 0.08));
    border: 1px solid rgba(47, 111, 150, 0.16);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.price-display {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}
.price-display small {
    font-size: 0.32em;
    font-weight: 500;
    color: var(--muted);
}

.transfer-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
.transfer-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.transfer-table th,
.transfer-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(20, 32, 40, 0.07);
    font-size: var(--fs-meta);
}
.transfer-table th {
    background: #17313c;
    color: #fff;
    font-weight: 600;
    position: sticky;
    top: 0;
}
.transfer-table tbody tr:hover { background: rgba(126, 184, 216, 0.12); }
.transfer-table .price { font-weight: 700; white-space: nowrap; }
.transfer-table .btn { padding: 0.55rem 0.95rem; font-size: 0.95rem; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: 0 8px 24px rgba(20, 32, 40, 0.06);
}
.why-card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-title-sm);
    margin: 0.4rem 0 0.4rem;
}
.why-card p { font-size: var(--fs-meta); color: var(--muted); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 170px;
    gap: 0.7rem;
}
.gallery-grid figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius);
}
.gallery-grid figure:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-grid figure:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-grid figure:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-grid figure:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.gallery-grid figure:nth-child(5) { grid-column: span 4; grid-row: span 1; }
.gallery-grid figure:nth-child(6) { grid-column: span 5; grid-row: span 2; }
.gallery-grid figure:nth-child(7) { grid-column: span 3; grid-row: span 1; }
.gallery-grid figure:nth-child(8) { grid-column: span 4; grid-row: span 1; }

.gallery-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
    color: inherit;
    text-align: left;
}
.gallery-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.gallery-trigger:hover img,
.gallery-trigger:focus-visible img { transform: scale(1.06); }
.gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(20, 32, 40, 0.72));
    color: #fff;
    font-size: var(--fs-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-trigger:hover .gallery-caption,
.gallery-trigger:focus-visible .gallery-caption { opacity: 1; }
@media (hover: none) {
    .gallery-caption { opacity: 1; }
}

.faq-list { display: flex; flex-direction: column; gap: 0.7rem; max-width: 820px; }
details.faq-item,
.lang-switch {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 32, 40, 0.08);
    border-radius: 10px;
}
.faq-item { padding: 1.05rem 1.2rem; font-size: var(--fs-body); }
.faq-item summary { font-size: 1.05rem; }
.faq-item summary,
.lang-switch summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker,
.lang-switch summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--sky-deep);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 0.7rem; color: var(--muted); font-size: var(--fs-meta); }

.contact-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.2rem;
    align-items: stretch;
}
.contact-visual {
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
.contact-meta {
    margin-top: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: var(--muted);
    font-size: var(--fs-body);
}
.contact-meta strong { color: var(--ink); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }

.related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

footer {
    background: #10181d;
    color: rgba(255, 255, 255, 0.72);
    padding: 3.2rem 5% 2.4rem;
    font-size: var(--fs-meta);
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto 2.2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1.8rem;
}
footer h3 {
    font-family: var(--font-display);
    color: #fff;
    font-size: var(--fs-title-sm);
    margin-bottom: 0.75rem;
}
footer a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
footer a:hover { color: #fff; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.7rem;
    font-size: 0.98rem;
}

.wa-float {
    position: fixed;
    right: 1.15rem;
    bottom: 5.2rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 1100;
    text-decoration: none;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

.sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1090;
    display: none;
    background: rgba(16, 24, 29, 0.94);
    backdrop-filter: blur(10px);
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    gap: 0.55rem;
}
.sticky-cta .btn { flex: 1; }

.lang-switch {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
}
.lang-switch summary {
    padding: 0.5rem 0.85rem;
    font-size: 1rem;
    border-radius: 999px;
}
.lang-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    min-width: 220px;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(20, 32, 40, 0.08);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 0.4rem 0.4rem 0.55rem;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}
.lang-group {
    margin: 0.45rem 0.45rem 0.15rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sky-deep);
}
.lang-menu a {
    text-decoration: none;
    padding: 0.5rem 0.7rem;
    border-radius: 7px;
    font-size: 1.02rem;
    color: var(--ink);
    font-weight: 500;
}
.lang-menu a:hover,
.lang-menu a[aria-current="page"] {
    background: rgba(126, 184, 216, 0.18);
    color: var(--sky-deep);
}

.gs-reveal { opacity: 0; visibility: hidden; }

body.lightbox-open { overflow: hidden; }
.lightbox[hidden] { display: none !important; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 4.5rem 4rem 5rem;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 20, 0.92);
    cursor: zoom-out;
}
.lightbox-figure {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(1100px, 92vw);
    max-height: 78vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    cursor: ew-resize;
}
.lightbox-caption { color: rgba(255, 255, 255, 0.88); text-align: center; }
.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    border: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.lightbox-close {
    top: 1rem; right: 1rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 1.75rem;
}
.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 1.35rem;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
    position: absolute;
    z-index: 2;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}
.lightbox-hint {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

.itinerary { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.itinerary li {
    display: grid;
    grid-template-columns: 3.6rem 1fr;
    gap: 0.8rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.05rem 1.15rem;
    font-size: var(--fs-meta);
}
.itinerary .time {
    font-weight: 700;
    color: var(--sky-deep);
    font-size: var(--fs-sm);
}

[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .wa-float { right: auto; left: 1.15rem; }
[dir="rtl"] .nav-links { direction: rtl; }
[dir="rtl"] .transfer-table th,
[dir="rtl"] .transfer-table td { text-align: right; }

@media (max-width: 980px) {
    .nav-toggle { display: grid; place-items: center; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0.8rem 5% 1.1rem;
        gap: 0.2rem;
        border-bottom: 1px solid rgba(20, 32, 40, 0.08);
        box-shadow: var(--shadow);
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 0.85rem 0.2rem; font-size: 1rem; }
    .btn-nav-desktop { display: none; }
    .tours-grid,
    .why-grid,
    .related,
    .footer-grid,
    .trust-bar { grid-template-columns: 1fr 1fr; }
    .feature-split,
    .contact-block,
    .combo { grid-template-columns: 1fr; }
    .sticky-cta { display: flex; }
    .wa-float { bottom: 5.6rem; }
    footer { padding-bottom: 6.6rem; }
}
@media (max-width: 640px) {
    .tours-grid,
    .why-grid,
    .related,
    .trust-bar,
    .footer-grid,
    .includes-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    .gallery-grid figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-grid figure:nth-child(1),
    .gallery-grid figure:nth-child(6) { grid-column: span 2; grid-row: span 2; }
    .feature-visual, .feature-visual img { min-height: 340px; }
    .hero-content { padding-bottom: 3rem; }
    .lightbox { padding: 4rem 0.75rem 4.5rem; }
    .lightbox-hint { display: none; }
    html { font-size: 16px; }
    .gallery-caption { opacity: 1; }
}
