:root {
    --deep-navy: #132238;
    --deep-navy-dark: #0d1828;

    --thai-red: #d92d3a;
    --thai-red-hover: #bd202d;

    --gold: #e7ae48;

    --white: #ffffff;
    --cream: #fff9f3;

    --text-light: #d9e0e8;
    --text-muted: #9ba9ba;

    --border: rgba(255, 255, 255, 0.10);

    --container: 1240px;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--deep-navy);
    color: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;

    width: 100%;

    background: rgba(19, 34, 56, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* LOGO */

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    width: auto;
    height: 48px;
    max-width: 190px;
    object-fit: contain;
}


/* DESKTOP NAV */

.desktop-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 34px;
}

.desktop-nav a {
    position: relative;

    color: var(--white);

    font-size: 15px;
    font-weight: 600;

    transition: 0.25s ease;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* HEADER ACTION */

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 0 22px;

    background: var(--thai-red);
    color: var(--white);

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;

    box-shadow:
        0 10px 30px rgba(217, 45, 58, 0.20);
}

.btn-consult:hover {
    background: var(--thai-red-hover);

    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(217, 45, 58, 0.30);
}


/* =========================
   BURGER
========================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255,255,255,0.04);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--white);

    border-radius: 10px;

    transition: 0.25s ease;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    display: none;

    background: var(--deep-navy-dark);

    border-top: 1px solid var(--border);
}

.mobile-menu nav {
    width: min(calc(100% - 40px), var(--container));

    margin-inline: auto;

    padding: 14px 0 25px;
}

.mobile-menu a {
    display: block;

    padding: 15px 3px;

    color: var(--text-light);

    font-size: 15px;
    font-weight: 600;

    border-bottom: 1px solid var(--border);

    transition: 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu.active {
    display: block;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    margin-top: 80px;

    padding: 70px 0 34px;

    background: var(--deep-navy-dark);

    border-top: 1px solid var(--border);
}

.footer-inner {
    text-align: center;
}


/* FOOTER LOGO */

.footer-logo {
    display: inline-block;

    margin-bottom: 25px;
}

.footer-logo img {
    width: auto;
    height: 72px;
    max-width: 230px;
    object-fit: contain;
    margin-inline: auto;
}


/* SOCIAL TITLE */

.footer-social-title {
    margin-bottom: 18px;

    color: var(--white);

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
}


/* SOCIAL ICONS */

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 35px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.16);

    border-radius: 50%;

    color: var(--white);

    background: rgba(255,255,255,0.04);

    font-size: 16px;

    transition: 0.25s ease;
}

.footer-social a:hover {
    background: var(--thai-red);

    border-color: var(--thai-red);

    transform: translateY(-3px);
}


/* FOOTER MENU */

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 11px;

    margin-bottom: 22px;
}

.footer-menu a {
    color: var(--text-light);

    font-size: 14px;
    font-weight: 500;

    transition: 0.2s ease;
}

.footer-menu a:hover {
    color: var(--gold);
}

.footer-menu span {
    color: rgba(255,255,255,0.25);
}


/* COPYRIGHT */

.footer-copy {
    color: var(--text-muted);

    font-size: 13px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 74px;
        gap: 12px;
    }

    .site-logo img {
        height: 40px;
        max-width: 145px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-consult {
        min-height: 42px;

        padding: 0 15px;

        font-size: 13px;
    }

}


@media (max-width: 560px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        gap: 8px;
    }

    .site-logo img {
        height: 35px;
        max-width: 120px;
    }

    .btn-consult {
        padding: 0 13px;

        font-size: 12px;

        gap: 6px;
    }

    .btn-consult i {
        font-size: 14px;
    }

    .menu-toggle {
        width: 41px;
        height: 41px;
    }


    /* FOOTER */

    .site-footer {
        margin-top: 60px;

        padding-top: 55px;
    }

    .footer-logo img {
        height: 60px;
        max-width: 190px;
    }

    .footer-social {
        gap: 10px;

        margin-bottom: 30px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-menu {
        gap: 8px 10px;

        max-width: 400px;

        margin-inline: auto;
        margin-bottom: 22px;
    }

    .footer-menu span {
        display: none;
    }

    .footer-menu a {
        position: relative;

        padding-right: 10px;
    }

}

/* =========================
   GLOBAL SECTION
========================= */

.section-pad {
    padding: 105px 0;
}

.section-kicker {
    margin-bottom: 14px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 42px;
}

.section-heading h2,
.private-content h2,
.faq-heading h2 {
    max-width: 720px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.08;

    letter-spacing: -0.04em;
}

.section-heading h2 span,
.private-content h2 span,
.faq-heading h2 span {
    color: var(--gold);
}

.section-heading p,
.faq-heading p {
    max-width: 620px;

    margin-top: 17px;

    color: var(--text-muted);

    font-size: 16px;
}

.centered-heading {
    justify-content: center;
    text-align: center;
}

.centered-heading p {
    margin-inline: auto;
}

.section-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    color: var(--white);

    font-weight: 700;
    font-size: 14px;

    transition: 0.2s ease;
}

.section-link:hover {
    color: var(--gold);
}


/* =========================
   BUTTON
========================= */

.btn-primary,
.btn-secondary,
.btn-light {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 23px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.btn-primary {
    background: var(--thai-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--thai-red-hover);

    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.15);

    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}

.btn-light {
    background: var(--white);
    color: var(--deep-navy-dark);
}

.btn-light:hover {
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero-home {
    position: relative;

    padding: 75px 0 50px;

    overflow: hidden;
}

.hero-home::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(217,45,58,0.22),
            transparent 65%
        );

    pointer-events: none;
}

.hero-grid {
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 0.95fr;

    align-items: center;

    gap: 70px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.hero-kicker-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--thai-red);

    box-shadow:
        0 0 0 6px rgba(217,45,58,0.12);
}

.hero-content h1 {
    max-width: 680px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(47px, 6vw, 78px);
    font-weight: 800;

    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero-content h1 span {
    display: block;

    margin-top: 10px;

    color: var(--gold);
}

.hero-description {
    max-width: 600px;

    margin-top: 27px;

    color: var(--text-light);

    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}

.hero-mini-info {
    display: flex;

    gap: 34px;

    margin-top: 43px;

    padding-top: 28px;

    border-top: 1px solid var(--border);
}

.hero-mini-info div {
    display: flex;
    flex-direction: column;
}

.hero-mini-info strong {
    font-size: 16px;
    font-weight: 800;
}

.hero-mini-info span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 12px;
}


/* HERO IMAGE */

.hero-image-wrap {
    position: relative;

    border-radius: 32px;

    overflow: visible;
}

.hero-image-wrap > img {
    width: 100%;
    height: 600px;

    object-fit: cover;

    border-radius: 32px;
}

.hero-floating-card {
    position: absolute;

    left: -35px;
    bottom: 38px;

    min-width: 220px;

    padding: 19px 22px;

    background: rgba(255,255,255,0.96);
    color: var(--deep-navy);

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.25);
}

.hero-floating-card span {
    display: block;

    color: #7d8795;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.hero-floating-card strong {
    display: block;

    margin-top: 5px;

    font-family: "Manrope", sans-serif;

    font-size: 23px;
}

.hero-floating-card small {
    color: #6a7380;
}


/* =========================
   TRUST
========================= */

.trust-strip {
    padding: 25px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: rgba(255,255,255,0.025);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 14px;
}

.trust-item i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(231,174,72,0.10);
    color: var(--gold);
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    font-size: 14px;
}

.trust-item span {
    margin-top: 2px;

    color: var(--text-muted);

    font-size: 12px;
}


/* =========================
   TOUR CARD
========================= */

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 24px;
}

.tour-card {
    overflow: hidden;

    background: rgba(255,255,255,0.04);

    border: 1px solid var(--border);

    border-radius: 24px;

    transition: 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);

    border-color: rgba(231,174,72,0.30);
}

.tour-image {
    position: relative;

    height: 250px;

    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.045);
}

.tour-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    padding: 8px 12px;

    border-radius: 999px;

    background: var(--thai-red);

    font-size: 11px;
    font-weight: 800;
}

.tour-card-content {
    padding: 24px;
}

.tour-location {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
}

.tour-card h3 {
    margin-top: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 24px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 17px;

    margin-top: 17px;

    color: var(--text-muted);

    font-size: 12px;
}

.tour-meta span {
    display: flex;
    align-items: center;

    gap: 6px;
}

.tour-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin-top: 23px;
    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.tour-price small,
.tour-price strong,
.tour-price span {
    display: block;
}

.tour-price small,
.tour-price span {
    color: var(--text-muted);

    font-size: 11px;
}

.tour-price strong {
    margin-top: 3px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;
}

.tour-price a {
    color: var(--gold);

    font-size: 13px;
    font-weight: 700;
}


/* =========================
   PRIVATE
========================= */

.private-section {
    padding: 110px 0;

    background: var(--deep-navy-dark);
}

.private-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 80px;
}

.private-image {
    position: relative;
}

.private-image img {
    width: 100%;
    height: 620px;

    object-fit: cover;

    border-radius: 30px;
}

.private-tag {
    position: absolute;

    right: -25px;
    bottom: 40px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 14px 18px;

    border-radius: 999px;

    background: var(--white);
    color: var(--deep-navy);

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.25);
}

.private-tag i {
    color: var(--gold);
}

.private-content > p {
    margin-top: 22px;

    color: var(--text-light);

    font-size: 17px;
    line-height: 1.8;
}

.private-points {
    display: grid;

    gap: 14px;

    margin: 27px 0 32px;
}

.private-points div {
    display: flex;
    align-items: center;

    gap: 11px;

    color: var(--text-light);

    font-size: 14px;
}

.private-points i {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(231,174,72,0.10);
    color: var(--gold);

    font-size: 10px;
}


/* =========================
   DESTINATION
========================= */

.destination-grid {
    display: grid;

    grid-template-columns: 1.25fr 1fr 1fr;

    grid-template-rows: 260px 260px;

    gap: 18px;
}

.destination-card {
    position: relative;

    min-height: 250px;

    overflow: hidden;

    border-radius: 25px;
}

.destination-large {
    grid-row: 1 / 3;
}

.destination-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.destination-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,13,23,0.90),
            rgba(5,13,23,0.02) 65%
        );
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;

    left: 23px;
    bottom: 22px;

    z-index: 2;
}

.destination-overlay span {
    color: var(--gold);

    font-size: 11px;
    font-weight: 700;
}

.destination-overlay h3 {
    margin-top: 3px;

    font-family: "Manrope", sans-serif;

    font-size: 25px;
}


/* =========================
   WHY US
========================= */

.why-section {
    padding: 105px 0;

    background: var(--deep-navy-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}

.why-card {
    min-height: 250px;

    padding: 27px;

    border: 1px solid var(--border);
    border-radius: 24px;

    background: rgba(255,255,255,0.03);
}

.why-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: rgba(231,174,72,0.09);

    color: var(--gold);
}

.why-card h3 {
    margin-top: 24px;

    font-family: "Manrope", sans-serif;

    font-size: 19px;
}

.why-card p {
    margin-top: 10px;

    color: var(--text-muted);

    font-size: 14px;
}


/* =========================
   REVIEW
========================= */

.review-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 22px;
}

.review-card {
    padding: 28px;

    border-radius: 24px;

    background: rgba(255,255,255,0.04);

    border: 1px solid var(--border);
}

.review-stars {
    display: flex;

    gap: 3px;

    color: var(--gold);

    font-size: 13px;
}

.review-card > p {
    margin-top: 19px;

    color: var(--text-light);

    line-height: 1.75;
}

.review-user {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.review-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--thai-red);

    font-weight: 800;
}

.review-user strong,
.review-user span {
    display: block;
}

.review-user span {
    color: var(--text-muted);

    font-size: 12px;
}


/* =========================
   BOOKING
========================= */

.booking-section {
    padding: 100px 0;

    background: var(--cream);
    color: var(--deep-navy);
}

.booking-section .section-kicker {
    color: var(--thai-red);
}

.booking-section .section-heading h2 span {
    color: var(--thai-red);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 25px;

    margin-top: 50px;
}

.booking-step {
    position: relative;

    padding: 30px;

    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 18px 50px rgba(14,33,54,0.08);
}

.booking-step > span {
    color: rgba(19,34,56,0.10);

    font-family: "Manrope", sans-serif;

    font-size: 55px;
    font-weight: 800;
}

.booking-step h3 {
    margin-top: -10px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;
}

.booking-step p {
    margin-top: 10px;

    color: #697687;

    font-size: 14px;
}


/* =========================
   FAQ
========================= */

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 85px;
}

.faq-heading .section-link {
    margin-top: 25px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 0 22px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: rgba(255,255,255,0.03);
}

.faq-list summary {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    list-style: none;

    cursor: pointer;

    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    color: var(--gold);

    transition: 0.2s ease;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 35px 20px 0;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding-bottom: 30px;
}

.final-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 55px 60px;

    border-radius: 30px;

    background:
        linear-gradient(
            130deg,
            #d92d3a,
            #b81e2c
        );

    box-shadow:
        0 25px 70px rgba(217,45,58,0.20);
}

.final-cta-content > span {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.15em;

    color: rgba(255,255,255,0.70);
}

.final-cta h2 {
    margin-top: 6px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(30px,4vw,45px);
}

.final-cta p {
    max-width: 620px;

    margin-top: 8px;

    color: rgba(255,255,255,0.80);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .hero-grid,
    .private-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-image-wrap > img,
    .private-image img {
        height: 520px;
    }

    .hero-floating-card {
        left: 25px;
    }

    .private-tag {
        right: 25px;
    }

    .trust-grid,
    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .tour-grid,
    .review-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .destination-grid {
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: 320px 260px 260px;
    }

    .destination-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

}


@media (max-width: 700px) {

    .section-pad,
    .private-section,
    .why-section {
        padding: 75px 0;
    }

    .hero-home {
        padding-top: 55px;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-content h1 {
        font-size: clamp(43px,13vw,62px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-mini-info {
        display: grid;
        grid-template-columns: repeat(2,1fr);

        gap: 20px;
    }

    .hero-image-wrap > img,
    .private-image img {
        height: 440px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;

        margin-bottom: 32px;
    }

    .trust-grid,
    .tour-grid,
    .why-grid,
    .review-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .destination-large {
        grid-column: auto;
    }

    .destination-card {
        min-height: 350px;
    }

    .final-cta-box {
        align-items: flex-start;
        flex-direction: column;

        padding: 38px 27px;
    }

}


@media (max-width: 500px) {

    .hero-actions {
        display: grid;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-mini-info {
        grid-template-columns: 1fr 1fr;

        gap: 17px;
    }

    .hero-image-wrap > img {
        height: 390px;
    }

    .hero-floating-card {
        left: 14px;
        right: 14px;
        bottom: 14px;

        min-width: 0;
    }

    .private-image img {
        height: 400px;
    }

    .private-tag {
        right: 14px;
        bottom: 14px;
    }

    .tour-image {
        height: 230px;
    }

    .tour-price {
        align-items: flex-start;
        flex-direction: column;
    }

    .destination-card {
        min-height: 300px;
    }

}

/* =========================
   OPEN TOUR PAGE
========================= */

.tour-page-hero {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
}

.tour-page-hero::before {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    right: -220px;
    top: -230px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(217,45,58,0.18),
            transparent 68%
        );
    pointer-events: none;
}

.tour-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 75px;
}

.tour-page-copy h1 {
    max-width: 760px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.tour-page-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
}

.tour-page-copy > p {
    max-width: 640px;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.tour-page-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 30px;
}

.tour-page-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
}

.tour-page-benefits i {
    color: var(--gold);
}

.tour-page-hero-image img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 30px;
}


/* =========================
   INTRO TOUR
========================= */

.intro-tour-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.intro-tour-grid h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.intro-tour-grid h2 span {
    color: var(--gold);
}

.intro-tour-copy {
    display: grid;
    gap: 18px;
}

.intro-tour-copy p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   TOUR FEATURES
========================= */

.open-tour-list-section {
    background: var(--deep-navy-dark);
}

.tour-feature-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 0;
    list-style: none;
}

.tour-feature-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-light);
    font-size: 13px;
}

.tour-feature-list i {
    color: var(--gold);
    font-size: 11px;
}

.tour-badge-gold {
    background: var(--gold);
    color: var(--deep-navy-dark);
}

.tour-badge-blue {
    background: #2463eb;
}


/* =========================
   INCLUDE / EXCLUDE
========================= */

.include-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.include-box {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255,255,255,0.035);
}

.include-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.include-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
}

.include-box.excluded .include-icon {
    background: rgba(217,45,58,0.10);
    color: var(--thai-red);
}

.include-title h3 {
    font-family: "Manrope", sans-serif;
    font-size: 21px;
}

.include-box ul {
    display: grid;
    gap: 13px;
    margin-top: 25px;
    padding: 0;
    list-style: none;
}

.include-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.included li i {
    color: var(--gold);
}

.excluded li i {
    color: var(--thai-red);
}


/* =========================
   PRIVATE CROSS SELL
========================= */

.private-cross-section {
    padding: 25px 0 80px;
}

.private-cross-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 55px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        rgba(231,174,72,0.15),
        rgba(255,255,255,0.04)
    );
    border: 1px solid rgba(231,174,72,0.20);
}

.private-cross-kicker {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.private-cross-box h2 {
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 44px);
}

.private-cross-box p {
    max-width: 650px;
    margin-top: 9px;
    color: var(--text-muted);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

    .tour-page-hero-grid,
    .intro-tour-grid {
        grid-template-columns: 1fr;
    }

    .tour-page-hero-grid {
        gap: 45px;
    }

    .tour-page-hero-image img {
        height: 520px;
    }

    .include-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .tour-page-hero {
        padding: 55px 0 70px;
    }

    .tour-page-copy h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .tour-page-copy > p {
        font-size: 16px;
    }

    .tour-page-hero-image img {
        height: 420px;
    }

    .private-cross-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 38px 28px;
    }

}

/* =========================
   PRIVATE TOUR PAGE
========================= */

.private-tour-hero {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
}

.private-tour-hero::before {
    content: "";
    position: absolute;
    left: -230px;
    top: -250px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(231,174,72,0.14),
            transparent 68%
        );
    pointer-events: none;
}

.private-tour-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 75px;
}

.private-tour-copy h1 {
    max-width: 760px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.private-tour-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
}

.private-tour-copy > p {
    max-width: 650px;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.private-tour-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 30px;
}

.private-tour-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
}

.private-tour-benefits i {
    color: var(--gold);
}

.private-tour-image {
    position: relative;
}

.private-tour-image > img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 30px;
}

.private-tour-floating-card {
    position: absolute;
    left: -30px;
    bottom: 35px;
    max-width: 240px;
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    color: var(--deep-navy);
    box-shadow: 0 20px 50px rgba(0,0,0,0.24);
}

.private-tour-floating-card span {
    display: block;
    color: #8c96a3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.private-tour-floating-card strong {
    display: block;
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    line-height: 1.3;
}


/* =========================
   PRIVATE OPTIONS
========================= */

.private-options-section {
    padding: 105px 0;
    background: var(--deep-navy-dark);
}

.private-option-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.private-option-card {
    padding: 28px;
    min-height: 270px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.035);
}

.private-option-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
}

.private-option-card h3 {
    margin-top: 25px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.private-option-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   CUSTOMIZATION
========================= */

.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-card {
    position: relative;
    padding: 30px;
    min-height: 220px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.035);
}

.custom-card > span {
    color: rgba(255,255,255,0.09);
    font-family: "Manrope", sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

.custom-card h3 {
    margin-top: -4px;
    font-family: "Manrope", sans-serif;
    font-size: 21px;
}

.custom-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   PRIVATE DESTINATION
========================= */

.private-destination-section {
    padding: 105px 0;
    background: var(--deep-navy-dark);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .private-tour-hero-grid {
        grid-template-columns: 1fr;
    }

    .private-tour-image > img {
        height: 520px;
    }

    .private-tour-floating-card {
        left: 25px;
    }

    .private-option-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .private-tour-hero {
        padding: 55px 0 70px;
    }

    .private-tour-copy h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .private-tour-copy > p {
        font-size: 16px;
    }

    .private-tour-image > img {
        height: 420px;
    }

    .private-tour-floating-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .private-option-grid,
    .custom-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 75px;
}

.about-hero-copy h1 {
    max-width: 760px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.about-hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
}

.about-hero-copy > p {
    max-width: 620px;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.about-hero-image img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 30px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.about-intro-grid h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-intro-grid h2 span {
    color: var(--gold);
}

.about-copy {
    display: grid;
    gap: 18px;
}

.about-copy p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.about-values-section {
    padding: 105px 0;
    background: var(--deep-navy-dark);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-value-card {
    padding: 28px;
    min-height: 250px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.035);
}

.about-value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
}

.about-value-card h3 {
    margin-top: 24px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.about-value-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-service-card {
    position: relative;
    padding: 35px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.035);
}

.about-service-number {
    color: rgba(255,255,255,0.08);
    font-family: "Manrope", sans-serif;
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
}

.about-service-card h3 {
    margin-top: -5px;
    font-family: "Manrope", sans-serif;
    font-size: 26px;
}

.about-service-card p {
    margin-top: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-service-card .section-link {
    margin-top: 22px;
}

@media (max-width: 1000px) {

    .about-hero-grid,
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-image img {
        height: 520px;
    }

}

@media (max-width: 700px) {

    .about-hero {
        padding: 55px 0 70px;
    }

    .about-hero-copy h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .about-hero-image img {
        height: 420px;
    }

    .about-values-grid,
    .about-services-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   REVIEW PAGE
========================= */

.review-page-hero {
    position: relative;
    padding: 90px 0 95px;
    overflow: hidden;
}

.review-page-hero::before {
    content: "";
    position: absolute;
    right: -220px;
    top: -250px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(231,174,72,0.15),
            transparent 68%
        );
    pointer-events: none;
}

.review-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 90px;
}

.review-page-copy h1 {
    max-width: 760px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.review-page-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
}

.review-page-copy > p {
    max-width: 640px;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   HERO REVIEW SCORE
========================= */

.review-hero-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 38px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.025)
        );
}

.review-score {
    flex-shrink: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(62px, 8vw, 95px);
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.06em;
}

.review-score-content {
    display: flex;
    flex-direction: column;
}

.big-stars {
    font-size: 15px;
}

.review-score-content strong {
    margin-top: 11px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.review-score-content span {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   REVIEW SUMMARY
========================= */

.review-summary-section {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.025);
}

.review-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.review-summary-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-summary-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
}

.review-summary-item strong,
.review-summary-item span {
    display: block;
}

.review-summary-item strong {
    font-size: 14px;
}

.review-summary-item span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.4;
}


/* =========================
   REVIEW GRID
========================= */

.review-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-page-card {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 28px;
    border-radius: 25px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.035);
    transition: 0.3s ease;
}

.review-page-card:hover {
    transform: translateY(-5px);
    border-color: rgba(231,174,72,0.25);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.review-type {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
    font-size: 10px;
    font-weight: 700;
}

.review-page-card > p {
    flex: 1;
    margin-top: 22px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}


/* =========================
   TRAVELER MOMENT
========================= */

.traveler-moment-section {
    padding: 105px 0;
    background: var(--deep-navy-dark);
}

.traveler-moment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.traveler-moment-card {
    padding: 30px;
    border-radius: 25px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.traveler-moment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
}

.traveler-moment-card h3 {
    margin-top: 24px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.traveler-moment-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   SHARE REVIEW
========================= */

.share-review-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 48px 52px;
    border-radius: 30px;
    border: 1px solid rgba(231,174,72,0.22);
    background:
        linear-gradient(
            135deg,
            rgba(231,174,72,0.12),
            rgba(255,255,255,0.03)
        );
}

.share-review-box h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 44px);
}

.share-review-box p {
    max-width: 650px;
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .review-page-hero-grid {
        grid-template-columns: 1fr;
    }

    .review-hero-card {
        max-width: 620px;
    }

    .review-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .review-page-hero {
        padding: 55px 0 70px;
    }

    .review-page-copy h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .review-page-copy > p {
        font-size: 16px;
    }

    .review-hero-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .review-summary-grid,
    .review-page-grid,
    .traveler-moment-grid {
        grid-template-columns: 1fr;
    }

    .share-review-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 36px 28px;
    }

}

/* =========================
   FAQ PAGE
========================= */

.faq-page-hero {
    position: relative;
    padding: 90px 0 95px;
    overflow: hidden;
}

.faq-page-hero::before {
    content: "";
    position: absolute;
    right: -220px;
    top: -260px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(217,45,58,0.16),
            transparent 68%
        );
    pointer-events: none;
}

.faq-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 90px;
}

.faq-page-copy h1 {
    max-width: 780px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.faq-page-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
}

.faq-page-copy > p {
    max-width: 650px;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   FAQ HERO CARD
========================= */

.faq-hero-card {
    padding: 38px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.025)
        );
}

.faq-hero-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
    font-size: 22px;
}

.faq-hero-card h2 {
    margin-top: 24px;
    font-family: "Manrope", sans-serif;
    font-size: 30px;
}

.faq-hero-card p {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-hero-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}


/* =========================
   FAQ CATEGORY NAV
========================= */

.faq-category-section {
    padding: 25px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.025);
}

.faq-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.faq-category-card {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.025);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    transition: 0.25s ease;
}

.faq-category-card i {
    color: var(--gold);
    font-size: 17px;
}

.faq-category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(231,174,72,0.25);
    color: var(--white);
}


/* =========================
   FAQ BLOCK
========================= */

.faq-page-content {
    padding-top: 90px;
}

.faq-category-block {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 70px;
    padding: 65px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 120px;
}

.faq-category-block:first-child {
    padding-top: 0;
}

.faq-category-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.faq-category-heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.faq-category-heading > span {
    color: rgba(255,255,255,0.08);
    font-family: "Manrope", sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
}

.faq-category-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.1;
}

.faq-page-list {
    display: grid;
    gap: 12px;
}

.faq-page-list details {
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.faq-page-list summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.faq-page-list summary::-webkit-details-marker {
    display: none;
}

.faq-page-list summary i {
    flex-shrink: 0;
    color: var(--gold);
    transition: 0.2s ease;
}

.faq-page-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-page-list details p {
    padding: 0 40px 22px 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   FAQ HELP
========================= */

.faq-help-section {
    padding: 15px 0 100px;
}

.faq-help-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 42px 46px;
    border-radius: 28px;
    border: 1px solid rgba(231,174,72,0.22);
    background:
        linear-gradient(
            135deg,
            rgba(231,174,72,0.11),
            rgba(255,255,255,0.03)
        );
}

.faq-help-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(231,174,72,0.12);
    color: var(--gold);
    font-size: 22px;
}

.faq-help-copy > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.faq-help-copy h2 {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
}

.faq-help-copy p {
    max-width: 650px;
    margin-top: 8px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .faq-page-hero-grid {
        grid-template-columns: 1fr;
    }

    .faq-hero-card {
        max-width: 620px;
    }

    .faq-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-category-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width: 700px) {

    .faq-page-hero {
        padding: 55px 0 70px;
    }

    .faq-page-copy h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .faq-page-copy > p {
        font-size: 16px;
    }

    .faq-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-category-block {
        padding: 50px 0;
    }

    .faq-category-heading {
        gap: 14px;
    }

    .faq-category-heading > span {
        font-size: 38px;
    }

    .faq-help-box {
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding: 34px 28px;
    }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-page-hero {
    position: relative;
    padding: 90px 0 95px;
    overflow: hidden;
}

.contact-page-hero::before {
    content: "";
    position: absolute;
    right: -220px;
    top: -250px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(217,45,58,0.16),
            transparent 68%
        );
    pointer-events: none;
}

.contact-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 90px;
}

.contact-page-copy h1 {
    max-width: 780px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.contact-page-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
}

.contact-page-copy > p {
    max-width: 650px;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   CONTACT HERO CARD
========================= */

.contact-hero-card {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.025)
        );
}

.contact-hero-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
    font-size: 23px;
}

.contact-hero-card > span {
    display: block;
    margin-top: 26px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.contact-hero-card h2 {
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 30px;
}

.contact-hero-card p {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* =========================
   CONTACT CHANNEL
========================= */

.contact-channel-section {
    padding: 100px 0;
    background: var(--deep-navy-dark);
}

.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-channel-card {
    padding: 30px;
    border-radius: 25px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    transition: 0.3s ease;
}

.contact-channel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(231,174,72,0.25);
}

.contact-channel-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
    font-size: 19px;
}

.contact-channel-card > span {
    display: block;
    margin-top: 24px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.contact-channel-card h3 {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 23px;
}

.contact-channel-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.contact-channel-card strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--white);
    font-size: 13px;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.contact-form-copy h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.contact-form-copy h2 span {
    color: var(--gold);
}

.contact-form-copy > p {
    margin-top: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-form-points {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}

.contact-form-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.contact-form-points i {
    color: var(--gold);
}

.trip-consult-form {
    padding: 34px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.035);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
}

.form-group input,
.form-group select {
    height: 50px;
    padding: 0 15px;
}

.form-group textarea {
    padding: 14px 15px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7f8c9b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(231,174,72,0.55);
}

.form-group select option {
    color: #111;
}

.contact-submit {
    border: 0;
    cursor: pointer;
}

.form-note {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.6;
}


/* =========================
   CONTACT INFO
========================= */

.contact-info-section {
    padding: 100px 0;
    background: var(--deep-navy-dark);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-info-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background: rgba(255,255,255,0.03);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
}

.contact-info-card h3 {
    margin-top: 22px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
}

.contact-info-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .contact-page-hero-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-card {
        max-width: 620px;
    }

    .contact-channel-grid,
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .contact-page-hero {
        padding: 55px 0 70px;
    }

    .contact-page-copy h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .contact-page-copy > p {
        font-size: 16px;
    }

    .contact-channel-grid,
    .contact-info-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .trip-consult-form {
        padding: 26px 20px;
    }

}

/* =========================
   LEGAL PAGE
========================= */

.legal-page-hero {
    position: relative;
    padding: 90px 0 95px;
    overflow: hidden;
}

.legal-page-hero::before {
    content: "";
    position: absolute;
    right: -220px;
    top: -250px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(231,174,72,0.14),
            transparent 68%
        );
    pointer-events: none;
}

.legal-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 90px;
}

.legal-page-copy h1 {
    max-width: 800px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.legal-page-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
}

.legal-page-copy > p {
    max-width: 650px;
    margin-top: 25px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   LEGAL HERO CARD
========================= */

.legal-hero-card {
    padding: 38px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.025)
        );
}

.legal-hero-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(231,174,72,0.10);
    color: var(--gold);
    font-size: 22px;
}

.legal-hero-card > span {
    display: block;
    margin-top: 26px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.legal-hero-card h2 {
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 30px;
}

.legal-hero-card p {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* =========================
   LEGAL LAYOUT
========================= */

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 75px;
    align-items: start;
}

.legal-sidebar {
    position: relative;
}

.legal-sidebar-inner {
    position: sticky;
    top: 120px;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.legal-sidebar-title {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.legal-sidebar nav {
    display: grid;
    gap: 4px;
    margin-top: 16px;
}

.legal-sidebar nav a {
    padding: 10px 11px;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 13px;
    transition: 0.2s ease;
}

.legal-sidebar nav a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white);
}


/* =========================
   LEGAL CONTENT
========================= */

.legal-content {
    min-width: 0;
}

.legal-block {
    padding: 0 0 55px;
    margin-bottom: 55px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 120px;
}

.legal-block:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-block-number {
    color: rgba(255,255,255,0.08);
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.legal-block h2 {
    margin-top: -5px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 3vw, 38px);
}

.legal-block > p {
    margin-top: 17px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.85;
}

.legal-block ul {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding-left: 20px;
}

.legal-block li {
    padding-left: 4px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.legal-block li::marker {
    color: var(--gold);
}


/* =========================
   LEGAL NOTE
========================= */

.legal-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(231,174,72,0.20);
    background: rgba(231,174,72,0.07);
}

.legal-note i {
    margin-top: 3px;
    color: var(--gold);
}

.legal-note p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   LEGAL CONTACT
========================= */

.legal-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 28px;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.legal-contact-box span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.legal-contact-box h3 {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.legal-contact-box p {
    max-width: 550px;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .legal-page-hero-grid {
        grid-template-columns: 1fr;
    }

    .legal-hero-card {
        max-width: 620px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-sidebar-inner {
        position: static;
    }

    .legal-sidebar nav {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .legal-page-hero {
        padding: 55px 0 70px;
    }

    .legal-page-copy h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .legal-page-copy > p {
        font-size: 16px;
    }

    .legal-sidebar nav {
        grid-template-columns: 1fr;
    }

    .legal-contact-box {
        align-items: flex-start;
        flex-direction: column;
    }

}