:root {
    --blue: #0776a8;
    --deep: #073b5c;
    --sea: #e9f8ff;
    --sand: #fff8ee;
    --text: #123142;
    --muted: #607586;
    --line: #dcecf4;
    --green: #19a463;
}

/* =========================================================
   BASE
========================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f6fcff, #fff);
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    padding: 14px 6vw;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    line-height: 1;
}

.brand img {
    width: 54px;
    height: 54px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    font-weight: 700;
    color: var(--deep);
}

.lang {
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.menu {
    display: none;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(7, 118, 168, .22);
    border: 0;
}

.btn.ghost {
    background: #fff;
    color: var(--deep) !important;
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn.small {
    padding: 10px 14px;
}

.btn.tiny {
    padding: 9px 12px;
    font-size: 14px;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
    min-height: 72vh;
    padding: 70px 6vw;
    background: radial-gradient(circle at 80% 15%, #bcecff 0, #f7fcff 36%, transparent 70%);
}

.hero h1,
.pageHero h1,
.tourHero h1 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: .95;
    margin: 10px 0;
    color: var(--deep);
}

.hero p,
.pageHero p,
.tourHero p {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.65;
}

.eyebrow {
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--blue);
    font-size: 13px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.heroCard {
    padding: 20px;
    border-radius: 38px;
    background: linear-gradient(145deg, #fff, #dff6ff);
    box-shadow: 0 30px 80px rgba(7, 59, 92, .15);
}
/* =========================================================
   TOUR CARD CONSISTENCY
========================================================= */

.card {
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 28px 28px 0 0;
}

.cardBody {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cardActions {
    margin-top: auto;
}

@media (max-width: 768px) {
    .card img {
        height: 220px;
    }
}
.heroCard img,
.tourHero img,
.article img {
    width: 100%;
    display: block;
    border-radius: 28px;
}

/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    max-width: 1180px;
    margin: -28px auto 42px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(7, 118, 168, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 60, 90, 0.10);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    position: relative;
    z-index: 5;
}

.trust-item {
    background: #f5f9fe;
    border: 1px solid rgba(7, 118, 168, 0.10);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(7, 118, 168, 0.12);
    border-color: rgba(7, 118, 168, 0.28);
}

.trust-item span {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex: 0 0 auto;
}

.trust-item p {
    margin: 0;
    color: var(--deep);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.25;
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 70px 6vw;
}

.section h2,
.split h2 {
    font-size: clamp(30px, 4vw, 54px);
    margin: 8px 0 24px;
    color: var(--deep);
}

/* =========================================================
   TOUR CARDS
========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(18, 49, 66, .08);
}

.cardBody {
    padding: 22px;
}

.card h3 {
    font-size: 24px;
    margin: 10px 0;
}

.card p {
    color: var(--muted);
    line-height: 1.55;
}

.pill {
    display: inline-block;
    background: var(--sea);
    color: var(--blue);
    font-weight: 900;
    padding: 7px 10px;
    border-radius: 999px;
}

.meta {
    display: flex;
    gap: 8px;
    margin: 12px 0;
}

.meta span {
    background: #f4fbff;
    border: 1px solid var(--line);
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
}

.price {
    font-size: 18px;
    font-weight: 900;
    color: var(--deep);
    margin: 15px 0;
}

.cardActions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* =========================================================
   SPLIT / BOOKING SECTION
========================================================= */

.split {
    margin: 40px 6vw;
    padding: 50px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--deep), #0d89bb);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.split h2,
.split p {
    color: #fff;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.features span {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 18px;
    border-radius: 18px;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}

/* =========================================================
   GALLERY
========================================================= */

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.galleryGrid img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #fff;
}

/* =========================================================
   PAGE / TOUR HERO
========================================================= */

.pageHero {
    padding: 70px 6vw 40px;
    background: var(--sea);
}

.tourHero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
    padding: 70px 6vw;
    background: var(--sea);
}

/* =========================================================
   DETAILS / PANELS
========================================================= */

.detailsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 60px 6vw;
}

.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 16px 44px rgba(18, 49, 66, .07);
}

.panel .big {
    font-size: 26px;
    font-weight: 900;
    color: var(--blue);
}

/* =========================================================
   ARTICLE
========================================================= */

.article {
    max-width: 900px;
    margin: auto;
    padding: 70px 6vw;
}

.article h1 {
    font-size: 48px;
    color: var(--deep);
}

.lead {
    font-size: 20px;
    color: var(--muted);
}

/* =========================================================
   CONTACT
========================================================= */

.contactPanel {
    margin: 50px 6vw;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    background: var(--deep);
    color: #fff;
    padding: 44px 6vw;
    margin-top: 40px;
}

.footer a {
    color: #fff;
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.float-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
}

.float-wa a {
    background: var(--green);
    color: #fff;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(25, 164, 99, .32);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        margin: 22px 16px 36px;
    }
}

@media (max-width: 900px) {
    .hero,
    .tourHero,
    .split,
    .detailsGrid,
    .footer {
        grid-template-columns: 1fr;
    }

    .cards,
    .galleryGrid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
    }

    .nav.open {
        display: flex;
    }

    .menu {
        display: block;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 10px;
    }

    .btn.small {
        display: none;
    }

    .hero {
        padding-top: 40px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .trust-bar {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .trust-item {
        min-height: 52px;
    }
}
/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    padding: 70px 6vw;
    background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.faq-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.faq-head h2 {
    font-size: clamp(30px, 4vw, 52px);
    margin: 8px 0 14px;
    color: var(--deep);
}

.faq-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.faq-list {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-list details {
    background: #ffffff;
    border: 1px solid rgba(7, 118, 168, 0.14);
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 14px 35px rgba(18, 49, 66, 0.06);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 22px;
    font-weight: 900;
    color: var(--deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--sea);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.faq-list details[open] summary::after {
    content: "−";
    background: var(--blue);
    color: #ffffff;
}

.faq-list details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    line-height: 1.65;
}
/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    padding: 80px 6vw;
    background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.why-head {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.why-head h2 {
    font-size: clamp(30px, 4vw, 54px);
    margin: 8px 0 14px;
    color: var(--deep);
}

.why-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.why-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(7, 118, 168, 0.14);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(18, 49, 66, 0.07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(7, 118, 168, 0.12);
    border-color: rgba(7, 118, 168, 0.28);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--sea);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
}

.why-card h3 {
    margin: 0 0 10px;
    color: var(--deep);
    font-size: 22px;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .why-section {
        padding: 60px 6vw;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 24px;
    }
}
/* =========================================================
   SPACING TIGHTENING
========================================================= */

.hero {
    min-height: auto;
    padding: 42px 6vw 48px;
}

.section {
    padding: 46px 6vw;
}

.pageHero {
    padding: 46px 6vw 28px;
}

.tourHero {
    padding: 46px 6vw;
}

.split {
    margin: 24px 6vw;
    padding: 38px;
}

.why-section,
.faq-section {
    padding: 52px 6vw;
}

.trust-bar {
    margin: -20px auto 26px;
}

.section h2,
.split h2,
.why-head h2,
.faq-head h2 {
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .hero {
        padding: 32px 6vw 36px;
    }

    .section,
    .why-section,
    .faq-section {
        padding: 42px 6vw;
    }

    .split {
        margin: 20px 6vw;
        padding: 30px;
    }
}
/* =========================================================
   TOUR CARD BUTTONS
========================================================= */

.cardActions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
}

.cardActions a {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    font-weight: 900;
    text-align: center;
}

.cardActions .btn,
.cardActions .btn.tiny {
    padding: 14px 18px;
    font-size: 15px;
}

.cardActions a:first-child {
    background: #ffffff;
    color: var(--blue) !important;
    border: 2px solid var(--blue);
    box-shadow: none;
}

.cardActions a:last-child {
    background: var(--blue);
    color: #ffffff !important;
    border: 2px solid var(--blue);
    box-shadow: 0 12px 28px rgba(7, 118, 168, .22);
}

.cardActions a:hover {
    transform: translateY(-2px);
}
/* =========================================================
   TOUR SINGLE PAGE IMPROVEMENTS
========================================================= */

.tourHeroCompact {
    padding: 44px 6vw 46px;
    min-height: auto;
}

.tourHeroCompact h1 {
    margin-bottom: 16px;
}

.tourHeroCompact p {
    margin-bottom: 18px;
}

.tourHeroCompact img {
    height: 430px;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
    box-shadow: 0 24px 65px rgba(7, 59, 92, .14);
}

.tourQuickInfo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 24px;
}

.tourQuickInfo span {
    background: #ffffff;
    color: var(--deep);
    border: 1px solid rgba(7, 118, 168, .16);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 26px rgba(18, 49, 66, .06);
}

.tourHeroBtn {
    min-height: 54px;
    padding: 15px 26px;
    font-size: 16px;
    border: 2px solid var(--blue);
}

.tourDetailsGrid {
    padding: 42px 6vw 58px;
}

.tourPanel {
    position: relative;
    overflow: hidden;
}

.panelIcon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--sea);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
}

.tourPanel h2 {
    margin: 0 0 16px;
    color: var(--deep);
}

.tourList {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.75;
}

.tourList li {
    margin-bottom: 8px;
}

.pricePanel .big {
    font-size: 28px;
    margin: 0 0 12px;
}

.pricePanel p {
    color: var(--muted);
    line-height: 1.55;
}

.priceBookBtn {
    width: 100%;
    margin-top: 18px;
    min-height: 52px;
    border-radius: 16px;
    border: 2px solid var(--blue);
}

@media (max-width: 900px) {
    .tourHeroCompact {
        padding: 34px 6vw 36px;
    }

    .tourHeroCompact img {
        height: 300px;
    }

    .tourQuickInfo {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tourQuickInfo span {
        text-align: center;
    }

    .tourDetailsGrid {
        padding: 34px 6vw 44px;
    }
}
/* =========================================================
   TOUR CARD BUTTONS FIX
========================================================= */

.cardActions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
}

.cardActions a,
.cardActions .btn,
.cardActions .btn.tiny {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}

.cardActions a:first-child {
    background: #ffffff;
    color: var(--blue) !important;
    border: 2px solid var(--blue);
    box-shadow: none;
}

.cardActions a:last-child {
    background: var(--blue);
    color: #ffffff !important;
    border: 2px solid var(--blue);
    box-shadow: 0 12px 28px rgba(7, 118, 168, .22);
}

.cardActions a:hover {
    transform: translateY(-2px);
}
/* =========================================================
   TOUR FILTER PAGE
========================================================= */

.tour-filter-section {
    padding: 22px 6vw 8px;
    background: #ffffff;
}

.tour-filter {
    max-width: 760px;
    margin: 0 auto;
    padding: 10px;
    background: #f5fbff;
    border: 1px solid rgba(7, 118, 168, .14);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 32px rgba(18, 49, 66, .06);
}

.tour-filter-btn {
    border: 0;
    cursor: pointer;
    padding: 13px 22px;
    border-radius: 999px;
    background: transparent;
    color: var(--deep);
    font-weight: 900;
    transition: .2s ease;
}

.tour-filter-btn.active,
.tour-filter-btn:hover {
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(7, 118, 168, .22);
}

.section-head-row {
    max-width: 900px;
    margin: 0 0 28px;
}

.section-head-row h2 {
    font-size: clamp(28px, 4vw, 46px);
    color: var(--deep);
    margin: 8px 0 12px;
}

.section-head-row p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 620px) {
    .tour-filter {
        border-radius: 22px;
        flex-direction: column;
    }

    .tour-filter-btn {
        width: 100%;
    }
}
/* =========================================================
   TOUR CARD FINAL DESIGN
========================================================= */

.tourCard {
    display: flex;
    flex-direction: column;
}

.tourCard img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 28px 28px 0 0;
}

.tourCard .cardBody {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-meta {
    flex-wrap: wrap;
}

.tour-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 800;
}

.tour-price {
    display: grid;
    gap: 4px;
}

.tour-price span {
    display: block;
}

.tour-price small {
    color: var(--muted);
    font-weight: 700;
}

.cardActions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.tourBtn {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.tourBtnOutline {
    background: #ffffff;
    color: var(--blue) !important;
    border: 2px solid var(--blue);
    box-shadow: none;
}

.tourBtnPrimary {
    background: var(--blue);
    color: #ffffff !important;
    border: 2px solid var(--blue);
    box-shadow: 0 12px 28px rgba(7, 118, 168, .22);
}

.tourBtnOutline:hover {
    background: var(--sea);
}

.tourBtnPrimary:hover {
    background: var(--deep);
    border-color: var(--deep);
}

.tourBtn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tourCard img {
        height: 220px;
    }

    .tourBtn {
        min-height: 54px;
        font-size: 16px;
    }
}
.hero-since {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: none;
    line-height: 1.2;
}
/* =========================================================
   MOBILE LANGUAGE SWITCH
========================================================= */

.mobile-lang-switch {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-lang-switch a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--deep);
    font-weight: 900;
    line-height: 1;
}

.mobile-lang-switch span {
    font-size: 24px;
}

.mobile-lang-switch small {
    font-size: 13px;
    font-family: Georgia, serif;
}

.desktop-lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================================
   COMPACT TRUST STRIP
========================================================= */

.quick-trust {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 18px 6vw 20px;
}

.quick-trust-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
}

.quick-trust-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #5b6774;
    font-weight: 800;
    font-size: 16px;
    white-space: nowrap;
}

.quick-trust-item span {
    font-size: 25px;
    line-height: 1;
}

.quick-trust-item p {
    margin: 0;
    line-height: 1.2;
}

/* =========================================================
   MOBILE HEADER + TRUST STRIP
========================================================= */

@media (max-width: 900px) {
    .topbar {
        gap: 12px;
        padding: 14px 6vw;
    }

    .brand {
        flex: 1;
        min-width: 0;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .brand span {
        font-size: 20px;
        line-height: 1.05;
        white-space: nowrap;
    }

    .desktop-lang-switch {
        display: none;
    }

    .mobile-lang-switch {
        display: flex;
        margin-left: auto;
    }

    .menu {
        width: 54px;
        height: 54px;
        font-size: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .quick-trust {
        padding: 18px 20px 22px;
    }

    .quick-trust-inner {
        max-width: 520px;
        gap: 18px 22px;
    }

    .quick-trust-item {
        width: calc(50% - 14px);
        font-size: 15px;
        justify-content: flex-start;
    }

    .quick-trust-item span {
        font-size: 24px;
        width: 28px;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand span {
        font-size: 18px;
    }

    .mobile-lang-switch {
        gap: 8px;
    }

    .mobile-lang-switch span {
        font-size: 22px;
    }

    .mobile-lang-switch small {
        font-size: 12px;
    }

    .menu {
        width: 50px;
        height: 50px;
    }

    .quick-trust-inner {
        justify-content: flex-start;
    }

    .quick-trust-item {
        width: calc(50% - 12px);
        font-size: 14px;
    }
}
.hero {
    min-height: auto;
    padding: 42px 6vw 36px;
}

@media (max-width: 900px) {
    .hero {
        padding: 28px 6vw 24px;
    }
}
.desktop-lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-flag img {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}

.mobile-lang-switch {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-lang-switch a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--deep);
    font-weight: 900;
    line-height: 1;
}

.mobile-lang-switch span {
    font-size: 24px;
}

.mobile-lang-switch small {
    font-size: 12px;
}

@media (max-width: 900px) {
    .desktop-lang-switch {
        display: none;
    }

    .mobile-lang-switch {
        display: flex;
        margin-left: auto;
    }
}
/* =========================================================
   HERO COMPACT + INLINE TRUST
========================================================= */

.hero-compact {
    min-height: auto;
    padding: 34px 6vw 34px;
    align-items: center;
}

.hero-compact .heroText {
    max-width: 720px;
}

.hero-compact h1 {
    margin-top: 6px;
    margin-bottom: 14px;
}

.hero-compact .heroText > p:not(.eyebrow):not(.hero-since) {
    margin-top: 0;
    margin-bottom: 18px;
}

.hero-compact .actions {
    margin-top: 20px;
    margin-bottom: 22px;
}

.hero-trust-inline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 680px;
}

.hero-trust-inline div {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(7, 118, 168, .14);
    border-radius: 15px;
    padding: 10px 12px;
    box-shadow: 0 10px 26px rgba(18, 49, 66, .055);
}

.hero-trust-inline span {
    font-size: 22px;
    line-height: 1;
    width: 28px;
    text-align: center;
    flex: 0 0 auto;
}

.hero-trust-inline p {
    margin: 0;
    color: var(--deep);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.hero-compact .heroCard {
    padding: 16px;
    border-radius: 32px;
}

.hero-compact .heroCard img {
    border-radius: 24px;
}

/* dodatno smanjivanje praznog prostora ispod hero dijela */
.hero-compact + .section,
.hero-compact + .quick-trust + .section {
    padding-top: 42px;
}

@media (max-width: 1100px) {
    .hero-trust-inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-compact {
        padding: 26px 6vw 28px;
    }

    .hero-trust-inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .hero-trust-inline div {
        padding: 10px;
    }
}

@media (max-width: 520px) {
    .hero-trust-inline {
        grid-template-columns: 1fr;
    }

    .hero-trust-inline div {
        justify-content: flex-start;
    }
}
/* =========================================================
   MOBILE HERO CENTERING FIX
========================================================= */

@media (max-width: 900px) {
    .hero-compact {
        text-align: center;
        justify-items: center;
    }

    .hero-compact .heroText {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .hero-compact .actions {
        justify-content: center;
    }

    .hero-trust-inline {
        width: 100%;
        margin: 0 auto;
        justify-content: center;
    }

    .hero-trust-inline div {
        justify-content: center;
        text-align: center;
    }

    .hero-trust-inline p {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .hero-trust-inline {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    .hero-trust-inline div {
        width: 100%;
        justify-content: center;
    }

    .heroCard {
        width: 100%;
    }
}
/* =========================================================
   COMPARE TOURS
========================================================= */

.compare-section {
    padding: 56px 6vw;
    background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.compare-head {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.compare-head h2 {
    font-size: clamp(30px, 4vw, 52px);
    margin: 8px 0 14px;
    color: var(--deep);
}

.compare-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.compare-table-wrap {
    max-width: 1180px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(7, 118, 168, .14);
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(18, 49, 66, .08);
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.compare-table th {
    background: var(--blue);
    color: #ffffff;
    text-align: left;
    padding: 16px 18px;
    font-size: 14px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.compare-table td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 15px;
    vertical-align: middle;
}

.compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.compare-table tbody tr:hover {
    background: #f5fbff;
}

.compare-table td strong {
    color: var(--deep);
}

.compare-table td a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--blue);
    border: 2px solid var(--blue);
    font-weight: 900;
    white-space: nowrap;
}

.compare-table td a:hover {
    background: var(--blue);
    color: #ffffff;
}

@media (max-width: 720px) {
    .compare-section {
        padding: 46px 6vw;
    }

    .compare-head {
        text-align: left;
        margin-bottom: 22px;
    }

    .compare-table-wrap {
        border-radius: 20px;
    }

    .compare-table th,
    .compare-table td {
        padding: 14px;
    }
}
/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 46px 6vw 56px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.final-cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.22), transparent 34%),
        linear-gradient(135deg, var(--deep), var(--blue));
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.4fr auto;
    align-items: center;
    gap: 28px;
    box-shadow: 0 26px 70px rgba(7, 59, 92, .18);
    overflow: hidden;
    position: relative;
}

.final-cta-inner::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-kicker {
    margin: 0 0 10px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.final-cta h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
}

.final-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.6;
}

.final-cta-actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    min-width: 230px;
}

.final-cta-btn {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
}

.final-cta-btn-primary {
    background: #ffffff;
    color: var(--blue) !important;
    border: 2px solid #ffffff;
    box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.final-cta-btn-secondary {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,.62);
}

.final-cta-btn-secondary:hover {
    background: rgba(255,255,255,.12);
}

/* Mobile */
@media (max-width: 760px) {
    .final-cta {
        padding: 38px 6vw 46px;
    }

    .final-cta-inner {
        padding: 34px 22px;
        border-radius: 28px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .final-cta p {
        margin: 0 auto;
        font-size: 16px;
    }

    .final-cta-actions {
        width: 100%;
        min-width: 0;
    }

    .final-cta-btn {
        width: 100%;
        min-height: 54px;
    }
}
/* =========================================================
   HOME HERO IMAGE FIX
========================================================= */

.heroCard img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {
    .heroCard img {
        aspect-ratio: 16 / 10;
        height: auto;
        max-height: 320px;
        object-fit: cover;
    }
}

@media (max-width: 520px) {
    .heroCard img {
        aspect-ratio: 4 / 3;
        height: auto;
        max-height: 260px;
        object-fit: cover;
    }
}
/* =========================================================
   ABOUT PAGE
========================================================= */

.aboutHero {
    padding-top: 46px;
}

.about-section {
    padding: 60px 6vw;
    background: #ffffff;
}

.about-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
}

.about-grid h2,
.about-head h2 {
    font-size: clamp(30px, 4vw, 52px);
    color: var(--deep);
    margin: 8px 0 18px;
    line-height: 1.08;
}

.about-grid p,
.about-head p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.about-points span {
    background: #f5fbff;
    border: 1px solid rgba(7, 118, 168, .14);
    border-radius: 16px;
    padding: 14px;
    font-weight: 800;
    color: var(--deep);
}

.about-photo-card {
    background: linear-gradient(145deg, #ffffff, #dff6ff);
    padding: 18px;
    border-radius: 34px;
    box-shadow: 0 24px 65px rgba(7, 59, 92, .12);
}

.about-photo-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 26px;
    display: block;
    background: var(--sea);
}

.about-timeline-section,
.about-gallery-section {
    padding: 60px 6vw;
    background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.about-head {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.about-timeline {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.timeline-card {
    background: #ffffff;
    border: 1px solid rgba(7, 118, 168, .14);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(18, 49, 66, .07);
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #ffffff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 900;
    margin-bottom: 16px;
}

.timeline-card h3 {
    margin: 0 0 10px;
    color: var(--deep);
    font-size: 22px;
}

.timeline-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.about-photo-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-photo-placeholder {
    min-height: 240px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.95), rgba(233,248,255,.95));
    border: 1px dashed rgba(7, 118, 168, .35);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--deep);
    text-align: center;
    padding: 24px;
}

.about-photo-placeholder span {
    font-size: 42px;
    margin-bottom: 12px;
}

.about-photo-placeholder p {
    margin: 0;
    font-weight: 900;
}

@media (max-width: 900px) {
    .about-grid,
    .about-timeline,
    .about-photo-grid {
        grid-template-columns: 1fr;
    }

    .about-section,
    .about-timeline-section,
    .about-gallery-section {
        padding: 46px 6vw;
    }

    .about-photo-card img {
        height: 300px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   HOME HERO AUTO SLIDER
========================================================= */

.heroSlider {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 420px;
}

.heroSlider .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 900ms ease, transform 1600ms ease;
    pointer-events: none;
    user-select: none;
}

.heroSlider .hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 900px) {
    .heroSlider {
        min-height: 300px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 520px) {
    .heroSlider {
        min-height: 240px;
        aspect-ratio: 4 / 3;
    }

    .heroSlider .hero-slide {
        border-radius: 20px;
    }
}
/* =========================================================
   ABOUT ARCHIVE GALLERY
========================================================= */

.about-archive-section {
    padding: 64px 6vw;
    background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.about-archive-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-archive-card {
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(7, 118, 168, .14);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(18, 49, 66, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.about-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(7, 118, 168, .13);
}

.about-archive-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #e9f8ff;
}

.about-archive-card figcaption {
    padding: 14px 16px;
    color: var(--deep);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.about-archive-card:nth-child(1),
.about-archive-card:nth-child(2) {
    grid-column: span 2;
}

.about-archive-card:nth-child(1) img,
.about-archive-card:nth-child(2) img {
    height: 300px;
}

@media (max-width: 1050px) {
    .about-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-archive-card:nth-child(1),
    .about-archive-card:nth-child(2) {
        grid-column: span 1;
    }

    .about-archive-card:nth-child(1) img,
    .about-archive-card:nth-child(2) img {
        height: 240px;
    }
}

@media (max-width: 620px) {
    .about-archive-section {
        padding: 46px 6vw;
    }

    .about-archive-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-archive-card img,
    .about-archive-card:nth-child(1) img,
    .about-archive-card:nth-child(2) img {
        height: 235px;
    }

    .about-archive-card figcaption {
        text-align: center;
    }
}