*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #faf8f4;
    --warm: #f2ede4;
    --sand: #e8dece;
    --brown: #2c1810;
    --dark: #1a1208;
    --mid: #5a4030;
    --muted: #8a7060;
    --orange: #d4520a;
    --orange-l: #e8703a;
    --gold: #c8920a;
    --gold-l: #e8b030;
    --green: #2d5a27;
    --white: #ffffff;
    --border: rgba(44, 24, 16, 0.1);
    --shadow: 0 4px 30px rgba(44, 24, 16, 0.1);
    --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.18);
    --ff-display: 'Cormorant Garamond', serif;
    --ff-body: 'Outfit', sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.65;
}

/* TOPBAR */
.topbar {
    background: var(--brown);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.topbar-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.topbar a {
    color: var(--gold-l);
    text-decoration: none;
    transition: color .2s;
}

.topbar a:hover {
    color: #fff;
}

.topbar-links {
    display: flex;
    gap: 24px;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(250, 248, 244, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 32px rgba(44, 24, 16, .14);
}

.nav-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

.logo-main {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--brown);
    line-height: 1;
}

.logo-main img {
    width: 140px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    transition: color .2s;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--orange);
}

.right-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-cta {
    background: var(--orange);
    color: #fff;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--orange-l);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 82, 10, .3);
}

/* OFFER STRIP */
.offer-strip {
    background: linear-gradient(90deg, var(--orange) 0%, #b83e00 100%);
    color: #fff;
    text-align: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
}

.offer-strip span {
    font-weight: 800;
    font-size: 16px;
}

.offer-strip a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 10px;
    cursor: pointer;
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
    overflow: hidden;
}

.hero-left {
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 82, 10, .1);
    border: 1px solid rgba(212, 82, 10, .3);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeUp .7s ease both;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(46px, 5vw, 80px);
    font-weight: 800;
    line-height: 1.06;
    color: var(--dark);
    animation: fadeUp .7s .1s ease both;
}

.hero-title em {
    color: var(--orange);
    font-style: normal;
}

.hero-sub {
    font-size: 17px;
    color: var(--mid);
    margin: 24px 0 0;
    max-width: 460px;
    line-height: 1.7;
    animation: fadeUp .7s .2s ease both;
}

.hero-dests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    animation: fadeUp .7s .3s ease both;
}

.dest-tag {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--mid);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    cursor: default;
    transition: all .2s;
    box-shadow: var(--shadow);
}

.dest-tag:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 38px;
    animation: fadeUp .7s .4s ease both;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all .25s;
    box-shadow: 0 6px 24px rgba(212, 82, 10, .3);
}

.btn-primary:hover {
    background: var(--orange-l);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(212, 82, 10, .4);
}

.btn-ghost {
    background: transparent;
    color: var(--brown);
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid var(--border);
    display: inline-block;
    transition: all .25s;
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    animation: fadeUp .7s .5s ease both;
    flex-wrap: wrap;
}

.h-stat-num {
    font-family: var(--ff-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.h-stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
    font-weight: 500;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomIn 1.2s ease both;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--cream) 0%, transparent 18%), linear-gradient(0deg, rgba(26, 18, 8, .35) 0%, transparent 45%);
    z-index: 1;
}

.hero-float-card {
    position: absolute;
    bottom: 48px;
    right: 20px;
    z-index: 2;
    background: #fff;
    border-radius: 18px;
    padding: 20px 26px;
    box-shadow: var(--shadow-lg);
    animation: fadeUp .8s .6s ease both;
}

.hfc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.hfc-price {
    font-family: var(--ff-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.hfc-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

/* MARQUEE */
.marquee-section {
    background: var(--brown);
    padding: 32px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 24s linear infinite;
}

.marquee-item {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    padding: 0 36px;
    white-space: nowrap;
}

.marquee-item em {
    color: var(--gold-l);
    font-style: normal;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* PACKAGES */
.packages {
    padding: 110px 0;
    background: var(--cream);
}

.pkg-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
}

.section-desc {
    color: var(--muted);
    font-size: 16px;
    max-width: 560px;
    margin-top: 14px;
    line-height: 1.7;
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pkg-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .35s, box-shadow .35s;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1.5px solid transparent;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 82, 10, .2);
}

.pkg-card.hot::before {
    content: ' BEST DEAL';
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 6px;
}

.pkg-card.honey::before {
    content: ' HONEYMOON';
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: #c0396b;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 6px;
}

.pkg-img-wrap {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.pkg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.pkg-card:hover .pkg-img {
    transform: scale(1.06);
}

.pkg-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 8, .55) 0%, transparent 60%);
}

.pkg-dur {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, .93);
    color: var(--brown);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.pkg-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-name {
    font-family: var(--ff-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.pkg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}

.pkg-tag {
    background: var(--warm);
    color: var(--mid);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.pkg-hi {
    list-style: none;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pkg-hi li {
    font-size: 13px;
    color: var(--mid);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.pkg-hi li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
}

.pkg-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.price-from {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.price-amt {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.price-amt sup {
    font-size: 16px;
    vertical-align: super;
}

.price-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
}

.pkg-btn {
    background: var(--orange);
    color: #fff;
    padding: 12px 22px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.pkg-btn:hover {
    background: var(--orange-l);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 82, 10, .3);
}

/* GALLERY */
.gallery {
    padding: 0 0 110px;
    background: var(--cream);
}

.gallery-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
}

.g-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.g-item:first-child {
    grid-row: 1 / 3;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s;
}

.g-item:hover img {
    transform: scale(1.07);
}

.g-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 18, 8, .7) 0%, transparent 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 36px 18px 16px;
    opacity: 0;
    transition: opacity .3s;
}

.g-item:hover::after {
    opacity: 1;
}

/* WHY US */
.why {
    padding: 110px 0;
    background: var(--warm);
}

.why-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center .section-desc {
    margin: 14px auto 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
    border: 1.5px solid var(--border);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 82, 10, .2);
}

.why-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(212, 82, 10, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.why-title {
    font-family: var(--ff-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

/* TESTIMONIALS */
.testi {
    padding: 110px 0;
    background: var(--cream);
}

.testi-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}

.testi-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.testi-loc {
    font-size: 12px;
    color: var(--muted);
}

/* CTA BANNER */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brown) 0%, #3d2010 60%, #5a3015 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 82, 10, .12);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(200, 146, 10, .08);
    pointer-events: none;
}

.cta-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: rgba(232, 176, 48, .18);
    border: 1px solid rgba(232, 176, 48, .4);
    color: var(--gold-l);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--ff-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 42px;
    line-height: 1.65;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-o {
    background: var(--orange);
    color: #fff;
    padding: 18px 44px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 8px 28px rgba(212, 82, 10, .5);
}

.cta-btn-o:hover {
    background: var(--orange-l);
    transform: translateY(-2px);
}

.cta-btn-w {
    background: #25d366;
    color: #fff;
    padding: 18px 44px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all .25s;
}

.cta-btn-w:hover {
    background: #1db954;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    padding: 72px 0 10px;
}

.footer-in {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.f-brand-name {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.f-brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #fff;
    max-width: 280px;
}

.f-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-l);
    margin-bottom: 22px;
}

.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.f-links a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}

.f-links a:hover {
    color: #fff;
}

.f-ci {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #fff;
    line-height: 1.55;
}

.f-ci .ico {
    color: var(--gold-l);
    flex-shrink: 0;
}

.footer-bot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    font-size: 13px;
    color: #fff;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bot a {
    color: var(--gold-l);
    text-decoration: none;
}

/* FLOATING */
.float-wa {
    position: fixed;
    bottom: 260px;
    right: 10px;
    width: 48px;
    height: 48px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 500;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
    transition: transform .25s;
    animation: pulse 2.5s infinite;
}

.float-wa:hover {
    transform: scale(1.1);
}

.float-wa svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.float-call {
    position: fixed;
    bottom: 320px;
    right: 10px;
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 500;
    box-shadow: 0 6px 28px rgba(212, 82, 10, .45);
    transition: transform .25s;
    font-size: 22px;
}

.float-call .fa-phone {
    color: white;
}

.float-call:hover {
    transform: scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, .45)
    }

    50% {
        box-shadow: 0 6px 50px rgba(37, 211, 102, .7)
    }
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 8, .65);
    backdrop-filter: blur(7px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(.93) translateY(28px);
    transition: transform .38s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    box-shadow: 0 40px 100px rgba(26, 18, 8, .35);
}

.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: background .2s;
    z-index: 2;
}

.modal-close:hover {
    background: rgba(255, 255, 255, .3);
}

.modal-header {
    background: linear-gradient(135deg, var(--brown), #3d2010);
    padding: 36px 40px 28px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-header::after {
    content: '🏔️';
    position: absolute;
    right: 30px;
    bottom: -12px;
    font-size: 90px;
    opacity: .12;
    line-height: 1;
}

.modal-pretitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-l);
    margin-bottom: 10px;
}

.modal-title {
    font-family: var(--ff-display);
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
}

.modal-body {
    padding: 32px 40px 36px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.frow.full {
    grid-template-columns: 1fr;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--mid);
    text-transform: uppercase;
}

.fi {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--dark);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    -webkit-appearance: none;
}

.fi:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(212, 82, 10, .12);
}

.fi option {
    background: #fff;
    color: var(--dark);
}

.fsub {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 17px;
    font-family: var(--ff-body);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: all .25s;
    box-shadow: 0 6px 24px rgba(212, 82, 10, .3);
}

.fsub:hover {
    background: var(--orange-l);
    transform: translateY(-1px);
    box-shadow: 0 10px 36px rgba(212, 82, 10, .4);
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 12px;
    color: var(--muted);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.08)
    }

    to {
        transform: scale(1)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero {
        grid-template-columns: 1fr
    }

    .hero-right {
        min-height: 420px
    }

    .hero-float-card {
        display: none
    }

    .hero-left {
        padding: 60px 40px
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .g-item:first-child {
        grid-row: auto
    }

    .g-item {
        height: 200px
    }
}

@media(max-width:768px) {
    .pkg-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .frow {
        grid-template-columns: 1fr
    }

    .modal-body {
        padding: 24px
    }

    .modal-header {
        padding: 28px 24px 22px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .hero-left {
        padding: 48px 24px
    }

    .section-top-row {
        flex-direction: column;
        align-items: flex-start
    }

    /* .topbar-links {
        display: none
    } */

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .g-item {
        height: 200px
    }
}

@media(max-width:480px) {
    .hero-actions {
        flex-direction: column
    }

    .btn-primary,
    .btn-ghost {
        text-align: center
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }

    .hero-stats {
        gap: 22px
    }

    .nav-links {
        display: none
    }
}

/* Toggle button hidden on desktop */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    background: #cf4e08;
    padding: 0px 8px;
    color: white;
}

/* Mobile styles */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .nav-cta {
        display: none;
        /* optional: hide CTA on mobile */
    }

    .topbar-inner .address {
        display: none;
    }

    .topbar-inner {
        display: flex;
        justify-content: center;
    }
    .logo-main img {
    width: 100px;
}
}

.side-button {
    position: fixed;
    right:40px;
    top:79%;
    transform: translateY(-50%);
    z-index: 9999;
}

.side-button a {
    display: inline-block;
    background: #d4520a
;
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    font-weight: 600;

    transform: rotate(-90deg);

    position: relative;
    right: -100px;
}

.side-button a:hover {
    background: #b87422;
}