:root {
    /* Fonts */
    --font-primary: "Inter", sans-serif;
    --font-poppins: "Poppins", sans-serif;

    /*Colors */
    --black: #1A1A1A;
    --white: #ffffff;
    --primary: #C9A96E;
    --primary-dark: #B8975A;
    --nevy-blue: #1B2E4A;
    --nevy-blue-2: #16253C;
    --secondary: #6B7280;
    --sky-blue: #F7F8FA;
    --border: #E5E7EB;

    /* Layout */
    --container-max: 1440px;
    --container-pad: 80px;

    /* Effects */
    --radius: 12px;
    --radius-sm: 6px;
    --shadow-card: 0 10px 30px rgba(16, 24, 40, 0.08);
    --shadow-card-hover: 0 18px 44px rgba(16, 24, 40, 0.14);

}


/* Default styles start */

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

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-poppins);
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 64px;
}

.h2,
h2 {
    font-size: 38px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

.h4-small {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

.font-primary {
    font-family: var(--font-primary);
}

.font-poppin {
    font-family: var(--font-poppins);
}



/* COLORS */
.bg-black-color {
    background-color: var(--black);
}

.bg-white-color {
    background-color: var(--white);
}

.bg-primary-color {
    background-color: var(--primary);
}

.bg-secondary-color {
    background-color: var(--secondary);
}

.bg-skyblue-color {
    background-color: var(--sky-blue);
}

.bg-nevyblue-color {
    background-color: var(--nevy-blue);
}




.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-skyblue {
    color: var(--sky-blue);
}


.color-nevyblue {
    color: var(--nevy-blue);
}

/* COLORS */

/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary);
}

/* Button Css Start */
.prime-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform:uppercase;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 16px 32px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}


/* ---- Index Page Style start ---- */

/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
}


.navbar {
    padding: 10px 0;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
    background-color: var(--nevy-blue);
    color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 200px;
    height: 47px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

.navbar-brand img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.nav-item {
    width: max-content;
}

.nav-link {
    text-transform: capitalize;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    width: max-content;
    color: var(--white);
    margin-right: 32px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}


.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.nav-item:last-child .nav-link {
    margin-right: 0px;
}

/* Header styles end */


/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.sec-spacing {
    padding: 100px 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--nevy-blue);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    left: 0;
    color: #fff;
}

/* Accessible focus rings */
a:focus-visible,
button:focus-visible,
.prime-btn:focus-visible,
[data-fancybox]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.prime-btn:hover,
.prime-btn:focus {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(201, 169, 110, 0.35);
}

.prime-btn:active {
    transform: translateY(0);
}

/* Outline variant (for dark sections) */
.btn-outline-light {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-sm);
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: var(--white);
    color: var(--nevy-blue);
}


/* ============================================================
   SECTION HEADER (eyebrow + title + subtitle)
   ============================================================ */
.section-header {
    max-width: 720px;
}

.section-header.head-center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    /* font-size: clamp(30px, 4vw, 46px); */
    line-height: 1.15;
    color: var(--nevy-blue);
}

.section-title.caps {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    margin-top: 16px;
}

.on-dark .section-title,
.on-dark .h1,
.on-dark h2 {
    color: var(--white);
}

.on-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.72);
}


/* ============================================================
   HEADER POSITIONING + CTA
   ============================================================ */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 222;
}

.navbar {
    padding: 18px 0;
}

.navbar-brand img {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s;
}

.header-phone i {
    color: var(--primary);
}

.header-phone:hover {
    color: var(--primary);
}

.navbar .prime-btn {
    padding: 13px 26px;
}


/* ============================================================
   LOADER
   ============================================================ */
.loader-wrap {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrap.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.loader-logo {
    width: 200px;
    height: auto;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-bar {
    width: 180px;
    height: 3px;
    border-radius: 3px;
    background: var(--border);
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 40%;
    height: 100%;
    border-radius: 3px;
    background: var(--primary);
    animation: loaderSlide 1.1s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

@keyframes loaderSlide {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}


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

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    margin: 0;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(27, 46, 74, 0.55) 0%, rgba(27, 46, 74, 0.28) 40%, rgba(27, 46, 74, 0.45) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-card {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    padding: 52px 56px;
    border-radius: 20px;
    background: rgba(27, 46, 74, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.hero-title {
    font-family: var(--font-poppins);
    font-weight: 800;
    /* font-size: clamp(40px, 7vw, 64px); */
    line-height: 1.05;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.hero-subtitle {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: clamp(18px, 2.4vw, 23px);
    line-height: 1.3;
    color: var(--primary);
    margin-top: 18px;
}

.hero-text {
    max-width: 640px;
    margin: 22px auto 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 400;
}

.hero-btn {
    margin-top: 30px;
}


/* ============================================================
   ICONS (inline SVG sprite)
   ============================================================ */
.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.ic {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex: 0 0 auto;
    vertical-align: middle;
}


/* ============================================================
   ABOUT
   ============================================================ */
   .about-media {
    height: 100%;
   }
.about-media img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    /* aspect-ratio: 600 / 450; */
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin: 0;
    height: 100%;
}

.about-content .eyebrow {
    margin-bottom: 14px;
}

.about-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.check-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--nevy-blue);
}

.check-ic {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.14);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.check-ic .ic {
    width: 13px;
    height: 13px;
}


/* ============================================================
   ROOMS
   ============================================================ */
.our-room .section-header {
    margin-bottom: 48px;
}

.rooms-swiper {
    padding-bottom: 4px;
}

.our-room .swiper-slide {
    height: auto;
    display: flex;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.room-card-img {
    aspect-ratio: 405 / 260;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    margin: 0;
    transition: transform 0.6s ease;
}

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

.room-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.room-name {
    font-family: var(--font-poppins);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--nevy-blue);
}

.room-price {
    font-family: var(--font-poppins);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.room-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.room-beds {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.room-amenities li {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.room-amenities .ic {
    color: var(--primary);
}

.room-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 20px 0;
    opacity: 1;
}

.room-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Swiper pagination (on dark) */
.our-room .swiper-pagination {
    position: static;
    margin-top: 34px;
}

.our-room .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.45;
    width: 9px;
    height: 9px;
    transition: opacity 0.3s, background 0.3s;
}

.our-room .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

@media (min-width: 992px) {
    .our-room .swiper-pagination {
        display: none;
    }
}


/* ============================================================
   AMENITIES
   ============================================================ */
.service-amenities {
    background: var(--sky-blue);
}

.service-amenities .section-header {
    margin-bottom: 48px;
}

.amenity-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.amenity-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 169, 110, 0.14);
    color: var(--primary);
    margin-bottom: 20px;
}

.amenity-ic .ic {
    width: 24px;
    height: 24px;
}

.amenity-title {
    font-family: var(--font-poppins);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--nevy-blue);
}

.amenity-desc {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}


/* ============================================================
   EXPERIENCE (split band)
   ============================================================ */
.experience {
    overflow: hidden;
}

.experience-inner {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.experience-media {
    flex: 0 0 45.5%;
    max-width: 45.5%;
    overflow: hidden;
}

.experience-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    margin: 0;
}

.experience-content {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding: 96px 64px;
}

.experience-content-inner {
    max-width: 656px;
}

.experience-content .eyebrow {
    margin-bottom: 16px;
}

.experience-text {
    margin: 24px 0 32px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}


/* ============================================================
   GALLERY (mosaic + Fancybox)
   ============================================================ */
.gallery .section-header {
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.gallery-item.wide {
    grid-column: span 3;
    aspect-ratio: 628 / 320;
}

.gallery-item.tall {
    grid-column: span 2;
    aspect-ratio: 410 / 280;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    margin: 0;
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 46, 74, 0) 40%, rgba(27, 46, 74, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.gallery-zoom {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-zoom .ic {
    width: 22px;
    height: 22px;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.feedback {
    background: var(--sky-blue);
}

.feedback .section-header {
    margin-bottom: 48px;
}

.feedback .swiper-slide {
    height: auto;
    display: flex;
}

.review-card {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.review-stars {
    display: inline-flex;
    gap: 4px;
    color: var(--primary);
    margin-bottom: 20px;
}

.review-stars .ic {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--nevy-blue);
    font-weight: 500;
    flex: 1;
}

.review-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 600;
    color: var(--nevy-blue);
}

.review-date {
    font-size: 13px;
    color: var(--secondary);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.14);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.verified-badge .ic {
    width: 12px;
    height: 12px;
}

.feedback .swiper-pagination {
    position: static;
    margin-top: 34px;
}

.feedback .swiper-pagination-bullet {
    background: var(--nevy-blue);
    opacity: 0.25;
    width: 9px;
    height: 9px;
}

.feedback .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

@media (min-width: 992px) {
    .feedback .swiper-pagination {
        display: none;
    }
}


/* ============================================================
   LOCATION
   ============================================================ */
.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    line-height: 0;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}

.location-info .eyebrow {
    margin-bottom: 14px;
}

.contact-lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.contact-lines li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--secondary);
    font-weight: 500;
}

.contact-ic {
    flex: 0 0 auto;
    color: var(--primary);
    display: inline-flex;
    margin-top: 1px;
}

.contact-ic .ic {
    width: 18px;
    height: 18px;
}

.contact-lines a {
    color: var(--secondary);
    transition: color 0.3s;
}

.contact-lines a:hover {
    color: var(--primary);
}

.location-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 28px 0;
    opacity: 1;
}

.attractions-title {
    font-family: var(--font-poppins);
    font-size: 20px;
    font-weight: 600;
    color: var(--nevy-blue);
    margin-bottom: 16px;
}

.attractions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.attractions-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--secondary);
    font-weight: 500;
}

.attractions-list li::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.location-btn {
    margin-top: 32px;
}


/* ============================================================
   FAQ (native <details> accordion)
   ============================================================ */
.faq {
    background: var(--sky-blue);
}

.faq .section-header {
    margin-bottom: 48px;
}

.faq-grid {
    max-width: 1000px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-poppins);
    font-size: 17px;
    font-weight: 600;
    color: var(--nevy-blue);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-ic {
    flex: 0 0 auto;
    display: inline-flex;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-ic .ic {
    width: 18px;
    height: 18px;
}

.faq-item[open] .faq-ic {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--secondary);
    font-weight: 500;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer-wrap {
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    display: inline-block;
    width: 205px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    margin: 0;
}

.footer-about {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 380px;
    font-weight: 400;
}

.footer-heading {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 22px;
}

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

.footer-links li {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 64px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


