/* ============================================================
       RESET & ROOT VARIABLES
    ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C8913A;
    --gold-light: #E8B96A;
    --gold-dark: #96681A;
    --teal: #1B5E78;
    --teal-light: #2A87AE;
    --teal-dark: #0D3D50;
    --cream: #FBF7EF;
    --cream-dark: #EFE4D0;
    --orange: #DD7840;
    --dark: #1C2226;
    --text: #3C3C3C;
    --text-light: #787878;
    --white: #FFFFFF;
    --nav-h: 82px;
    --sh: 0 2px 12px rgba(0, 0, 0, .09);
    --shm: 0 6px 28px rgba(0, 0, 0, .14);
    --shl: 0 14px 50px rgba(0, 0, 0, .18);
    --r: 12px;
    --rl: 24px;
    --tr: all .35s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.75;
}

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

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

ul {
    list-style: none;
}

/* ============================================================
       TYPOGRAPHY HELPERS
    ============================================================ */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.section-badge {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    color: var(--dark);
}

.section-title h2 span {
    color: var(--gold);
}

.divider {
    width: 68px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 3px;
    margin: 14px auto 28px;
}

.divider-left {
    margin-left: 0;
}

/* ============================================================
       BUTTONS
    ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .93rem;
    letter-spacing: .5px;
    cursor: pointer;
    border: none;
    transition: var(--tr);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    box-shadow: 0 5px 18px rgba(200, 145, 58, .35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 145, 58, .45);
}

.btn-teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    box-shadow: 0 5px 18px rgba(27, 94, 120, .3);
}

.btn-teal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 94, 120, .4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--teal-dark);
    box-shadow: var(--shm);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shl);
}

/* ============================================================
       LAYOUT
    ============================================================ */
section {
    padding: 90px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
       HEADER / NAVBAR
    ============================================================ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 900;
    background: transparent;
    transition: var(--tr);
}

#main-header.scrolled {
    background: var(--white);
    box-shadow: var(--sh);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 82px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* — Logo — */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(200, 145, 58, .4);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2.5px;
    line-height: 1;
    transition: var(--tr);
}

#main-header.scrolled .logo-main {
    color: var(--teal-dark);
}

.logo-sub {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: var(--tr);
}

#main-header.scrolled .logo-sub {
    color: var(--gold);
}

/* — Desktop Nav — */
.desktop-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

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

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--white);
    border-radius: 8px;
    transition: var(--tr);
    white-space: nowrap;
}

#main-header.scrolled .nav-links>li>a {
    color: var(--dark);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--gold);
    background: rgba(200, 145, 58, .12);
}

.nav-links>li>a .fa-chevron-down {
    font-size: .65rem;
    transition: transform .3s;
}

.has-dropdown:hover>a .fa-chevron-down {
    transform: rotate(180deg);
}

/* — Dropdown — */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 235px;
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--shl);
    padding: 10px;
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--tr);
    z-index: 200;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 15px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    transition: var(--tr);
}

.dropdown li a i {
    width: 18px;
    color: var(--gold);
    text-align: center;
}

.dropdown li a:hover {
    background: var(--cream);
    color: var(--teal);
    padding-left: 20px;
}

/* — Book Now — */
.nav-book-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .4px;
    box-shadow: 0 4px 16px rgba(200, 145, 58, .35);
    transition: var(--tr);
    white-space: nowrap;
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(200, 145, 58, .5);
}

/* — Hamburger — */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5.5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 950;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--tr);
}

#main-header.scrolled .hamburger span {
    background: var(--dark);
}

/* ============================================================
       MOBILE SIDEBAR
    ============================================================ */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--tr);
    backdrop-filter: blur(4px);
}

.mob-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mob-sidebar {
    position: fixed;
    top: 0;
    left: -310px;
    width: 290px;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    overflow-y: auto;
    transition: left .42s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 6px 0 35px rgba(0, 0, 0, .22);
}

.mob-sidebar.open {
    left: 0;
}

.mob-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.mob-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.mob-brand i {
    color: var(--gold-light);
}

.mob-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: var(--white);
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tr);
}

.mob-close:hover {
    background: rgba(255, 255, 255, .3);
}

.mob-nav {
    padding: 10px 0;
}

.mob-nav>ul>li>a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: .92rem;
    color: var(--dark);
    border-bottom: 1px solid #f0ece6;
    transition: var(--tr);
}

.mob-nav>ul>li>a i:first-child {
    width: 18px;
    color: var(--gold);
    text-align: center;
}

.mob-nav>ul>li>a:hover {
    background: var(--cream);
    color: var(--teal);
    padding-left: 28px;
}

.mob-drop-toggle {
    cursor: pointer;
}

.mob-drop-toggle .arrow {
    margin-left: auto;
    font-size: .7rem;
    transition: transform .3s;
}

.mob-drop-toggle.active .arrow {
    transform: rotate(180deg);
}

.mob-sub {
    display: none;
    background: var(--cream);
    border-bottom: 1px solid #e8e0d5;
}

.mob-sub.open {
    display: block;
}

.mob-sub li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px 12px 48px;
    font-size: .86rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid #e5ddd3;
    transition: var(--tr);
}

.mob-sub li a i {
    width: 16px;
    color: var(--gold);
    text-align: center;
}

.mob-sub li a:hover {
    color: var(--teal);
    background: var(--cream-dark);
}

.mob-book {
    background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
    color: var(--white) !important;
    margin: 15px 18px !important;
    border-radius: 50px !important;
    justify-content: center !important;
    border-bottom: none !important;
    padding: 14px 20px !important;
    box-shadow: 0 5px 18px rgba(200, 145, 58, .35);
}

/* ============================================================
       MARQUEE
    ============================================================ */
.marquee-outer {
    overflow: hidden;
    width: 100%;
    margin: 12px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: mqLeft 38s linear infinite;
}

.marquee-track.rev {
    animation: mqRight 38s linear infinite;
}

.marquee-track:hover,
.marquee-track.rev:hover {
    animation-play-state: paused;
}

@keyframes mqLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes mqRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.marquee-item {
    flex-shrink: 0;
    border-radius: var(--r);
    overflow: hidden;
    display: block;
    position: relative;
}

.marquee-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 94, 120, .3), rgba(200, 145, 58, .2));
    opacity: 0;
    transition: var(--tr);
}

.marquee-item:hover::after {
    opacity: 1;
}

.marquee-item img {
    width: 270px;
    height: 195px;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.marquee-item:hover img {
    transform: scale(1.06);
}

/* ============================================================
       CAROUSEL (Multi-item + Single)
    ============================================================ */
.carousel-wrap {
    position: relative;
}

.carousel-overflow {
    overflow: hidden;
    border-radius: var(--r);
}

.carousel-track {
    display: flex;
    transition: transform .62s cubic-bezier(.4, 0, .2, 1);
}

.c-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: .95rem;
    box-shadow: var(--shm);
    transition: var(--tr);
    z-index: 10;
}

.c-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.c-prev {
    left: -25px;
}

.c-next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}

.c-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream-dark);
    cursor: pointer;
    transition: var(--tr);
    border: none;
}

.c-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ============================================================
       HERO SECTION
    ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/jaiganga1.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgb(0 0 0 / 82%) 0%, rgb(0 0 0 / 65%) 40%, rgb(253 251 250 / 25%) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    padding-top: var(--nav-h);
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero-eyebrow i {
    color: var(--gold-light);
}

.hero h1 {
    font-size: clamp(1.2rem, 4.5vw, 3.2rem);
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
    margin-bottom: 16px;
    font-style: italic;
}

.hero h1 span {
    color: var(--gold-light);
    font-style: normal;
}

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    margin: 0 auto 15px;
    font-weight: 400;
}

/* Search Card */
.search-card {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    border-radius: var(--rl);
    padding: 25px 25px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
    box-shadow: var(--shl);
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid rgba(200, 145, 58, .2);
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 150px;
}

.search-field label {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    transition: var(--tr);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.search-field input:focus,
.search-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 145, 58, .15);
}

.search-field.wide {
    flex: 1.5;
}

.search-btn-wrap {
    flex-shrink: 0;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--tr);
    box-shadow: 0 5px 18px rgba(200, 145, 58, .4);
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 145, 58, .5);
}

/* ============================================================
       ABOUT SECTION
    ============================================================ */
.about-section {
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: var(--rl);
    position: relative;
    z-index: 1;
    box-shadow: var(--shl);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    border-radius: var(--r);
    padding: 18px 24px;
    text-align: center;
    z-index: 2;
    box-shadow: var(--shm);
}

.about-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1;
}

.about-badge span {
    font-size: .78rem;
    font-weight: 700;
    opacity: .9;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: .97rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0;
}

.stat-box {
    background: var(--cream);
    border-radius: var(--r);
    padding: 18px 14px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.stat-box strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}

.stat-box span {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-light);
}

/* ============================================================
       PACKAGES SECTION
    ============================================================ */
.packages-section {
    background: var(--cream);
    overflow: hidden;
}

.packages-section .section-title {
    margin-bottom: 40px;
}

/* ============================================================
       HOMESTAY SECTION
    ============================================================ */
.homestay-section {
    background: var(--white);
}

.room-card {
    background: var(--white);
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: var(--tr);
    margin: 10px 12px;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shl);
}

.room-img-wrap {
    position: relative;
    overflow: hidden;
}

.room-img-wrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .5s ease;
}

.room-card:hover .room-img-wrap img {
    transform: scale(1.06);
}

.room-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .5px;
}

.room-info {
    padding: 22px 22px 24px;
}

.room-info h3 {
    font-size: 1.18rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.room-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-light);
}

.room-meta span i {
    color: var(--gold);
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--cream-dark);
}

.room-price {
    font-family: 'Playfair Display', serif;
    color: var(--teal-dark);
}

.room-price strong {
    font-size: 1.55rem;
    color: var(--gold);
}

.room-price span {
    font-size: .78rem;
    color: var(--text-light);
}

.room-book-btn {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 800;
    transition: var(--tr);
    border: none;
    cursor: pointer;
}

.room-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 94, 120, .35);
}

/* ============================================================
       SERVICES SECTION
    ============================================================ */
.services-section {
    background: var(--cream);
    overflow: hidden;
}

.service-item {
    flex-shrink: 0;
    width: 250px;
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    display: block;
}

.service-item img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.service-item:hover img {
    transform: scale(1.07);
}

.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 61, 80, .9), transparent);
    color: var(--white);
    padding: 26px 15px 14px;
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .3px;
}

/* ============================================================
       TESTIMONIALS SECTION
    ============================================================ */
.testi-section {
    background: var(--teal-dark);
    overflow: hidden;
}

.testi-section .section-badge {
    color: var(--gold-light);
}

.testi-section .section-title h2 {
    color: var(--white);
}

.testi-section .divider {
    background: linear-gradient(90deg, var(--gold-light), var(--orange));
}

.testi-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border-radius: var(--rl);
    padding: 38px 36px;
    text-align: center;
    margin: 10px 15px;
}

.testi-quote-icon {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 18px;
    opacity: .7;
}

.testi-text {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 28px;
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
}

.testi-name strong {
    display: block;
    font-size: .95rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.testi-name span {
    font-size: .78rem;
    color: var(--gold-light);
    font-weight: 700;
}

.testi-stars {
    color: var(--gold-light);
    font-size: .85rem;
    margin-bottom: 5px;
}

/* ============================================================
       GALLERY SECTION
    ============================================================ */
.gallery-section {
    background: var(--dark);
    overflow: hidden;
}

.gallery-section .section-badge {
    color: var(--gold-light);
}

.gallery-section .section-title h2 {
    color: var(--white);
}

.gallery-section .divider {
    background: linear-gradient(90deg, var(--gold-light), var(--orange));
}

.gallery-section .marquee-item img {
    width: 260px;
    height: 185px;
}

.gallery-cta {
    text-align: center;
    margin-top: 38px;
}

/* ============================================================
       WHY CHOOSE US SECTION
    ============================================================ */
.whyus-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF7EF 100%);
    padding: 90px 0;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 28px;
}

.whyus-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--sh);
    transition: var(--tr);
    border-bottom: 4px solid transparent;
}

.whyus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shl);
    border-bottom-color: var(--gold);
}

.whyus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200, 145, 58, 0.1), rgba(221, 120, 64, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--tr);
}

.whyus-card:hover .whyus-icon {
    background: linear-gradient(135deg, var(--gold), var(--orange));
}

.whyus-icon i {
    font-size: 2rem;
    color: var(--gold);
    transition: var(--tr);
}

.whyus-card:hover .whyus-icon i {
    color: var(--white);
}

.whyus-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.whyus-card p {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.7;
}

/* ============================================================
       LOCAL ATTRACTIONS SECTION
    ============================================================ */
.attractions-section {
    background: var(--cream);
    overflow: hidden;
}

.attractions-carousel {
    padding: 0 40px;
    position: relative;
}

.attractions-carousel .carousel-overflow {
    overflow: hidden;
    border-radius: var(--r);
}

.attractions-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.attraction-slide {
    flex-shrink: 0;
}

.attraction-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh);
    transition: var(--tr);
    height: 100%;
    margin: 10px 0px;
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shl);
}

.attraction-img-wrap {
    position: relative;
    overflow: hidden;
}

.attraction-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-img-wrap img {
    transform: scale(1.06);
}

.attraction-distance {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.attraction-distance i {
    color: var(--gold);
    margin-right: 4px;
    font-size: 0.7rem;
}

.attraction-info {
    padding: 10px;
}

.attraction-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.attraction-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.attraction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--tr);
}

.attraction-link:hover {
    gap: 12px;
    color: var(--orange);
}

.attractions-carousel .c-prev,
.attractions-carousel .c-next {
    background: var(--white);
    color: var(--gold);
    border: 1px solid rgba(200, 145, 58, 0.3);
}

.attractions-carousel .c-prev:hover,
.attractions-carousel .c-next:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ============================================================
       ENQUIRY SECTION
    ============================================================ */
.enquiry-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF7EF 100%);
    padding: 90px 0;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 20px;
}

/* Enquiry Form Styles */
.enquiry-form-wrap {
    background: var(--white);
    border-radius: var(--rl);
    padding: 40px;
    box-shadow: var(--shl);
    transition: var(--tr);
}

.enquiry-form-wrap:hover {
    transform: translateY(-5px);
    box-shadow: var(--shl);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--r);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    transition: var(--tr);
    outline: none;
}

.form-group textarea {
    padding: 15px 20px 15px 50px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 145, 58, 0.15);
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--tr);
}

.form-group textarea + i {
    top: 22px;
    transform: none;
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: var(--orange);
}

.enquiry-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Contact Info Single Card Styles */
.contact-info-single {
    background: var(--white);
    border-radius: var(--rl);
    padding: 40px;
    box-shadow: var(--shl);
    transition: var(--tr);
    border-left: 4px solid var(--gold);
}

.contact-info-single:hover {
    transform: translateY(-5px);
    box-shadow: var(--shl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(200, 145, 58, 0.1), rgba(221, 120, 64, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tr);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--gold), var(--orange));
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--gold);
    transition: var(--tr);
}

.contact-item:hover .contact-icon i {
    color: var(--white);
}

.contact-text {
    flex: 1;
}

.contact-label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-text a {
    color: var(--text-light);
    transition: var(--tr);
    display: inline-block;
}

.contact-text a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

/* ============================================================
       FOOTER
    ============================================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
    padding: 75px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}

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

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: var(--gold);
}

.footer-brand p {
    font-size: .88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6);
    max-width: 270px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    transition: var(--tr);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(200, 145, 58, .4);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--tr);
}

.footer-col ul li a i {
    color: var(--gold);
    font-size: .8rem;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 55px;
    padding: 22px 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
    color: var(--gold);
}

/* ============================================================
       SCROLL TO TOP
    ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(200, 145, 58, .45);
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--tr);
    z-index: 800;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(200, 145, 58, .55);
}

/* ============================================================
       FADE-IN ANIMATION
    ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1100px) {
    .about-grid {
        gap: 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 1024px) {

    .desktop-nav,
    .nav-book-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .c-prev {
        left: 5px;
    }

    .c-next {
        right: 5px;
    }

    .attractions-carousel {
        padding: 0 20px;
    }
}

@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap {
        max-width: 560px;
        margin: 0 auto;
    }

    .about-img-wrap::before {
        display: none;
    }

    .about-badge {
        right: 20px;
    }
    
    .enquiry-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .enquiry-form-wrap {
        padding: 30px;
    }
    
    .contact-info-single {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .hero{
        min-height: 50vh;
    }

    #main-header{
        background-color: #0D3D50;
    }

    .hero-bg{
        margin-top: 80px;
    }
    .nav-container {
        padding: 0px 20px;
    }

    section {
        padding: 65px 0;
    }

    .container {
        padding: 0 18px;
    }

    .search-card {
        flex-direction: column;
        gap: 12px;
    }

    .search-field {
        min-width: unset;
    }

    .search-btn-wrap {
        width: 100%;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .whyus-card {
        padding: 32px 20px;
    }

    .attraction-img-wrap img {
        height: 180px;
    }

    .attraction-info {
        padding: 16px;
    }

    .attraction-info h3 {
        font-size: 1rem;
    }
}

@media (max-width: 540px) {
    section {
        padding: 52px 0;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .marquee-item img,
    .gallery-section .marquee-item img {
        width: 220px;
        height: 160px;
    }

    .service-item {
        width: 200px;
    }

    .service-item img {
        height: 150px;
    }

    .attractions-carousel {
        padding: 0 10px;
    }
    
    .enquiry-form-wrap {
        padding: 20px;
    }
    
    .contact-info-single {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px 12px 45px;
        font-size: 0.9rem;
    }
    
    .form-group i {
        left: 15px;
        font-size: 1rem;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 0.9rem;
    }
    
    .contact-text p {
        font-size: 0.85rem;
    }
}