:root {
    /* ===== Brand palette (derived from the logo: #FE5C06) ===== */
    --primary: #FE5C06;          /* logo orange */
    --primary-light: #FF8A3D;    /* lighter orange for gradients */
    --primary-deep: #D94A00;     /* darker orange for hovers */
    --primary-soft: #FFF1E8;     /* tinted surface for cards */

    --ink: #1B130D;              /* warm near-black for headings */
    --ink-soft: #6E6258;         /* warm grey for body copy */
    --surface: #FBF7F4;          /* warm off-white section background */
    --panel: #19120D;            /* warm charcoal for dark sections */
    --outline: #ECE3DB;

    /* Typography */
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Elevation */
    --shadow-sm: 0 2px 10px rgba(27, 19, 13, 0.06);
    --shadow-md: 0 12px 32px rgba(214, 74, 0, 0.10);
    --shadow-lg: 0 18px 48px rgba(27, 19, 13, 0.12);

    /* Layout */
    --max-width: 1200px;

    --nav-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --nav-duration: 0.35s;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden !important; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body) !important;
    color: var(--ink-soft);
    overflow-x: hidden !important;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--ink); margin: 0; }
p { margin: 0; }


/* ===================== TOP BAR MARQUEE ===================== */
.topbar-section {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
}
.topbar-track {
  display: inline-flex;
  width: max-content;
  animation: topbarScroll 28s linear infinite;
}
.topbar-section:hover .topbar-track { animation-play-state: paused; }
.topbar-group { display: inline-flex; align-items: center; }
.topbar-group span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.topbar-group span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.topbar-group span i { font-size: 13px; opacity: 0.9; }
.topbar-group a { color: #fff; transition: opacity 0.3s ease; }
.topbar-group a:hover { opacity: 0.8; }

@keyframes topbarScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 575.98px) {
  .topbar-track { animation-duration: 20s; }
  .topbar-group span { padding: 0 18px; font-size: 13px; }
}


/* ===================== NAVBAR ===================== */
.navbar.sticky-top { transition: box-shadow 0.3s ease; }
.navbar.sticky-top.is-stuck { box-shadow: 0 2px 14px rgba(27, 19, 13, 0.10); }

.navbar-brand img { width: 170px; max-width: 60vw; }

.navbar {
    background: #fffdfb;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(27, 19, 13, .06);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.offcanvas .nav-link {
    color: var(--ink) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}
.offcanvas .nav-link.active { color: var(--primary) !important; font-weight: 600; }
.offcanvas .nav-link:hover  { color: var(--primary) !important; padding-left: 8px; }


/* ===================== SHARED PILL BUTTON (navbar style) ===================== */
.book-service-btn {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 8px 20px rgba(254, 92, 6, 0.25);
    transition: all 0.3s ease !important;
}
.book-service-btn:hover {
    background: linear-gradient(135deg, var(--primary-deep), #B23B00);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(254, 92, 6, 0.35);
}
.book-service-btn:focus,
.book-service-btn:active { color: #fff !important; outline: none; }


/* ===================== HERO ===================== */
.hero-banner { position: relative; min-height: 750px; overflow: hidden; }

.hero-img { width: 100%; height: 750px; object-fit: cover; display: block; }

.hero-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 12, 6, 0.92) 0%,
        rgba(20, 12, 6, 0.80) 32%,
        rgba(20, 12, 6, 0.55) 62%,
        rgba(20, 12, 6, 0.28) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    max-width: 660px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    background: rgba(254, 92, 6, 0.14);
    border: 1px solid rgba(254, 92, 6, 0.40);
    border-radius: 50px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 26px;
}
.hero-badge i { color: var(--primary-light); font-size: 13px; }

.hero-content h1 {
    color: #000;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}
.hero-content h1 span {
    background: linear-gradient(120deg, #b7600a, var(--primary), var(--primary-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: 0 0 28px rgba(254, 92, 6, 0.30);
}

.hero-content p {
    color: #000;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 10px 28px rgba(254, 92, 6, 0.35);
}
.hero-btn:hover {
    background: linear-gradient(135deg, var(--primary-deep), #B23B00);
    color: #fff;
    transform: translateY(-3px);
}

.hero-btn--ghost {
    color: var(--primary);
    background: transparent;
    border: 1.5px solid  var(--primary);
    box-shadow: none;
}
.hero-btn--ghost:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary-deep);
}

.hero-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 16px;
    transition: color .3s;
}
.hero-call i { color: var(--primary-light); }
.hero-call strong { color: #000; letter-spacing: 0.5px; }
.hero-call:hover { color: var(--primary); }


/* ===================== ABOUT ===================== */
.about-section { background: var(--surface); padding: 100px 0;}

.about-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 14px;
}
.about-content .book-service-btn { margin-top: 8px; }

.promise-card,
.care-box {
    background: var(--primary-soft);
    padding: 34px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(254, 92, 6, 0.10);
}
.promise-card h3,
.care-box h3 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    margin-bottom: 16px;
}
.promise-card p,
.care-box p { color: var(--ink-soft); line-height: 1.75; }

.promise-card ul { padding: 0; margin-top: 18px; }
.promise-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--ink);
    font-weight: 500;
}
.promise-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: -1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.custom-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.custom-lightbox.show{
    opacity:1;
    visibility:visible;
}

.lightbox-image{
    max-width:90%;
    max-height:85vh;
    border-radius:12px;
}

.lightbox-close{
    position:absolute;
    top:25px;
    right:30px;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

.lightbox-prev,
.lightbox-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#FE5C06;
    color:#fff;
    cursor:pointer;
    font-size:20px;
}

.lightbox-prev{
    left:30px;
}

.lightbox-next{
    right:30px;
}



/* ===================== AMENITIES ===================== */
.amenities-section {
    background: var(--panel);
    color: #fff;
    padding: 100px 0;
}

.amenity-item img{
    width: 34%;
    margin: 0 auto;
}

.section-heading { max-width: 900px; margin: 0 auto 64px; }

.sub-title {
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.section-heading h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700;
    margin: 14px 0 18px;
}
.section-heading h2 span {
    background: linear-gradient(120deg, #FFC78F, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-heading p { color: #c9bdb4; font-size: 17px; line-height: 1.8; }

.amenities-grid {
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.amenity-item {
    text-align: center;
    padding: 48px 30px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: .3s ease;
}
.amenity-item:hover { background: rgba(254, 92, 6, 0.07); }

.amenity-item i {
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 22px;
}
.amenity-item h4 { color: #fff; font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.amenity-item p { color: #b7aaa0; margin-bottom: 0; }

.single-item {
    margin-top: -1px;
    border: 1px solid rgba(255, 255, 255, .12);
}


/* =========================
   HOUSE RULES
========================= */

.rules-section{
    padding:100px 0;
    background:#fff;
}

.rules-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.rules-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#FE5C06;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:15px;
}

.rules-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1f1f1f;
    margin-bottom:18px;
}

.rules-heading h2 span{
    color:#FE5C06;
}

.rules-heading p{
    color:#777;
    line-height:1.8;
    margin:0;
}

.rules-row{
    border-top:1px solid rgba(254,92,6,.15);
    border-bottom:1px solid rgba(254,92,6,.15);
}

.rule-item{
    text-align:center;
    padding:45px 30px;
    height:100%;
    position:relative;
}

.rule-item::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:120px;
    background:rgba(254,92,6,.15);
}

.col-lg-4:last-child .rule-item::after{
    display:none;
}

.rule-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.rule-icon img{
    max-width:60px;
    max-height:60px;
    object-fit:contain;
}

.rule-item h4{
    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
}

.rule-item p{
    color:#777;
    line-height:1.8;
    margin:0 auto;
    max-width:260px;
}

/* Hover */

.rule-item:hover .rule-icon{
    transform:translateY(-5px);
    transition:.3s ease;
}





/* ===================== WHY CHOOSE US ===================== */
.wcu-section {
    background: #ffefe4;
    padding: 100px 0;
}

.wcu-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}
.wcu-eyebrow {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}
.wcu-title {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin: 14px 0 16px;
}
.wcu-title span {
    background: linear-gradient(120deg, #FFC78F, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wcu-intro {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

.wcu-card {
    position: relative;
    height: 100%;
    text-align: center;
    background: #fff;
    border: 1px solid var(--outline);
    border-radius: var(--radius-xl);
    padding: 40px 26px;
    overflow: hidden;
    transition:
        transform .35s var(--nav-ease),
        box-shadow .35s var(--nav-ease),
        border-color .35s var(--nav-ease);
}
.wcu-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--nav-ease);
}
.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.wcu-card:hover::before { transform: scaleX(1); }

.wcu-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 30px;
    transition:
        background .35s var(--nav-ease),
        color .35s var(--nav-ease),
        transform .35s var(--nav-ease),
        box-shadow .35s var(--nav-ease);
}
.wcu-card:hover .wcu-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
    box-shadow: 0 12px 26px rgba(254, 92, 6, .32);
}

.wcu-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}
.wcu-card-text {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* ===================== GALLERY PREVIEW ===================== */
.gal-section {
    background: #fff;
    padding: 100px 0;
}

.gal-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}
.gal-eyebrow {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}
.gal-title {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin: 14px 0 16px;
}
.gal-title span {
    background: linear-gradient(120deg, #FFC78F, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gal-intro {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

.gal-card {
    position: relative;
    display: block;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
}
.gal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--nav-ease);
}
.gal-card:hover .gal-img { transform: scale(1.08); }

.gal-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(
        180deg,
        rgba(25, 18, 13, 0) 40%,
        rgba(217, 74, 0, 0.78) 100%
    );
    opacity: 0;
    transition: opacity .4s var(--nav-ease);
}
.gal-card:hover .gal-overlay { opacity: 1; }

.gal-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-size: 20px;
    transform: scale(0.6);
    transition: transform .4s var(--nav-ease);
}
.gal-card:hover .gal-icon { transform: scale(1); }

.gal-caption {
    color: #fff;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transform: translateY(12px);
    transition: transform .4s var(--nav-ease);
}
.gal-card:hover .gal-caption { transform: translateY(0); }

.gal-cta-wrap {
    text-align: center;
    margin-top: 50px;
}

/* ===================== TESTIMONIALS (Owl Carousel) ===================== */
.tst-section {
    background: var(--panel);
    padding: 100px 0;
}

.tst-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}
.tst-eyebrow {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}
.tst-title {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    margin: 14px 0 16px;
}
.tst-title span {
    background: linear-gradient(120deg, #FFC78F, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tst-intro {
    color: #c9bdb4;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

.tst-carousel { position: relative; }

/* Equal-height cards across visible slides */
.tst-section .owl-stage-outer { padding: 14px 6px; }
.tst-section .owl-stage { display: flex; }
.tst-section .owl-item { display: flex; }
.tst-slide { width: 100%; display: flex; }

.tst-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 34px 32px 30px;
    display: flex;
    flex-direction: column;
    transition:
        border-color .35s var(--nav-ease),
        background .35s var(--nav-ease),
        transform .35s var(--nav-ease),
        box-shadow .35s var(--nav-ease);
}
.tst-card:hover {
    border-color: rgba(254, 92, 6, 0.55);
    background: rgba(254, 92, 6, 0.06);
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.tst-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.tst-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 18px rgba(254, 92, 6, 0.30);
}
.tst-quote {
    font-size: 42px;
    color: var(--primary);
    opacity: 0.85;
}

.tst-text {
    color: #e7ded7;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 24px;
    flex-grow: 1;       /* pushes the name block to the bottom */
}

.tst-person { margin-top: auto; }
.tst-name {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}
.tst-role {
    color: #a99e95;
    font-size: 14px;
}

/* ---- Owl nav arrows ---- */
.tst-section .owl-nav { margin: 0; }
.tst-section .owl-nav button.owl-prev,
.tst-section .owl-nav button.owl-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    display: grid !important;
    place-items: center;
    border-radius: 12px !important;
    background: var(--primary) !important;
    color: #fff !important;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(254, 92, 6, 0.35);
    transition: background .3s var(--nav-ease), transform .3s var(--nav-ease);
}
.tst-section .owl-nav button.owl-prev { left: -10px; }
.tst-section .owl-nav button.owl-next { right: -10px; }
.tst-section .owl-nav button.owl-prev:hover,
.tst-section .owl-nav button.owl-next:hover {
    background: var(--primary-deep) !important;
    transform: translateY(-50%) scale(1.06);
}
.tst-section .owl-nav button.owl-prev:focus,
.tst-section .owl-nav button.owl-next:focus { outline: none; }

/* ---- Owl dots ---- */
.tst-section .owl-dots {
    text-align: center;
    margin-top: 32px;
}
.tst-section .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-block;
    transition: all .3s var(--nav-ease);
}
.tst-section .owl-dots .owl-dot.active span {
    width: 26px;
    border-radius: 6px;
    background: var(--primary);
}
.tst-section .owl-dots .owl-dot:hover span { background: var(--primary-light); }

/* ===================== CONTACT CTA (parallax) ===================== */
.cta-section {
    position: relative;
    padding: 75px 0;
    text-align: center;
    overflow: hidden;
    background: url('../images/intro.jpg') center / cover no-repeat;
    background-attachment: fixed;   /* parallax */
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
        background: linear-gradient(135deg, rgb(241 142 88 / 90%), rgba(217, 74, 0, 0.86));
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.cta-title span {
    background: linear-gradient(120deg, #FFC78F, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-eyebrow {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}
.cta-title {
    color: #fff;
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin: 14px 0 18px;
}
.cta-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 34px;
    max-width: 580px;
}

.cta-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 40px;
    margin-bottom: 36px;
}
.cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: opacity .3s var(--nav-ease);
    border: 1px solid white;
    padding: 2px 14px;
    border-radius: 23px;
    background-color: #ffffff4a;
}


.cta-contact i { font-size: 16px; }
.cta-contact:hover { color: #fff; opacity: 0.82; }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-deep);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    transition:
        transform .3s var(--nav-ease),
        box-shadow .3s var(--nav-ease),
        background .3s var(--nav-ease),
        color .3s var(--nav-ease);
}
.cta-btn:hover {
    background: var(--primary-soft);
    color: var(--primary-deep);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
}


/* ===================== PAGE BANNER (pagebanner-* = unique, no overlap) ===================== */
.pagebanner-section {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
  /* REPLACE contact-banner.jpg with your image */
  background: #0f3d12 url('../images/gallery-banner.jpg') center/cover no-repeat;
}

/* Green-tinted dark overlay so text stays readable */
.pagebanner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(254, 92, 6, 0.92) 0%,
        rgba(220, 75, 0, 0.82) 50%,
        rgba(160, 45, 0, 0.65) 100%
    );
}

.pagebanner-content {
  position: relative;
  z-index: 2;
}

.pagebanner-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.pagebanner-title span {
  background: linear-gradient(135deg, #A8FF78, #78D64B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Breadcrumb */
.pagebanner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.pagebanner-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}



.pagebanner-breadcrumb i {
  font-size: 12px;
  color: #6CC56A;
}

.pagebanner-breadcrumb span {
  color: #fff;
}

.counter-section{
    padding:100px 0;
    background:#f8f6f4;
    position:relative;
    overflow:hidden;
}

.counter-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(254,92,6,.06);
    top:-120px;
    left:-120px;
}



.counter-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.counter-subtitle{
    display:block;
    color:#FE5C06;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:12px;
}

.counter-heading h2{
    color:#1d1d1d;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.counter-heading h2 span{
    color:#FE5C06;
}

.counter-heading p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.counter-card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    height:100%;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s ease;
    position:relative;
    z-index:2;
}

.counter-card:hover{
    transform:translateY(-8px);
    border-color:rgba(254,92,6,.25);
    box-shadow:0 20px 40px rgba(254,92,6,.12);
}

.counter-number{
    font-size:56px;
    font-weight:700;
    line-height:1;
    color:#FE5C06;
    margin-bottom:15px;
}

.counter-card h5{
    font-size:22px;
    font-weight:600;
    color:#222;
    margin-bottom:10px;
}

.counter-card p{
    color:#777;
    line-height:1.7;
    margin:0;
}


/* ===================== FOOTER ===================== */
.site-footer {
    background: #120c08;
    color: #b7aaa0;
    padding: 70px 0 28px;
}

.footer-contact, .footer-links{
    padding-left: 0 !important;
}
.footer-brand img {
    
    margin-bottom: 18px;
    /* logo is on a transparent bg; keep it crisp on dark */
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.site-footer p { line-height: 1.8; font-size: 15px; }

.site-footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li,
.footer-contact li { margin-bottom: 12px; }
.footer-links a { color: #b7aaa0; transition: color .25s, padding-left .25s; }
.footer-links a:hover { color: var(--primary-light); padding-left: 6px; }

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: center;
    line-height: 1.6;
    font-size: 15px;
}
.footer-contact i { color: var(--primary); margin-top: 4px; }
.footer-contact a { color: #b7aaa0; transition: color .25s; }
.footer-contact a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
    padding-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #8a7d73;
}
.footer-bottom a:hover {
    color: var(--primary);
}
.contact-section{
    padding: 100px 0 40px;
}

.contact-details-section{
    padding-bottom: 100px;
}

.contact-card{
    background:#ffefe7;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    height:100%;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding-bottom:25px;
    margin-bottom:25px;
    border-bottom:1px solid #ececec;
}

.contact-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.contact-icon{
    width:60px;
    height:60px;
    flex-shrink:0;
    border-radius:50%;
    background:rgba(254,92,6,.1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:var(--primary);
    font-size:22px;
}

.contact-item h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
    color:var(--ink);
}

.contact-item p{
    margin:0;
    color:var(--ink-soft);
    line-height:1.7;
}

.contact-item a{
    color:var(--ink-soft);
    text-decoration:none;
    transition:.3s;
}

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

.map-wrapper{
    height:100%;
    min-height:550px;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    border:none;
}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:32px;
    z-index:9999;
    box-shadow:0 8px 25px rgba(37,211,102,.35);
    transition:.3s ease;
}

.whatsapp-float:hover{
    color:#fff;
    transform:translateY(-5px);
}



/* ===================== OFFCANVAS / DESKTOP NAV ===================== */
@media (min-width: 992px) {
    .rules-section{
        padding:80px 0;
    }

    .rules-heading h2{
        font-size:32px;
    }

    .rule-item{
        padding:35px 20px;
    }

    .rule-item::after{
        display:none;
    }

    .rule-item{
        border-bottom:1px solid rgba(254,92,6,.15);
    }

    .col-lg-4:last-child .rule-item{
        border-bottom:none;
    }
    .counter-section{
        padding:80px 0;
    }

    .counter-heading h2{
        font-size:34px;
    }

    .counter-number{
        font-size:48px;
    }
     .contact-card{
        padding:30px;
    }

    .map-wrapper{
        min-height:400px;
    }
    .cta-section { background-attachment: scroll; }
  #mobileMenu.offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  #mobileMenu .offcanvas-body { display: flex; align-items: center; flex-grow: 0; padding: 0; }
  .custom-toggler { display: none; }
}


/* ===================== HAMBURGER ===================== */
.custom-toggler,
.custom-toggler:hover,
.custom-toggler:focus,
.custom-toggler:active {
  border: none;
  box-shadow: none;
  outline: none;
}
.custom-toggler:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}
.custom-toggler {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1060;
}
.custom-toggler .toggler-bar {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition:
    transform var(--nav-duration) var(--nav-ease),
    opacity   var(--nav-duration) var(--nav-ease),
    top       var(--nav-duration) var(--nav-ease);
}
.custom-toggler .toggler-bar:nth-child(1) { top: 13px; }
.custom-toggler .toggler-bar:nth-child(2) { top: 19px; }
.custom-toggler .toggler-bar:nth-child(3) { top: 25px; }

.custom-toggler.is-open .toggler-bar:nth-child(1) { top: 19px; transform: rotate(45deg); }
.custom-toggler.is-open .toggler-bar:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.custom-toggler.is-open .toggler-bar:nth-child(3) { top: 19px; transform: rotate(-45deg); }


/* ===================== MOBILE ===================== */
@media (max-width: 991px) {

  .hero-banner { min-height: 620px; }
  .hero-img { height: 620px; }
  .hero-content { left: 0; right: 0; padding: 0 22px; max-width: 100%; }
 

  .about-img img { height: 420px; }

  .navbar { -webkit-backdrop-filter: none; backdrop-filter: none; }

  #mobileMenu.offcanvas-end {
    width: min(320px, 85vw);
    transition: transform var(--nav-duration) var(--nav-ease);
  }

  #mobileMenu .nav-item,
  #mobileMenu .d-flex {
    opacity: 0;
    transform: translateX(18px);
    transition:
      opacity   var(--nav-duration) var(--nav-ease),
      transform var(--nav-duration) var(--nav-ease);
  }
  #mobileMenu.items-in .nav-item,
  #mobileMenu.items-in .d-flex { opacity: 1; transform: translateX(0); }

  #mobileMenu.items-in .nav-item:nth-child(1) { transition-delay: 0.10s; }
  #mobileMenu.items-in .nav-item:nth-child(2) { transition-delay: 0.15s; }
  #mobileMenu.items-in .nav-item:nth-child(3) { transition-delay: 0.20s; }
  #mobileMenu.items-in .d-flex               { transition-delay: 0.30s; }
}

@media (prefers-reduced-motion: reduce) {
  .custom-toggler .toggler-bar,
  #mobileMenu,
  #mobileMenu .nav-item,
  #mobileMenu .d-flex,
  .topbar-track { transition: none !important; animation: none !important; }
}
@media (max-width: 767px) {
     .lightbox-prev{
        left:10px;
    }

    .lightbox-next{
        right:10px;
    }

    .lightbox-prev,
    .lightbox-next{
        width:45px;
        height:45px;
    }
    .tst-section .owl-nav { display: none; }  /* dots + swipe on small screens */
}
@media (max-width: 576px) {
      .rules-heading h2{
        font-size:28px;
    }

    .rule-item h4{
        font-size:20px;
    }
    .about-section {
    padding: 60px 0;
}

.counter-section {
    padding: 60px 0;
}
    .counter-heading h2{
        font-size:28px;
    }

    .counter-number{
        font-size:42px;
    }
      .contact-item{
        gap:14px;
    }

    .contact-icon{
        width:50px;
        height:50px;
    }

    .contact-icon i{
        font-size:18px;
    }

    .contact-card{
        padding:25px;
    }
    .gal-head {
    max-width: 760px;
    margin: 0 auto 30px
}

.tst-head {
    max-width: 760px;
    margin: 0 auto 30px;
}
    .cta-section {
        padding: 50px 0;
    }
    .pagebanner-title {
    font-size: 40px;
}
.contact-section {
    padding: 30px 0 20px;
}
    .hero-overlay {
        display: block;
        background: linear-gradient(180deg, #ffc48a 0%, rgba(20, 12, 6, 0.86) 100%);
    }
    .hero-content h1 span {
        background: none;
        -webkit-text-fill-color: #000;
        color: #000;
        text-shadow: none;
    }
    .hero-content {
    top: 46%;
}
    .cta-contacts { gap: 12px 28px; }
    .cta-contact { font-size: 16px; }
     .tst-section { padding: 70px 0; }
    .tst-card { padding: 30px 26px 26px; }
      .gal-section { padding: 30px 0; }
    .wcu-section { padding: 60px 0; }
    .wcu-card { padding: 34px 24px; }
  .amenities-section { padding: 70px 0; }
  .hero-actions { gap: 12px; }
  .hero-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}