/*! MAGIC TRAVEL - Main Styles */
:root {
    --ink: #07171a;
    --navy: #061a22;
    --deep: #031116;
    --tiffany: #24d7cc;
    --tiffany-dark: #0b9b96;
    --gold: #d7b36b;
    --paper: #f7f5ef;
    --white: #fff;
    --muted: #687779;
    --line: #07171a21;
    --shadow: 0 22px 65px #061a2221;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

body:has(.mobile-menu.open) {
    overflow: hidden;
}

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

button, input, select {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site {
    min-height: 100vh;
    overflow: hidden;
}

.shell {
    width: min(1180px, 100% - 48px);
    margin-inline: auto;
}

.section {
    padding-block: 108px;
    scroll-margin-top: 76px;
}

/* Header */
.topbar {
    z-index: 30;
    color: #fff;
    position: absolute;
    inset: 0 0 auto;
}

.nav-row {
    border-bottom: 1px solid #ffffff2e;
    align-items: center;
    gap: 34px;
    height: 92px;
    display: flex;
}

.brand {
    flex: none;
    align-items: center;
    gap: 13px;
    display: inline-flex;
}

.brand-mark {
    color: var(--tiffany);
    letter-spacing: -.09em;
    font-size: 31px;
    font-weight: 950;
    line-height: 1;
}

.brand-copy {
    flex-direction: column;
    gap: 3px;
    display: flex;
}

.brand-copy strong {
    letter-spacing: .13em;
    font-size: 13px;
}

.brand-copy small {
    color: var(--gold);
    letter-spacing: .21em;
    font-size: 8px;
}

.desktop-nav {
    gap: 28px;
    margin-left: auto;
    display: flex;
}

.desktop-nav a {
    color: #ffffffc7;
    font-size: 12px;
    transition: all .2s;
}

.desktop-nav a:hover {
    color: var(--tiffany);
}

.header-contact {
    background: var(--tiffany);
    color: #042724;
    border-radius: 999px;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 17px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
}

.header-contact svg {
    width: 16px;
}

.menu-button {
    color: #fff;
    background: 0 0;
    border: 0;
    margin-left: auto;
    padding: 0;
    display: none;
}

.mobile-menu, .menu-backdrop, .mobile-bottom-nav {
    display: none;
}

/* Hero */
.hero {
    color: #fff;
    align-items: center;
    min-height: 780px;
    display: flex;
    position: relative;
}

.hero-image {
    object-fit: cover;
    object-position: 62% center;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.hero-overlay {
    background: linear-gradient(90deg, #020d11f7, #020d11d6 40%, #020d112e 78%), linear-gradient(#0000 52%, #020d11c7);
    position: absolute;
    inset: 0;
}

.hero-content {
    z-index: 2;
    padding-top: 82px;
    position: relative;
}

.hero-badge {
    width: fit-content;
    color: var(--tiffany);
    letter-spacing: .19em;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 10px;
    font-weight: 900;
    display: flex;
}

.hero-badge svg {
    width: 17px;
}

.hero h1 {
    letter-spacing: -.056em;
    max-width: 900px;
    margin: 0;
    font: 400 clamp(58px, 6.5vw, 94px)/.98 Georgia, Times New Roman, serif;
}

.hero h1 em {
    color: var(--tiffany);
    font-style: normal;
}

.hero-content > p {
    color: #ffffffc4;
    max-width: 600px;
    margin: 27px 0 0;
    font-size: 17px;
    line-height: 1.65;
}

.hero-actions {
    gap: 12px;
    margin-top: 34px;
    display: flex;
}

.button {
    border: 0;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 900;
    transition: all .2s;
    display: inline-flex;
}

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

.button svg {
    width: 18px;
}

.button-primary {
    background: var(--tiffany);
    color: #042522;
}

.button-glass {
    color: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #020c0f42;
    border: 1px solid #ffffff57;
}

.hero-proof {
    gap: 44px;
    margin-top: 50px;
    display: flex;
}

.hero-proof > span {
    align-items: center;
    gap: 10px;
    min-height: 42px;
    display: flex;
}

.hero-proof strong {
    color: var(--gold);
    font: 400 32px/1 Georgia, serif;
}

.hero-proof svg {
    width: 25px;
    color: var(--gold);
}

.hero-proof small {
    color: #ffffffad;
    letter-spacing: .05em;
    font-size: 10px;
    line-height: 1.4;
}

/* Location */
.location-shell {
    z-index: 5;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: #fffffff0;
    border: 1px solid #fffc;
    border-radius: 18px;
    grid-template-columns: .85fr 1.5fr;
    align-items: center;
    gap: 34px;
    margin-top: -55px;
    padding: 28px 32px;
    display: grid;
    position: relative;
}

.location-copy {
    align-items: center;
    gap: 14px;
    display: flex;
}

.location-copy > span {
    background: var(--navy);
    color: var(--tiffany);
    letter-spacing: .12em;
    border-radius: 6px;
    padding: 7px 9px;
    font-size: 9px;
    font-weight: 900;
}

.location-copy h2 {
    margin: 0 0 5px;
    font: 400 25px/1.1 Georgia, serif;
}

.location-copy p {
    color: var(--muted);
    margin: 0;
    font-size: 11px;
}

.location-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    display: grid;
}

.location-buttons button {
    border: 1px solid var(--line);
    text-align: left;
    background: #fff;
    border-radius: 12px;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 0 17px;
    transition: all .2s;
    display: flex;
}

.location-buttons button > svg:first-child {
    width: 19px;
    color: var(--tiffany-dark);
}

.location-buttons button > svg:last-child {
    opacity: 0;
    width: 17px;
    margin-left: auto;
}

.location-buttons button span {
    flex-direction: column;
    gap: 4px;
    display: flex;
}

.location-buttons button strong {
    font-size: 13px;
}

.location-buttons button small {
    color: var(--muted);
    font-size: 9px;
}

.location-buttons button.active {
    border-color: var(--tiffany-dark);
    box-shadow: inset 0 0 0 1px var(--tiffany-dark);
    background: #eafffd;
}

.location-buttons button.active > svg:last-child {
    opacity: 1;
    color: var(--tiffany-dark);
}

/* Quick Nav */
.quick-nav {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding-top: 30px;
    display: grid;
}

.quick-nav > a {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 13px;
    align-items: center;
    gap: 12px;
    min-height: 84px;
    padding: 0 17px;
    transition: all .2s;
    display: flex;
}

.quick-nav > a:hover {
    border-color: #0b9b968c;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px #061a2214;
}

.quick-nav > a > svg:first-child {
    width: 23px;
    color: var(--tiffany-dark);
}

.quick-nav > a > svg:last-child {
    opacity: .45;
    width: 16px;
    margin-left: auto;
}

.quick-nav span {
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    font-weight: 900;
    display: flex;
}

.quick-nav small {
    color: var(--muted);
    letter-spacing: .12em;
    font-size: 8px;
}

/* Section Headings */
.section-heading {
    justify-content: space-between;
    align-items: end;
    gap: 48px;
    margin-bottom: 32px;
    display: flex;
}

.section-heading p, .trust-intro > p, .faq-intro > p, .booking-copy > p {
    color: var(--tiffany-dark);
    letter-spacing: .2em;
    margin: 0 0 12px;
    font-size: 10px;
    font-weight: 900;
}

.section-heading h2, .trust-intro h2, .faq-intro h2, .booking-copy h2 {
    letter-spacing: -.04em;
    margin: 0;
    font: 400 clamp(38px, 4vw, 58px)/1.02 Georgia, serif;
}

.section-heading > span {
    max-width: 390px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.section-heading > span strong {
    color: var(--ink);
}

.section-link {
    color: var(--tiffany-dark);
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 900;
    display: flex;
}

.section-link svg {
    width: 17px;
}

/* Category Tabs */
.category-tabs {
    gap: 8px;
    margin-bottom: 24px;
    display: flex;
}

.category-tabs a {
    border: 1px solid var(--line);
    min-height: 42px;
    color: var(--muted);
    background: 0 0;
    border-radius: 999px;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
}

.category-tabs a svg {
    width: 15px;
}

.category-tabs a.active, .category-tabs a:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

/* Tour Grid */
.tour-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    display: grid;
}

.tour-card {
    background: var(--navy);
    color: #fff;
    text-align: left;
    border: 0;
    border-radius: 18px;
    min-height: 475px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px #04131814;
}

.tour-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .6s;
    position: absolute;
    inset: 0;
}

.tour-card:hover img {
    transform: scale(1.045);
}

.card-overlay {
    background: linear-gradient(#020e1214 30%, #020e12f5);
    position: absolute;
    inset: 0;
}

.tour-badge, .service-tag {
    z-index: 2;
    color: var(--tiffany);
    letter-spacing: .13em;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    background: #04151bc7;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 8px;
    font-weight: 900;
    position: absolute;
    top: 17px;
    left: 17px;
}

.tour-price {
    z-index: 2;
    background: var(--tiffany);
    color: #032522;
    text-align: center;
    border-radius: 10px;
    min-width: 70px;
    padding: 11px 12px;
    font: 700 22px/1 Georgia, serif;
    position: absolute;
    top: 15px;
    right: 15px;
}

.tour-info {
    z-index: 2;
    position: absolute;
    bottom: 23px;
    left: 24px;
    right: 24px;
}

.tour-info small {
    color: var(--gold);
    letter-spacing: .08em;
    font-size: 10px;
}

.tour-info h3 {
    margin: 8px 0 20px;
    font: 400 27px/1.08 Georgia, serif;
}

.tour-info > span {
    color: #ffffffc2;
    border-top: 1px solid #ffffff40;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
}

.tour-info svg {
    width: 18px;
    color: var(--tiffany);
}

/* Packages */
.packages-section {
    background: var(--navy);
    color: #fff;
}

.section-heading-light p {
    color: var(--tiffany);
}

.section-heading-light > span {
    color: #ffffff9e;
}

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

.package-card {
    background: #ffffff0b;
    border: 1px solid #ffffff24;
    border-radius: 17px;
    flex-direction: column;
    min-height: 470px;
    padding: 31px;
    transition: all .25s;
    display: flex;
    position: relative;
}

.package-card:hover {
    border-color: var(--tiffany);
    transform: translateY(-5px);
}

.package-card.featured {
    border-color: var(--tiffany);
    background: linear-gradient(145deg, #24d7cc30, #ffffff0e);
    margin-top: -8px;
    box-shadow: 0 20px 60px #00000038;
}

.popular-label {
    background: var(--tiffany);
    color: #042522;
    letter-spacing: .11em;
    text-align: center;
    border-radius: 999px;
    padding: 8px;
    font-size: 8px;
    font-weight: 950;
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    transform: translateY(-50%);
}

.package-head {
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    display: flex;
}

.package-head > span {
    flex-direction: column;
    gap: 10px;
    display: flex;
}

.package-head small {
    color: var(--tiffany);
    letter-spacing: .17em;
    font-size: 11px;
    font-weight: 950;
}

.package-head em {
    color: #ffffff8c;
    letter-spacing: .09em;
    font-size: 8px;
    font-style: normal;
}

.package-head > strong {
    font: 400 49px/1 Georgia, serif;
}

.old-price {
    width: fit-content;
    color: var(--gold);
    background: #d7b36b24;
    border-radius: 5px;
    margin: 22px 0 24px;
    padding: 6px 9px;
    font-size: 9px;
    font-weight: 800;
}

.package-card ol {
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.package-card li {
    color: #fffc;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 1.4;
    display: flex;
}

.package-card li span {
    width: 27px;
    height: 27px;
    color: var(--tiffany);
    border: 1px solid #24d7cc66;
    border-radius: 50%;
    flex: none;
    place-items: center;
    font-size: 10px;
    display: grid;
}

.package-action {
    color: var(--tiffany);
    border-top: 1px solid #ffffff24;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    font-size: 12px;
    font-weight: 900;
    display: flex;
}

.package-action svg {
    width: 18px;
}

.package-note {
    color: #ffffff8c;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 28px 0 0;
    font-size: 11px;
    display: flex;
}

.package-note svg {
    width: 17px;
    color: var(--gold);
}

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

.service-card {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.service-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .6s;
    position: absolute;
    inset: 0;
}

.service-card:hover img {
    transform: scale(1.045);
}

.service-info {
    z-index: 2;
    position: absolute;
    bottom: 24px;
    left: 25px;
    right: 25px;
}

.service-info > svg {
    width: 28px;
    color: var(--tiffany);
}

.service-info h3 {
    margin: 13px 0 8px;
    font: 400 28px/1.05 Georgia, serif;
}

.service-info p {
    color: #ffffffab;
    max-width: 260px;
    margin: 0 0 20px;
    font-size: 11px;
    line-height: 1.5;
}

.service-info > span {
    color: var(--tiffany);
    border-top: 1px solid #ffffff38;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    font-size: 11px;
    font-weight: 900;
    display: flex;
}

.service-info > span svg {
    width: 17px;
}

.secondary-services {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
    display: grid;
}

.secondary-services a {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    align-items: center;
    gap: 16px;
    min-height: 90px;
    padding: 0 21px;
    display: flex;
}

.secondary-services a > svg:first-child {
    width: 25px;
    color: var(--tiffany-dark);
}

.secondary-services a > svg:last-child {
    opacity: .5;
    width: 18px;
    margin-left: auto;
}

.secondary-services span {
    flex-direction: column;
    gap: 5px;
    display: flex;
}

.secondary-services strong {
    font-size: 13px;
}

.secondary-services small {
    color: var(--muted);
    font-size: 10px;
}

/* Trust */
.trust-section {
    background: #fff;
    padding: 105px 0 0;
}

.trust-layout {
    grid-template-columns: .9fr 1.2fr;
    gap: 80px;
    display: grid;
}

.trust-intro > span, .faq-intro > span {
    color: var(--muted);
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.7;
    display: block;
}

.trust-features {
    background: var(--line);
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    display: grid;
}

.trust-features article {
    background: #fff;
    min-height: 190px;
    padding: 27px;
}

.trust-features svg {
    width: 28px;
    color: var(--tiffany-dark);
}

.trust-features strong {
    margin-top: 18px;
    font: 400 19px/1.2 Georgia, serif;
    display: block;
}

.trust-features p {
    color: var(--muted);
    margin: 9px 0 0;
    font-size: 11px;
    line-height: 1.55;
}

.steps {
    background: var(--navy);
    color: #fff;
    border-radius: 16px 16px 0 0;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 78px;
    display: grid;
    overflow: hidden;
}

.steps > div {
    border-right: 1px solid #ffffff21;
    min-height: 150px;
    padding: 30px;
}

.steps > div:last-child {
    border-right: 0;
}

.steps span {
    color: var(--tiffany);
    font: 400 28px/1 Georgia, serif;
}

.steps strong {
    margin: 16px 0 6px;
    font-size: 13px;
    display: block;
}

.steps p {
    color: #ffffff91;
    margin: 0;
    font-size: 10px;
    line-height: 1.45;
}

/* Reviews */
.reviews-section {
    background: #f0eee7;
}

.reviews-grid {
    grid-template-columns: .95fr 1.15fr;
    gap: 16px;
    display: grid;
}

.video-review {
    color: #fff;
    border-radius: 18px;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.video-review img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.video-review-overlay {
    background: linear-gradient(#0311161a 30%, #031116f2);
    position: absolute;
    inset: 0;
}

.video-review-label {
    color: var(--tiffany);
    letter-spacing: .12em;
    background: #031116bf;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 8px;
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
}

.video-review-copy {
    position: absolute;
    bottom: 29px;
    left: 30px;
    right: 30px;
}

.video-review-copy svg {
    width: 40px;
    height: 40px;
    color: var(--tiffany);
}

.video-review-copy h3 {
    max-width: 420px;
    margin: 15px 0 8px;
    font: 400 28px/1.1 Georgia, serif;
}

.video-review-copy p {
    color: #ffffffa8;
    margin: 0;
    font-size: 11px;
}

.review-stack {
    flex-direction: column;
    gap: 10px;
    display: flex;
}

.review-card {
    background: #fff;
    border-radius: 14px;
    flex: 1;
    padding: 24px 26px;
}

.review-card-top {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.review-card-top > svg {
    width: 24px;
    color: var(--tiffany-dark);
}

.review-card-top > div {
    color: var(--gold);
    display: flex;
}

.review-card > p {
    color: #28383b;
    margin: 16px 0 20px;
    font: 400 15px/1.55 Georgia, serif;
}

.review-card footer {
    justify-content: space-between;
    align-items: end;
    display: flex;
}

.review-card footer > span {
    flex-direction: column;
    gap: 4px;
    display: flex;
}

.review-card footer strong {
    font-size: 11px;
}

.review-card footer small {
    color: var(--muted);
    font-size: 9px;
}

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-layout {
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
    display: grid;
}

.faq-list {
    border-top: 1px solid var(--line);
}

/* Booking */
.booking-section {
    background: var(--deep);
    color: #fff;
    padding: 100px 0;
    scroll-margin-top: 76px;
}

.booking-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    display: grid;
}

.booking-copy > p {
    color: var(--tiffany);
}

.booking-copy > span {
    color: #ffffffa1;
    max-width: 440px;
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.6;
    display: block;
}

.booking-copy > div {
    color: var(--tiffany);
    align-items: center;
    gap: 12px;
    margin-top: 38px;
    display: flex;
}

.booking-copy > div svg {
    width: 23px;
}

.booking-copy > div strong {
    font: 400 22px Georgia, serif;
}

.booking-form {
    background: #ffffff0e;
    border: 1px solid #ffffff26;
    border-radius: 17px;
    padding: 30px;
}

.booking-form label {
    flex-direction: column;
    gap: 8px;
    display: flex;
}

.booking-form label > span {
    color: #ffffffa1;
    letter-spacing: .08em;
    font-size: 9px;
    font-weight: 800;
}

.booking-form input, .booking-form select {
    color: #fff;
    background: #ffffff13;
    border: 1px solid #ffffff2b;
    border-radius: 9px;
    outline: none;
    width: 100%;
    height: 50px;
    padding: 0 14px;
    font-size: 12px;
}

.booking-form option {
    color: var(--ink);
}

.booking-form input:focus, .booking-form select:focus {
    border-color: var(--tiffany);
}

.booking-form input::placeholder {
    color: #ffffff57;
}

.form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
    display: grid;
}

.booking-submit {
    background: var(--tiffany);
    color: #042522;
    width: 100%;
    margin-top: 20px;
}

.booking-form > small {
    color: #fff6;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 8px;
    display: flex;
}

.booking-form > small svg {
    width: 13px;
}

/* Footer */
.footer {
    color: #fff;
    background: #020b0e;
}

.footer-top {
    align-items: center;
    gap: 40px;
    min-height: 145px;
    display: flex;
}

.footer-top > p {
    color: #ffffff7a;
    margin: 0 auto;
    font-size: 11px;
}

.footer-top > div {
    color: #ffffffa6;
    gap: 19px;
    font-size: 10px;
    display: flex;
}

.footer-bottom {
    color: #ffffff57;
    letter-spacing: .08em;
    border-top: 1px solid #ffffff17;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
    font-size: 8px;
    display: flex;
}

/* Floating WhatsApp */
.floating-whatsapp {
    z-index: 35;
    color: #052411;
    background: #25d366;
    border-radius: 999px;
    align-items: center;
    gap: 8px;
    height: 49px;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    position: fixed;
    bottom: 22px;
    right: 22px;
    box-shadow: 0 12px 34px #00000038;
}

.floating-whatsapp svg {
    width: 18px;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
}

/* Responsive */
@media (width <= 1020px) {
    .desktop-nav {
        display: none;
    }
    
    .header-contact {
        margin-left: auto;
    }
    
    .location-shell {
        grid-template-columns: 1fr;
    }
    
    .quick-nav {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tour-grid, .package-grid, .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card:last-child, .service-card:last-child {
        grid-column: 1/-1;
    }
    
    .package-card.featured {
        margin-top: 0;
    }
    
    .trust-layout, .reviews-grid, .faq-layout, .booking-layout {
        gap: 48px;
    }
}

@media (width <= 720px) {
    .shell {
        width: min(100% - 28px, 600px);
    }
    
    .section {
        padding-block: 72px;
    }
    
    .nav-row {
        height: 72px;
    }
    
    .brand-mark {
        font-size: 27px;
    }
    
    .brand-copy strong {
        font-size: 11px;
    }
    
    .header-contact {
        display: none;
    }
    
    .menu-button {
        display: block;
    }
    
    .mobile-menu {
        z-index: 60;
        background: var(--navy);
        color: #fff;
        flex-direction: column;
        width: min(88vw, 370px);
        padding: 24px;
        transition: transform .25s;
        display: flex;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        transform: translate(105%);
        box-shadow: -20px 0 60px #00000059;
    }
    
    .mobile-menu.open {
        transform: translate(0);
    }
    
    .mobile-menu-head {
        justify-content: space-between;
        align-items: center;
        margin-bottom: 48px;
        display: flex;
    }
    
    .mobile-menu-head button {
        color: #fff;
        background: 0 0;
        border: 0;
        padding: 7px;
    }
    
    .mobile-menu > p {
        color: var(--tiffany);
        letter-spacing: .15em;
        margin: 0 0 14px;
        font-size: 9px;
        font-weight: 900;
    }
    
    .mobile-menu > a:not(.mobile-menu-contact) {
        border-bottom: 1px solid #ffffff1f;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        font: 400 20px Georgia, serif;
        display: flex;
    }
    
    .mobile-menu > a svg {
        width: 19px;
        color: var(--tiffany);
    }
    
    .mobile-menu-contact {
        color: #052411;
        background: #25d366;
        border-radius: 999px;
        justify-content: center;
        align-items: center;
        gap: 9px;
        min-height: 52px;
        margin-top: auto;
        font-size: 11px;
        font-weight: 900;
        display: flex;
    }
    
    .menu-backdrop {
        z-index: 55;
        background: #0000008c;
        border: 0;
        display: block;
        position: fixed;
        inset: 0;
    }
    
    .hero {
        align-items: end;
        min-height: 710px;
        padding-bottom: 105px;
    }
    
    .hero-image {
        object-position: 65% center;
    }
    
    .hero-overlay {
        background: linear-gradient(#020d1140, #020d11ad 36%, #020d11fa);
    }
    
    .hero-content {
        padding-top: 105px;
    }
    
    .hero-badge {
        margin-bottom: 19px;
        font-size: 8px;
    }
    
    .hero h1 {
        max-width: 520px;
        font-size: clamp(43px, 13vw, 60px);
        line-height: 1.01;
    }
    
    .hero-content > p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.55;
    }
    
    .hero-actions {
        flex-direction: column;
        margin-top: 25px;
    }
    
    .button {
        width: 100%;
        min-height: 52px;
    }
    
    .hero-proof {
        gap: 22px;
        margin-top: 30px;
    }
    
    .hero-proof > span {
        gap: 7px;
    }
    
    .hero-proof strong {
        font-size: 24px;
    }
    
    .hero-proof svg {
        width: 20px;
    }
    
    .hero-proof small {
        font-size: 8px;
    }
    
    .location-shell {
        border-radius: 15px;
        margin-top: -70px;
        padding: 20px;
    }
    
    .location-copy h2 {
        font-size: 21px;
    }
    
    .location-buttons {
        grid-template-columns: 1fr;
    }
    
    .location-buttons button {
        min-height: 64px;
    }
    
    .quick-nav {
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: calc(100% - 14px);
        margin-left: 14px;
        margin-right: 0;
        padding: 20px 14px 6px 0;
        display: flex;
        overflow-x: auto;
    }
    
    .quick-nav::-webkit-scrollbar {
        display: none;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tour-grid::-webkit-scrollbar {
        display: none;
    }
    
    .quick-nav > a {
        scroll-snap-align: start;
        min-width: 155px;
        min-height: 72px;
    }
    
    .section-heading {
        flex-direction: column;
        align-items: start;
        gap: 15px;
        margin-bottom: 24px;
    }
    
    .section-heading h2, .trust-intro h2, .faq-intro h2, .booking-copy h2 {
        font-size: 39px;
    }
    
    .section-heading > span {
        font-size: 11px;
    }
    
    .category-tabs {
        scrollbar-width: none;
        margin-right: -14px;
        padding-right: 14px;
        overflow-x: auto;
    }
    
    .category-tabs a {
        flex: none;
    }
    
    .tour-grid {
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: calc(100% + 14px);
        margin-right: -14px;
        padding-right: 14px;
        display: flex;
        overflow-x: auto;
    }
    
    .tour-card {
        scroll-snap-align: start;
        flex: 0 0 84%;
        min-height: 450px;
    }
    
    .tour-info h3 {
        font-size: 25px;
    }
    
    .package-grid, .service-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card:last-child, .service-card:last-child {
        grid-column: auto;
    }
    
    .package-card {
        min-height: 430px;
        padding: 25px;
    }
    
    .package-head > strong {
        font-size: 43px;
    }
    
    .package-note {
        text-align: left;
        align-items: flex-start;
        line-height: 1.45;
    }
    
    .service-card {
        min-height: 390px;
    }
    
    .secondary-services {
        grid-template-columns: 1fr;
    }
    
    .trust-section {
        padding-top: 72px;
    }
    
    .trust-layout, .reviews-grid, .faq-layout, .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-features {
        margin: 0 -14px;
    }
    
    .trust-features article {
        min-height: 175px;
        padding: 20px;
    }
    
    .trust-features strong {
        font-size: 16px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }
    
    .steps > div {
        border-bottom: 1px solid #ffffff21;
        border-right: 0;
        min-height: 118px;
    }
    
    .video-review {
        min-height: 430px;
    }
    
    .review-card {
        padding: 21px;
    }
    
    .faq-list button {
        font-size: 16px;
    }
    
    .booking-section {
        padding: 72px 0 90px;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding-bottom: 69px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 35px 0;
    }
    
    .footer-top > p {
        margin: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 5px;
    }
    
    .floating-whatsapp {
        display: none;
    }
    
    .mobile-bottom-nav {
        z-index: 45;
        height: 68px;
        padding: 6px max(6px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-left));
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        background: #fffffff5;
        border-top: 1px solid #07171a1f;
        grid-template-columns: repeat(5, 1fr);
        display: grid;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        box-shadow: 0 -8px 30px #061a221a;
    }
    
    .mobile-bottom-nav a {
        color: #687779;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
        font-size: 8px;
        display: flex;
    }
    
    .mobile-bottom-nav svg {
        width: 19px;
        height: 19px;
    }
    
    .mobile-bottom-nav .mobile-wa {
        color: #052411;
        background: #25d366;
        border-radius: 12px 12px 9px 9px;
        margin: -14px 0 1px;
        box-shadow: 0 6px 18px #25d36640;
    }
}

@media (width <= 420px) {
    .hero-proof {
        gap: 14px;
    }
    
    .hero-proof small {
        letter-spacing: 0;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
    }
}