/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #fff;
    line-height: 1.6;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,170,70,0.08), transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(70,120,255,0.08), transparent 30%),
        linear-gradient(180deg, #070b14, #0b0f19 60%, #070b14);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ===== MAIN ===== */
.site-main {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.site-main::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,200,120,0.05), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(120,150,255,0.05), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,12,18,0.78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 70px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.site-nav a {
    white-space: nowrap;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    transition: color .2s ease;
}

.site-nav a:hover {
    color: #fff;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9f5a, #ff5f6d);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(255,95,109,0.18);
}

.burger-btn {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.burger-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background:
        linear-gradient(180deg, rgba(8,10,16,0.94), rgba(8,10,16,0.98));
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px 30px;
}

.mobile-menu-inner a {
    font-size: 22px;
    line-height: 1.25;
    color: #fff;
}

.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff9f5a, #ff5f6d);
    color: #fff;
    font-weight: 700;
}

html.menu-open,
body.menu-open {
    overflow: hidden !important;
    height: 100% !important;
}

body.menu-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

/* ===== HERO (INDEX) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background:
        linear-gradient(rgba(5, 7, 12, 0.42), rgba(5, 7, 12, 0.64)),
        url('/assets/images/hero/hero-main.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(255,184,77,0.12), transparent 28%),
        radial-gradient(circle at 85% 30%, rgba(92,126,255,0.08), transparent 30%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.hero h1 {
    max-width: 860px;
    margin: 0 0 16px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 3px 20px rgba(0,0,0,0.18);
}

.hero p {
    max-width: 760px;
    margin: 0;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
    text-shadow: 0 2px 12px rgba(0,0,0,0.16);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-btn,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.hero-btn {
    background: linear-gradient(135deg, #ff9f5a, #ff5f6d);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255,95,109,0.20);
}

.hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(255,95,109,0.26);
}

.hero-btn-secondary {
    color: #fff;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.08);
}

/* ===== SECTIONS ===== */
.section {
    padding: 76px 0;
}

.section-dark {
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-title-wrap {
    max-width: 780px;
    margin-bottom: 26px;
}

.section-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255,190,92,0.9);
}

.section-title {
    margin: 0 0 10px;
    font-size: clamp(32px, 5vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.74);
}

/* ===== DESTINATIONS ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.destination-card {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(0,0,0,0.22);
    border-color: rgba(255,255,255,0.12);
}

.destination-card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    background: rgba(255,255,255,0.04);
}

.destination-card-content {
    padding: 18px 18px 20px;
}

.destination-card-country {
    margin-bottom: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.58);
}

.destination-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    color: #fff;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 24px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
}

.feature-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.78;
    color: rgba(255,255,255,0.74);
}

/* ===== CTA ===== */
.cta-box {
    padding: 40px 38px;
    border-radius: 28px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(255,184,77,0.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    color: #fff;
}

.cta-box p {
    max-width: 720px;
    margin: 0 auto 22px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.74);
}

/* ===== INNER PAGES ===== */
.page-hero {
    padding: 60px 0 30px;
}

.breadcrumbs {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.58);
}

.breadcrumbs a {
    color: rgba(255,255,255,0.82);
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
}

.page-content {
    padding: 40px 0 80px;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.content-box h2 {
    margin: 30px 0 14px;
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
}

.content-box h3 {
    margin: 22px 0 10px;
    font-size: 21px;
    line-height: 1.3;
    color: #fff;
}

.content-box p,
.content-box li {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
}

.content-box ul,
.content-box ol {
    margin: 0 0 18px 20px;
}

.content-box strong {
    color: #fff;
}

.content-box hr {
    border: 0;
    height: 1px;
    margin: 28px 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.note-box {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,190,92,0.22);
    background: rgba(255,190,92,0.07);
    color: rgba(255,255,255,0.9);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
}

.contact-form textarea {
    grid-column: 1 / -1;
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    padding: 14px 24px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #ff9f5a, #ff5f6d);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.legal-links-inline {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.64);
}

/* ===== FOOTER ===== */
.site-footer {
    margin-top: 60px;
    padding: 40px 0;
    background: rgba(10,12,18,0.8);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    max-width: 260px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    color: rgba(255,255,255,0.74);
    line-height: 1.7;
}

.footer-col h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links span {
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    color: rgba(255,255,255,0.62);
}ƒ

.footer-policy-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-policy-links a {
    color: rgba(255,255,255,0.68);
}
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: inline-flex;
    }
}
/* ===== TABLET ===== */
@media (max-width: 1100px) {
    .destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== MOBILE PREMIUM REDESIGN ===== */
@media (max-width: 768px) {
    :root {
        --mob-pad: 18px;
        --mob-radius: 20px;
    }

    html,
    body {
        overflow-x: hidden;
    }

    body {
        background:
            radial-gradient(circle at 20% 12%, rgba(255,170,70,0.10), transparent 26%),
            radial-gradient(circle at 80% 22%, rgba(70,120,255,0.10), transparent 32%),
            linear-gradient(180deg, #060a12 0%, #09101d 54%, #060a12 100%);
    }

    .container {
        max-width: 100%;
        padding-left: var(--mob-pad);
        padding-right: var(--mob-pad);
    }

    /* ===== HEADER ===== */
    .site-header {
        background: rgba(8, 10, 16, 0.72);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header-inner {
        min-height: 64px;
        gap: 12px;
    }

    .site-logo img {
        height: 28px;
        width: auto;
    }

    .site-nav,
    .header-btn {
        display: none;
    }

    .burger-btn {
        display: inline-flex;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .burger-btn span {
        width: 18px;
    }


/* primary */
.hero-btn {
    box-shadow: 0 12px 24px rgba(255,95,109,0.22);
}

/* secondary */
.hero-btn-secondary {
    background: rgba(15, 24, 40, 0.34);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}
    /* ===== SECTIONS ===== */
    .section {
        padding: 34px 0;
    }

    .section-title-wrap {
        margin-bottom: 16px;
    }

    .section-label {
        margin-bottom: 8px;
        font-size: 11px;
        letter-spacing: .14em;
    }

    .section-title {
        margin-bottom: 10px;
        font-size: 34px;
        line-height: 1.02;
        letter-spacing: -0.035em;
    }

    .section-text {
        font-size: 16px;
        line-height: 1.58;
        color: rgba(255,255,255,0.78);
    }

    /* ===== DESTINATIONS -> horizontal swipe ===== */
    .destinations-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 82%;
        gap: 14px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        margin-right: calc(var(--mob-pad) * -1);
        padding-right: var(--mob-pad);
        scrollbar-width: none;
    }

    .destinations-grid::-webkit-scrollbar {
        display: none;
    }

    .destination-card {
        scroll-snap-align: start;
        border-radius: 22px;
        overflow: hidden;
        background: rgba(255,255,255,0.045);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    }

    .destination-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .destination-card-content {
        padding: 16px 16px 18px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.00), rgba(255,255,255,0.00)),
            rgba(12, 16, 26, 0.82);
        backdrop-filter: blur(8px);
    }

    .destination-card-country {
        margin-bottom: 4px;
        font-size: 12px;
        color: rgba(255,255,255,0.58);
    }

    .destination-card h3 {
        font-size: 24px;
        line-height: 1.08;
    }

    /* ===== FEATURES ===== */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        padding: 18px 16px;
        border-radius: 18px;
        background: rgba(255,255,255,0.05);
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.62;
    }

    /* ===== CTA ===== */
    .cta-box {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .cta-box h2 {
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 1.02;
        letter-spacing: -0.03em;
    }

    .cta-box p {
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-box .hero-btn {
        width: 100%;
    }

    /* ===== INNER PAGES ===== */
    .page-hero {
        padding: 30px 0 18px;
    }

    .page-hero h1 {
        font-size: 36px;
        line-height: 1.02;
        letter-spacing: -0.03em;
    }

    .page-hero p {
        font-size: 16px;
        line-height: 1.58;
    }

    .content-box {
        max-width: 100%;
        padding: 20px 16px;
        border-radius: 18px;
    }

    .content-box h2 {
        font-size: 24px;
        line-height: 1.08;
    }

    .content-box h3 {
        font-size: 19px;
    }

    .content-box p,
    .content-box li {
        font-size: 15px;
        line-height: 1.62;
    }

    .info-grid,
    .contact-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .info-card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 14px;
        border-radius: 14px;
    }

    /* ===== FOOTER ===== */
    .site-footer {
        margin-top: 34px;
        padding: 28px 0 110px;
    }

    .footer-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-col {
        max-width: 100%;
    }

    .footer-col:first-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .footer-logo img {
        height: 30px;
    }

    .footer-text {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.58;
        color: rgba(255,255,255,0.76);
    }

    .footer-col h3 {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a,
    .footer-links span {
        font-size: 15px;
        line-height: 1.5;
    }

    .footer-bottom {
        margin-top: 18px;
        padding-top: 14px;
        gap: 10px;
        flex-direction: column;
    }

    .footer-bottom span,
    .footer-policy-links a {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-policy-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    /* ===== sticky bottom CTA ===== */
    .mobile-sticky-cta {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: max(14px, env(safe-area-inset-bottom));
        z-index: 998;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        border-radius: 18px;
        background: linear-gradient(135deg, #ff9f5a, #ff5f6d);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        box-shadow: 0 16px 34px rgba(255,95,109,0.28);
        backdrop-filter: blur(10px);
    }
}
/* ===== FINAL MOBILE HERO (CLEAN PREMIUM) ===== */
@media (max-width: 768px) {

    .hero {
        position: relative;
        min-height: 82vh;
        display: flex;
        align-items: flex-end;
        padding: 90px 20px 30px;

        background:
            linear-gradient(
                180deg,
                rgba(5,7,12,0.10) 0%,
                rgba(5,7,12,0.25) 40%,
                rgba(5,7,12,0.70) 80%,
                rgba(5,7,12,0.90) 100%
            ),
            url('/assets/images/hero/hero-main.jpg') center/cover no-repeat;
    }

    .hero-content {
        width: 100%;
        max-width: 420px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: -0.03em;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5;
        color: rgba(255,255,255,0.85);
        margin-bottom: 16px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        height: 50px;
        border-radius: 16px;
        font-size: 15px;
        font-weight: 600;
        background: linear-gradient(135deg,#ff9f5a,#ff5f6d);
        box-shadow: 0 10px 20px rgba(255,95,109,0.25);
    }

    .hero-btn-secondary {
        height: 50px;
        border-radius: 16px;
        font-size: 15px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(6px);
    }

}
/* ===== FOOTER ACCORDION MOBILE ===== */
.footer-col {
    display: block;
}

.footer-accordion {
    display: none;
}

@media (max-width: 768px) {
    .footer-inner {
        display: block;
    }

    .footer-brand {
        margin-bottom: 18px;
    }

    .footer-accordion {
        display: block;
        margin-top: 10px;
    }

    .footer-col:not(.footer-brand) {
        display: none;
    }

    .footer-accordion-item {
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-accordion-item:last-child {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-accordion-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 16px 0;
        background: transparent;
        border: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        text-align: left;
        cursor: pointer;
    }

    .footer-accordion-icon {
        font-size: 24px;
        line-height: 1;
        color: rgba(255,255,255,0.75);
        transition: transform .2s ease;
    }

    .footer-accordion-item.is-open .footer-accordion-icon {
        transform: rotate(45deg);
    }

    .footer-accordion-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }

    .footer-accordion-panel .footer-links {
        padding: 0 0 14px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-accordion-panel .footer-links a,
    .footer-accordion-panel .footer-links span {
        font-size: 16px;
        line-height: 1.55;
        color: rgba(255,255,255,0.82);
    }
}
/* ===== FORCE DESKTOP FOOTER FIX ===== */
@media (min-width: 769px) {

    .footer-accordion {
        display: none !important;
    }

    .footer-col {
        display: block !important;
    }

    .footer-inner {
        display: flex !important;
        justify-content: space-between;
        gap: 40px;
    }
}
/* ===== MOBILE SEARCH REDESIGN ===== */
.search-mobile-page {
    padding: 20px 0 40px;
}

.search-mobile-hero {
    margin-bottom: 18px;
}

.search-mobile-eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,190,92,0.88);
}

.search-mobile-hero h1 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #fff;
}

.search-mobile-hero p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.76);
}

.search-mobile-card {
    padding: 16px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(255,184,77,0.10), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 36px rgba(0,0,0,0.22);
    backdrop-filter: blur(14px);
}

.search-mobile-form {
    display: grid;
    gap: 14px;
}

.search-mobile-form label,
.search-mobile-form .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}

.search-mobile-form input,
.search-mobile-form select,
.search-mobile-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    color: #111827;
    font-size: 17px;
    box-shadow: none;
    appearance: none;
    outline: none;
}

.search-mobile-form textarea {
    min-height: 110px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.search-mobile-form input::placeholder,
.search-mobile-form textarea::placeholder {
    color: rgba(17,24,39,0.38);
}

.search-mobile-form input:focus,
.search-mobile-form select:focus,
.search-mobile-form textarea:focus {
    border-color: rgba(255,159,90,0.75);
    box-shadow: 0 0 0 4px rgba(255,159,90,0.12);
}

.search-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.search-mobile-submit,
.search-mobile-reset {
    min-height: 52px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.search-mobile-submit {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #ff9f5a, #ff5f6d);
    box-shadow: 0 14px 28px rgba(255,95,109,0.24);
}

.search-mobile-reset {
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    background: rgba(255,255,255,0.04);
}

@media (max-width: 768px) {
    .search-mobile-page .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-mobile-page {
        padding-top: 16px;
    }

    .search-mobile-hero h1 {
        font-size: 24px;
    }

    .search-mobile-card {
        padding: 14px;
        border-radius: 20px;
    }

    .search-mobile-form {
        gap: 12px;
    }

    .search-mobile-form input,
    .search-mobile-form select,
    .search-mobile-form textarea {
        min-height: 52px;
        border-radius: 16px;
        font-size: 16px;
    }

    .search-mobile-actions {
        position: sticky;
        bottom: 10px;
        padding-top: 6px;
        background: linear-gradient(180deg, rgba(10,12,18,0), rgba(10,12,18,0.88) 35%);
    }
}
/* ===== HOT TOURS PAGE ===== */
.hot-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.hot-tours-grid .destination-card {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.hot-tours-grid .destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.24);
}

.hot-tours-grid .destination-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.hot-tours-grid .destination-card-content {
    padding: 18px 18px 20px;
}

.hot-tours-grid .destination-card-country {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #d8b36a;
}

.hot-tours-grid .destination-card h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.08;
    color: #fff;
}

.hot-tours-grid .destination-card p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
}

.hot-tours-grid .destination-card p:last-child {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

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

@media (max-width: 768px) {
    .hot-tours-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hot-tours-grid .destination-card {
        border-radius: 20px;
    }

    .hot-tours-grid .destination-card img {
        height: 220px;
    }

    .hot-tours-grid .destination-card-content {
        padding: 16px;
    }

    .hot-tours-grid .destination-card h3 {
        font-size: 22px;
    }

    .hot-tours-grid .destination-card p:last-child {
        font-size: 21px;
    }
}
/* ===== FINAL MOBILE MENU + DESTINATIONS CAROUSEL FIX ===== */

html.menu-open,
body.menu-open {
    overflow: hidden !important;
    height: 100% !important;
}

body.menu-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8,10,16,0.96);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .destinations-grid {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 82% !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 6px;
        padding-right: 18px;
    }

    .destinations-grid::-webkit-scrollbar {
        display: none;
    }

    .destination-card {
        width: 100% !important;
        min-width: 0 !important;
        scroll-snap-align: start;
        border-radius: 20px;
        overflow: hidden;
    }

    .destination-card img {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
        display: block;
    }

    .destination-card-content {
        padding: 14px 14px 16px;
    }

    .destination-card h3 {
        font-size: 20px;
        line-height: 1.1;
    }
}
/* ===== FIX BOOKING FORM UI ===== */

.booking-form input,
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="date"] {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 16px;
}

.booking-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.booking-form input:focus {
    outline: none;
    border-color: #ff7f73;
    box-shadow: 0 0 0 2px rgba(255,127,115,0.2);
}

/* чекбокс */
.booking-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

/* строка согласия */
.booking-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* кнопки */
.add-tourist-btn,
.submit-btn {
    display: inline-block;
    width: auto;
    background: linear-gradient(135deg, #ff9f5a, #ff5f6d);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
}

/* турист блок */
.tourist-block {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 16px;
}

/* отступы */
.form-row {
    margin-bottom: 14px;
}
.tourist-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.tourist-block-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.remove-tourist-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.remove-tourist-btn:hover {
    background: rgba(255,127,115,0.16);
    border-color: rgba(255,127,115,0.35);
}

@media (max-width: 768px) {
    .tourist-block-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .remove-tourist-btn {
        width: 100%;
    }
}
/* =========================
   HEADER: desktop static / mobile sticky
   ========================= */

.site-header{
    position: static;
    top: auto;
    z-index: 1000;
    background: #0b0f1a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .header-inner{
    min-height: 84px;
}

.site-main{
    position: relative;
    z-index: 1;
}

.mobile-menu{
    z-index: 1001;
}

/* На мобильной версии шапка закреплена */
@media (max-width: 900px){
    .site-header{
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(11, 15, 26, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .site-header .header-inner{
        min-height: 72px;
    }
}
/* =========================
   BOOKING FORM — PREMIUM DARK
   ========================= */

.booking-form{
    background: linear-gradient(145deg, #0d1526, #0a0f1c);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Заголовки */
.booking-form h2{
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
}

/* Поля */
.form-row input{
    width:100%;
    padding:14px 16px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color:#fff;
    font-size:14px;
    outline:none;
    transition:.2s;
}

/* placeholder */
.form-row input::placeholder{
    color:#7f8aa3;
}

/* focus */
.form-row input:focus{
    border-color:#ffcf66;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 1px rgba(255,207,102,0.3);
}

/* блок туриста */
.tourist-block{
    background: rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.06);
    padding:18px;
    border-radius:16px;
}

/* заголовок туриста */
.tourist-block-title{
    color:#fff;
    font-size:16px;
}

/* кнопка удалить */
.remove-tourist-btn{
    background:transparent;
    color:#ff7f73;
    border:1px solid rgba(255,255,255,0.15);
    padding:6px 12px;
    border-radius:20px;
    cursor:pointer;
}

/* кнопка добавить */
.add-tourist-btn{
    background:transparent;
    border:1px dashed rgba(255,255,255,0.2);
    color:#ffcf66;
    padding:12px;
    width:100%;
    border-radius:14px;
    cursor:pointer;
    margin-bottom:18px;
}

/* hover */
.add-tourist-btn:hover{
    background: rgba(255,207,102,0.1);
}

/* блок согласий */
.consent-box{
    margin-top:26px;
    margin-bottom:20px;
    padding:18px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    background: rgba(255,255,255,.02);
}

.consent-title{
    color:#fff;
}

/* текст согласий */
.consent-row{
    color:#b7c0d4;
}

/* чекбоксы */
.consent-row input[type="checkbox"]{
    accent-color:#ffcf66;
}

/* ссылки */
.consent-row a{
    color:#ffcf66;
}

/* кнопка отправки */
.submit-btn{
    width:100%;
    background: linear-gradient(135deg, #ff7f73, #ffcf66);
    color:#111;
    font-weight:800;
    border:none;
    padding:16px;
    border-radius:40px;
    cursor:pointer;
    font-size:16px;
    transition:.2s;
}

.submit-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(255,127,115,0.35);
}