:root {
  --blue: #001b72;
  --blue-dark: #00145b;
  --orange: #ef5c23;
  --gold: #f3c961;
  --cream: #fff0cf;
  --white: #ffffff;
  --text: #202438;
  --muted: #6d7280;
  --line: #d9dce7;
  --shadow: 0 16px 36px rgba(0, 27, 114, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-container {
  width: 100%;
  max-width: 1200px;
  padding-left: 18px;
  padding-right: 18px;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  text-transform: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-orange:hover,
.btn-orange:focus {
  background: #d94d17;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-small {
  font-size: 14px;
  padding: 8px 16px;
}

.top-bar {
  height: 32px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
}

.top-bar .site-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.top-bar {
    height: 40px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
}

.site-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0, 27, 114, 0.08);
    min-height: 53px;
    position: relative; /* remove sticky/fixed here */
}

.site-nav.scrolled {
  box-shadow: 0 6px 20px rgba(0, 27, 114, 0.15);
}

.site-nav .site-container {
  min-height: 44px;
  position: relative;
}

.navbar-brand {
  width: 72px;
  height: 72px;
  padding: 0;
  position: absolute;
  left: 18px;
  top: -4px;
  z-index: 3;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 4px solid var(--blue);
  background: var(--blue);
}

.navbar-collapse {
  padding-left: 96px;
}

.navbar-nav {
  align-items: center;
  gap: 4px;
}

.navbar-nav .nav-link {
  color: #333846;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 10px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange);
}

.btn-book {
  min-width: 100px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.btn-book:hover,
.btn-book:focus {
  background: #d94d17;
  color: var(--white);
}

.navbar-toggler {
  border: 0;
  padding: 6px 0;
  margin-left: auto;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hero,
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: min(42vw, 680px);
  min-height: 260px;
  max-height: 680px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-indicators {
  bottom: 14px;
  margin-bottom: 0;
}

.hero-indicators [data-bs-target] {
  width: 26px;
  height: 3px;
  border: 0;
  margin: 0 3px;
  opacity: 1;
  background: var(--white);
}

.hero-indicators .active {
  background: var(--orange);
}

.about-section {
  padding: 68px 0 84px;
  background: var(--white);
}

.about-title {
  margin: 0 0 18px;
  color: #30323a;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.22;
}

.about-title strong {
  color: var(--orange);
  font-weight: 700;
}

.desktop-break {
  display: block;
}

.mobile-break {
  display: none;
}

.about-overlap {
  position: relative;
}

.about-photo {
          width: 67%;
    max-width: 780px;
    overflow: hidden;
}


@media (max-width: 1912px) {
    .about-photo img {
        width: calc(100% + 367px);
        height: 54%;
        object-fit: cover;
        object-position: center 43%;
    }
  }

@media screen and (min-width: 768px) {
  .about-photo img {
        width: calc(100% + 367px);
    /* height: 100% ; */
    object-fit: cover;
    object-position: center 43%;
  }
}

@media screen and (max-width: 767px) {
  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 43%;
  }
}

.about-card {
  width: 64%;
  max-width: 760px;
  background: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  padding: 40px 44px 36px;
  position: absolute;
  right: 24px;
  top: 76px;
  z-index: 2;
}

.about-card h2 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 500;
  color: #30323a;
}

.about-card h2 strong {
  color: var(--orange);
  font-weight: 700;
}

.about-card p {
  margin: 0 0 11px;
  color: #404655;
  font-size: 15px;
  line-height: 1.7;
}

.amenities-video-section {
  margin-bottom: 140px;
  padding: 80px 0 160px;
  background: var(--blue);
  position: relative;
}

.section-heading {
  margin: 0 0 36px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.section-heading--light {
  color: var(--white);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: start;
  margin: 0 auto;
}

.amenity-card-simple {
  min-height: 92px;
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.13;
}

.amenity-icon {
  width: calc(100% - 30px);
  height: 95px;
  margin: 0 auto -6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--gold);
}

.amenity-icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.amenity-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.amenity-text {
  display: inline-block;
  /* background: #001f7a; */
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.amenity-icon i {
  font-size: 38px;
  line-height: 1;
}

.video-wrapper {
      width: calc(100% + 367px);
  margin: 72px 0 -240px 0;
  border: 5px solid var(--white);
  border-bottom: 0;
  position: relative;
  z-index: 5;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 27, 114, 0.12);
}

.video-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.play-btn {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  border: 5px solid var(--white);
  border-radius: 50%;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-wrapper:hover .play-btn {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.04);
}

.play-btn i {
  margin-left: 5px;
}

.hosts-section {
  padding: 36px 0 62px;
  background: var(--white);
}

.rule-title {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 26px;
}

.rule-title span {
  min-width: 106px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.rule-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #cfd4df;
}

.host-card {
  margin: 0;
}

.host-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.host-card h3 {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 0;
  border-radius: 2px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.booking-section {
  padding: 70px 0 82px;
  background: var(--blue);
  color: var(--white);
}
.cal-day{
    position: relative;
    overflow: hidden;
}

/* Morning & Evening Default (Available) */
.cal-day .morning,
.cal-day .evening{
    position: absolute;
    inset: 0;
    background: #f5f5f5; /* Available */
}

/* Morning Triangle (Top Left) */
.cal-day .morning{
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Evening Triangle (Bottom Right) */
.cal-day .evening{
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* Day Number */
.day-number{
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 3;
    font-weight: 700;
    font-size: 15px;
    color: #222;
}



/* BOOKED SLOT = GREEN */
.slot.booked{
    background: #9b1e24 !important;
}

/* Optional Hover */
.cal-day:hover{
    transform: translateY(-2px);
    transition: 0.3s ease;
}

/* Selected Date */
.cal-day--selected{
    border: 2px solid #0d6efd !important;
}

/* Today */
.cal-day--today{
    box-shadow: inset 0 0 0 2px #ff9800;
}

.slot-label{
    position:absolute;
    bottom:2px;
    left:2px;
    right:2px;
    z-index:3;

    font-size:9px;
    font-weight:600;
    text-align:center;

    background:rgba(255,255,255,.95);
    border-radius:3px;
    padding:2px;
}
.pill-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 31px;
  margin: 0 0 22px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.calendar-card {
  width: 100%;
  background: var(--white);
  color: #333846;
  border: 1px solid #d8dfef;
}

.calendar-header {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border-bottom: 1px solid #dce3ef;
  background: #f7f9fc;
}

.calendar-title {
  color: #444b58;
  font-size: 11px;
  font-weight: 700;
}

.cal-nav {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 2px;
  background: #1677bd;
  color: var(--white);
  font-size: 10px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid #edf1f6;
  color: #566070;
  font-size: 9px;
  font-weight: 600;
  text-align: center;
}

.calendar-weekdays span {
  padding: 6px 2px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 60px;
}

.cal-day {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 5px;
  border: 0;
  border-right: 1px solid #edf1f6;
  border-bottom: 1px solid #edf1f6;
  background: var(--white);
  color: #3c4350;
  font-family: inherit;
  font-size: 10px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.cal-day:nth-child(7n) {
  border-right: 0;
}

.cal-day--empty,
.cal-day--past {
  color: #b9c0cc;
  cursor: default;
}

.cal-day--today {
  background: #fff1ba;
}

.cal-day--booked {
  background: #f9e2e2;
  color: #ef5c23ad;
  cursor: not-allowed;
}

.cal-day--selected,
.cal-day--available:hover {
  background: #ffe9a0;
}
.cal-day{
    position:relative;
    overflow:hidden;
}

.cal-day .morning,
.cal-day .evening{
    position:absolute;
    inset:0;
    background:#f5f5f5;
}

.cal-day .morning{
    clip-path:polygon(0 0,100% 0,0 100%);
}

.cal-day .evening{
    clip-path:polygon(100% 0,100% 100%,0 100%);
}

.slot.booked{
    background:#ef5c23ad !important;
}

.day-number{
    position:absolute;
    top:8px;
    right:10px;
    z-index:3;
    font-weight:700;
}
/* 
.cal-day::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        transparent 49%,
        #fff 49%,
        #fff 51%,
        transparent 51%
    );
    pointer-events:none;
} */

.slot-label{
    position:absolute;
    bottom:4px;
    left:4px;
    right:4px;
    z-index:3;

    font-size:10px;
    font-weight:600;
    text-align:center;

    background:rgba(255,255,255,.9);
    border-radius:4px;
    padding:2px;
    line-height:1.2;
}
.services-list {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

.services-list li {
  margin-bottom: 6px;
  padding-left: 5px;
}

.services-list span {
  color: rgba(255, 255, 255, 0.9);
}

.service-contact {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.service-phone {
  display: inline-block;
  margin-top: 4px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.gallery-section {
  padding: 54px 0 70px;
  background: var(--cream);
}

.gallery-title {
  margin: 0 0 34px;
  color: var(--blue);
  font-size: 31px;
  font-weight: 700;
  text-align: center;
}

.gallery-grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gallery-tile {
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(0, 27, 114, 0.08);
}

.gallery-image,
.lightbox__image {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.gallery-tile:hover .gallery-image {
  transform: scale(1.05);
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.gallery-img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:12px;
}

.gallery-btn{
    border:none;
    background:#002b8f;
    color:#fff;
    padding:10px 18px;
    border-radius:25px;
    margin:0 5px;
}

.gallery-btn.active{
    background:#001f6b;
}

@media(max-width:991px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}
.gallery-image--1 { background-image: url("../images/garden-carousel-2.png"); }
.gallery-image--2 { background-image: url("../images/main-hall-2.jpg"); }
.gallery-image--3 { background-image: url("../images/garden-carousel-1.png"); }
.gallery-image--4 { background-image: url("../images/garden-carousel-3.png"); }
.gallery-image--5 { background-image: url("../images/garden-view.jpg"); }
.gallery-image--6 { background-image: url("../images/corporate-events.jpg"); }
.gallery-image--7 { background-image: url("../images/wedding-cermony.jpg"); }
.gallery-image--8 { background-image: url("../images/video-thumbnail.png"); }

.description-section {
  padding: 54px 0 48px;
  background: var(--white);
  text-align: center;
}

.description-section p {
  max-width: 820px;
  margin: 0 auto 20px;
  color: #4d5260;
  font-size: 16px;
  line-height: 1.38;
}

.description-section strong {
  color: #4d5260;
  font-size: 16px;
  font-weight: 500;
}

.subpage-hero {
  min-height: 282px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 27, 114, 0.82), rgba(0, 27, 114, 0.18)),
    var(--page-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.subpage-hero__content {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 218px 18px 54px;
  overflow-wrap: break-word;
}

.subpage-hero .mini-label {
  margin-bottom: 12px;
}

.subpage-hero h1 {
  max-width: 620px;
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
}

.subpage-hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.55;
}

.subpage-copy {
  padding: 58px 0;
  background: var(--white);
}

.subpage-copy h2,
.split-copy h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
}

.subpage-copy p,
.split-copy p {
  margin: 0 0 14px;
  color: #454b5a;
  font-size: 20px;
  line-height: 1.7;
}

.split-image {
  height: 315px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 27, 114, 0.12);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.stat-card {
  padding: 22px 18px;
  border-left: 4px solid var(--orange);
  background: #f6f7fa;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: 25px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: #505665;
  font-size: 13px;
  line-height: 1.35;
}

.blue-band {
  padding: 58px 0;
  background: var(--blue);
  color: var(--white);
}

.service-card-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-feature-card,
.voice-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 27, 114, 0.13);
}

.service-feature-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.service-feature-card div,
.voice-card {
  padding: 22px;
}

.service-feature-card h3,
.voice-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.service-feature-card p,
.voice-card p {
  margin: 0;
  color: #4d5362;
  font-size: 14px;
  line-height: 1.65;
}

.voice-card {
  position: relative;
}

.voice-card .quote-icon {
  top: 12px;
  right: 18px;
  opacity: 0.45;
}

.voice-card strong {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-page-section {
  padding: 62px 0;
  background: var(--blue);
  color: var(--white);
}

.contact-page-card {
  width: 100%;
  margin: 0;
}

.map-large {
  min-height: 360px;
  height: 100%;
  border: 5px solid var(--white);
  background:
    radial-gradient(circle at 70% 45%, #e94d35 0 7px, transparent 8px),
    repeating-linear-gradient(0deg, #edf2f4 0 28px, #d9e1e5 29px 31px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(199, 207, 212, 0.9) 39px 41px),
    #e6edf2;
}

.map-large iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  opacity: 0.75;
}

.contact-form-card {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
}

.contact-form-card h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
}

.subpage-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-band {
  padding: 62px 0;
  background: #2e376557;
}

.content-band--cream {
  background: var(--cream);
}

.content-band--blue {
  background: #95a4d5;
  color: var(--white);
}

.section-title-main {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.18;
}

.content-band--blue .section-title-main {
  color: var(--white);
}

.section-copy {
  max-width: 760px;
  margin: 0 0 26px;
  color: #4d5362;
  font-size: 15px;
  line-height: 1.75;
}

.content-band--blue .section-copy {
  color: rgba(255, 255, 255, 0.82);
}

.image-panel {
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 27, 114, 0.15);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature-list__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-left: 4px solid var(--orange);
  background: #f7f8fb;
}

.feature-list__item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--gold);
  font-size: 18px;
}

.feature-list__item h3 {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.feature-list__item p {
  margin: 0;
  color: #4c5261;
  font-size: 13px;
  line-height: 1.55;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.event-category-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(0, 27, 114, 0.12);
}

.event-category-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
}

.event-category-card div {
  padding: 18px 16px 20px;
}

.event-category-card h3 {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.event-category-card p {
  margin: 0;
  color: #4e5462;
  font-size: 14px;
  line-height: 1.55;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-card {
  min-height: 170px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  counter-increment: step;
}

.process-card::before {
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
}

.process-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.gallery-grid--expanded {
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-grid--expanded .gallery-tile {
  aspect-ratio: 4 / 3;
}

.gallery-tile--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-tile--wide {
  grid-column: span 2;
}

.gallery-filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gallery-filter-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.gallery-image--9 { background-image: url("../images/old/gallery-photo-1.jpg"); }
.gallery-image--10 { background-image: url("../images/old/gallery-photo-2.jpg"); }
.gallery-image--11 { background-image: url("../images/old/gallery-photo-3.jpg"); }
.gallery-image--12 { background-image: url("../images/old/gallery-photo-4.jpg"); }
.gallery-image--13 { background-image: url("../images/old/gallery-photo-5.jpg"); }
.gallery-image--14 { background-image: url("../images/old/gallery-photo-6.jpg"); }
.gallery-image--15 { background-image: url("../images/old/gallery-photo-7.jpg"); }
.gallery-image--16 { background-image: url("../images/old/gallery-photo-8.jpg"); }
.gallery-image--17 { background-image: url("../images/old/gallery-photo-9.jpg"); }
.gallery-image--18 { background-image: url("../images/old/gallery-photo-10.jpg"); }
.gallery-image--19 { background-image: url("../images/old/gallery-photo-11.jpg"); }
.gallery-image--20 { background-image: url("../images/old/gallery-photo-12.jpg"); }

.quote-band {
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(0, 27, 114, 0.94), rgba(0, 27, 114, 0.72)),
    url("../images/old/gallery-photo-3.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.quote-band blockquote {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.quote-band p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-card {
  padding: 22px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 27, 114, 0.09);
}

.faq-card h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.faq-card p {
  margin: 0;
  color: #4e5462;
  font-size: 14px;
  line-height: 1.55;
}

.visit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.visit-card {
  padding: 20px;
  border: 1px solid rgba(0, 27, 114, 0.12);
  border-radius: 6px;
  background: #f7f8fb;
}

.visit-card i {
  color: var(--orange);
  font-size: 24px;
}

.visit-card h3 {
  margin: 12px 0 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.visit-card p {
  margin: 0;
  color: #4e5462;
  font-size: 18px;
  line-height: 1.55;
}

.testimonials-contact-section {
  min-height: 318px;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.map-panel {
  width: 38%;
  height: 100%;
  min-height: 318px;
  position: absolute;
  top: 0;
  right: 0;
  background:
    radial-gradient(circle at 70% 45%, #e94d35 0 7px, transparent 8px),
    linear-gradient(35deg, transparent 0 47%, rgba(176, 187, 194, 0.9) 48% 50%, transparent 51%),
    linear-gradient(130deg, transparent 0 38%, rgba(176, 187, 194, 0.75) 39% 41%, transparent 42%),
    repeating-linear-gradient(0deg, #edf2f4 0 28px, #d9e1e5 29px 31px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(199, 207, 212, 0.9) 39px 41px),
    #e6edf2;
}

.map-panel iframe {
  display: block;
  opacity: 0.72;
  filter: saturate(0.85);
}
/* .map-panel{
    position:relative;
} */

.map-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:999;
    display:block;
}
.bottom-content {
  min-height: 318px;
  position: relative;
  z-index: 2;
}


@media screen and (min-width: 768px) and (max-width: 1912px) {
  .bottom-content {
  min-height: 580px;
  position: relative;
  z-index: 2;
  left:-70px;
}

}
/* .map-panel {
    z-index: 999;
} */

.map-panel iframe {
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.mini-label {
  display: inline-block;
  margin-bottom: 9px;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.testimonial-heading {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.13;
}

.testimonial-carousel {
  max-width: 420px;
}

.testimonial-card {
  min-height: 132px;
  margin: 0;
  padding: 31px 34px 22px;
  background: var(--white);
  border-radius: 4px;
  color: #4a5060;
  font-size: 14px;
  line-height: 1.55;
  position: relative;
}

.testimonial-card blockquote {
  margin: 0 0 16px;
}

.testimonial-card figcaption {
  color: #333846;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.quote-icon {
  color: var(--orange);
  font-size: 45px;
  line-height: 1;
  position: absolute;
  top: -16px;
  right: 34px;
}

.contact-column {
  display: flex;
  justify-content: center;
}

.contact-card {
 width: 317px;
  min-height: 220px;
  margin-left: 0px;
  padding: 28px 25px;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 17px;
  font-size: 18px;
  font-weight: 700;
}

.contact-card h3 {
  margin: 19px 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.contact-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 11px;
  font-size: 18px;
  line-height: 1.45;
}

.contact-card i {
  flex: 0 0 auto;
  margin-top: 1px;
}

.socials {
  display: flex;
  gap: 7px;
}

.socials a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
}

.site-footer {
  min-height: 28px;
  background: #efe8d7;
  color: #565b66;
  font-size: 18px;
}

.site-footer .site-container {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer a {
  color: var(--orange);
}

.video-modal {
  background: #050b22;
  color: var(--white);
}

.video-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-modal {
  border: 0;
  border-radius: 6px;
}

.booking-modal .modal-header {
  border-bottom: 1px solid #eef0f4;
  padding: 22px 26px 16px;
}

.booking-modal .modal-title {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.booking-modal .modal-body {
  padding: 24px 26px 28px;
}

.booking-modal .form-label {
  color: #3c4350;
  font-size: 14px;
  font-weight: 600;
}

.booking-modal .form-control,
.booking-modal .form-select {
  border-radius: 4px;
  font-size: 14px;
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

#bookingSubmit {
  min-width: 120px;
  position: relative;
}

#bookingSubmit .btn-spinner {
  width: 14px;
  height: 14px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

#bookingSubmit.loading .btn-spinner {
  display: inline-block;
}

#bookingSubmit.loading .btn-label {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.booking-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 4px;
  background: #e7f6ea;
  color: #1f7431;
  font-size: 14px;
}

.booking-success.show {
  display: flex;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 38px;
  background: rgba(0, 13, 52, 0.94);
}

.lightbox.show {
  display: flex;
}

.lightbox__stage {
  width: min(900px, 90vw);
  aspect-ratio: 16 / 9;
  position: relative;
}

.lightbox__image {
  border-radius: 6px;
  background-color: var(--white);
}

.lightbox__counter {
  margin-top: 12px;
  color: var(--white);
  font-size: 14px;
  text-align: center;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  position: absolute;
  z-index: 2;
}

.lightbox__close {
  top: 22px;
  right: 22px;
}

.lightbox__prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.floating-book {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 22px;
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================== */
/* ==================== TABLET / SMALL DESKTOP (max-width: 991.98px) ==================== */
/* =================================================================== */
@media (max-width: 991.98px) {
  .site-container {
    max-width: 900px;
  }

  .top-bar {
    height: auto;
    padding: 6px 0;
    font-size: 14px;
  }

  .top-bar .site-container,
  .top-bar__links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-nav .site-container {
    min-height: 58px;
  }

  .navbar-brand {
    width: 58px;
    height: 58px;
    top: 0;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    border-width: 3px;
  }

  .navbar-collapse {
    padding: 64px 0 14px;
  }

  .navbar-nav {
    align-items: flex-start;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 10px 0;
  }

  .btn-book {
    margin-top: 8px;
    font-size: 12px;
    min-width: 110px;
    height: 30px;
  }

  .about-photo {
    width: 70%;
    height: 460px;
  }

  .about-card {
    width: 70%;
    min-height: 380px;
    right: 0;
    top: 64px;
  }

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-wrapper img {
    height: 340px;
  }

  .gallery-grid {
    width: 100%;
    gap: 18px;
  }

  .map-panel {
    width: 100%;
    height: 260px;
    min-height: 260px;
    position: relative;
  }

  .testimonials-contact-section {
    overflow: visible;
  }

  .bottom-content {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .contact-card {
    margin-left: 0;
  }

  .service-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .visit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid--expanded {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =================================================================== */
/* ==================== MOBILE (max-width: 767.98px) ==================== */
/* =================================================================== */
@media (max-width: 767.98px) {
  /* ---------- Global base ---------- */
  body {
    font-size: 14px;
    line-height: 1.55;
  }

  .site-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ---------- Top bar ---------- */
  .top-bar {
    font-size: 12px;
    height: auto;
    padding: 6px 0;
  }

  .top-bar .site-container,
  .top-bar__links {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  /* ---------- Mobile Menu (Right-to-Left Slide, Full Width, Blue BG) ---------- */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 80px 24px 40px;
    margin: 0;
    background: var(--blue);
    z-index: 1050;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  .navbar-collapse.collapsing {
    right: -100%;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100vh;
  }

  .navbar-collapse.show {
    right: 0;
    display: flex;
  }

  .navbar-nav {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin-bottom: 24px;
  }

  .navbar-nav .nav-link {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    display: block;
    width: 100%;
    transition: color 0.2s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--gold);
  }

  .navbar-collapse .btn-book {
    font-size: 14px;
    min-width: 140px;
    height: 40px;
    margin-top: 8px;
    border-radius: 4px;
  }

  /* Hamburger toggle styling */
  .navbar-toggler {
    position: relative;
    z-index: 1060;
    border: 0;
    padding: 8px 4px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 27, 114, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* Close X button */
  .navbar-collapse::after {
    content: "\2715";
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
    cursor: pointer;
    z-index: 1060;
  }

  .btn-orange {
    font-size: 14px;
    padding: 12px 22px;
    
  }

  .btn-small {
    font-size: 14px;
    display: inherit;
  }

  /* ---------- Hero ---------- */
  .hero,
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 320px;
    min-height: 320px;
  }

  /* ---------- About section ---------- */
  .about-section {
    padding: 44px 0 56px;
  }

  .about-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .desktop-break {
    display: none;
  }

  .mobile-break {
    display: block;
  }

  .about-overlap {
    min-height: 0;
  }

  .about-photo {
    width: 100%;
    height: 320px;
  }

  .about-card {
    width: calc(100% - 28px);
    max-width: none;
    min-height: 0;
    margin: -70px auto 0;
    padding: 24px 24px 22px;
    position: relative;
    right: auto;
    top: auto;
  }

  .about-card h2 {
    font-size: 18px;
  }

  .about-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  /* ---------- Amenities ---------- */
  .amenities-video-section {
    margin-bottom: 90px;
    padding: 60px 0 110px;
  }

  .section-heading {
    margin-bottom: 26px;
    font-size: 22px;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 100%;
  }

  .amenity-card-simple {
    font-size: 14px;
  }

  .amenity-icon {
    height: 58px;
  }

  .amenity-icon i {
    font-size: 32px;
  }

  .amenity-text {
    font-size: 14px;
  }

  .video-wrapper {
    width: 100%;
    margin-top: 50px;
    margin-bottom: -170px;
    border-width: 4px;
  }

  .video-wrapper img {
    height: 260px;
  }

  .play-btn {
    width: 58px;
    height: 58px;
    font-size: 30px;
    border-width: 4px;
  }

  /* ---------- We Host ---------- */
  .hosts-section {
    padding: 40px 0 48px;
  }

  .host-card img {
    height: 190px;
  }

  .host-card h3 {
    font-size: 15px;
    height: 36px;
  }

  /* ---------- Booking / Calendar ---------- */
  .booking-section {
    padding: 48px 0 56px;
  }

  .pill-heading {
    font-size: 14px;
    min-width: auto;
    padding: 0 14px;
  }

  .calendar-grid {
    grid-auto-rows: 56px;
  }

  .calendar-weekdays {
    font-size: 12px;
  }

  .calendar-title {
    font-size: 13px;
  }

  .cal-day {
    font-size: 12px;
    padding: 4px;
  }

  .services-list {
    font-size: 14px;
    line-height: 1.5;
  }

  .services-list li {
    margin-bottom: 8px;
  }

  .service-contact {
    font-size: 13px;
  }

  /* ---------- Gallery ---------- */
  .gallery-section {
    padding: 42px 0 50px;
  }

  .gallery-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---------- Description ---------- */
  .description-section {
    padding: 40px 0 36px;
  }

  .description-section p,
  .description-section strong {
    font-size: 18px;
    line-height: 1.55;
  
  }


  /* ---------- Subpage hero ---------- */
  .subpage-hero {
    min-height: 235px;
  }

  .subpage-hero__content {
    padding: 143px 18px 38px;
  }

  .subpage-hero h1 {
    max-width: 100%;
    font-size: 26px;
    line-height: 1.2;
  }

  .subpage-hero p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }

  .subpage-hero .mini-label {
    font-size: 12px;
  }

  /* ---------- Subpage copy ---------- */
  .subpage-copy {
    padding: 42px 0;
  }

  .subpage-copy h2,
  .split-copy h2 {
    font-size: 22px;
  }

  .subpage-copy p,
  .split-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .split-image {
    height: 260px;
  }

  /* ---------- Stats ---------- */
  .stat-grid,
  .service-card-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .stat-card strong {
    font-size: 22px;
  }

  .stat-card span {
    font-size: 14px;
  }

  /* ---------- Blue band / contact page ---------- */
  .blue-band,
  .contact-page-section {
    padding: 44px 0;
  }

  .content-band {
    padding: 44px 0;
  }

  .section-title-main {
    font-size: 24px;
    line-height: 1.25;
  }

  .section-copy {
    font-size: 14px;
    line-height: 1.65;
  }

  /* ---------- Subpage kicker ---------- */
  .subpage-kicker {
    font-size: 12px;
    min-height: 28px;
    padding: 5px 12px;
  }

  /* ---------- Images ---------- */
  .image-panel,
  .image-panel img {
    min-height: 260px;
  }

  /* ---------- Service category / process / visit / FAQ ---------- */
  .service-category-grid,
  .process-grid,
  .visit-strip,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .event-category-card h3 {
    font-size: 15px;
  }

  .event-category-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .process-card h3 {
    font-size: 15px;
  }

  .process-card p {
    font-size: 14px;
  }

  .faq-card h3 {
    font-size: 15px;
  }

  .faq-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .visit-card h3 {
    font-size: 15px;
  }

  .visit-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .feature-list__item h3 {
    font-size: 15px;
  }

  .feature-list__item p {
    font-size: 14px;
  }

  .service-feature-card h3,
  .voice-card h3 {
    font-size: 16px;
  }

  .service-feature-card p,
  .voice-card p {
    font-size: 14px;
  }

  .voice-card strong {
    font-size: 13px;
  }

  /* ---------- Gallery expanded ---------- */
  .gallery-grid--expanded {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-tile--wide,
  .gallery-tile--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-filter-row span {
    font-size: 13px;
    min-height: 32px;
  }

  /* ---------- Quote band ---------- */
  .quote-band blockquote {
    font-size: 18px;
    line-height: 1.45;
  }

  .quote-band p {
    font-size: 14px;
  }

  /* ---------- Testimonials ---------- */
  .testimonial-carousel {
    max-width: none;
  }

  .testimonial-heading {
    font-size: 20px;
  }

  .testimonial-card {
    font-size: 14px;
    line-height: 1.6;
    min-height: auto;
    padding: 28px 24px 20px;
  }

  .testimonial-card figcaption {
    font-size: 13px;
  }

  .mini-label {
    font-size: 12px;
    padding: 4px 10px;
  }

  /* ---------- Contact card ---------- */
  .contact-column {
    justify-content: flex-start;
  }

  .contact-card {
    width: 100%;
    padding: 24px 20px;
  }

  .contact-card h2 {
    font-size: 18px;
  }

  .contact-card h3 {
    font-size: 14px;
  }

  .contact-card li {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-card .socials a {
    font-size: 12px;
    width: 24px;
    height: 24px;
  }

  /* ---------- Contact form ---------- */
  .contact-form-card h2 {
    font-size: 20px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  /* ---------- Footer ---------- */
  .site-footer {
    font-size: 12px;
    min-height: 36px;
  }

  .site-footer .site-container {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 4px;
  }

  /* ---------- Floating book button ---------- */
  .floating-book {
    font-size: 14px;
    padding: 12px 18px;
  }

  /* ---------- Booking modal ---------- */
  .booking-modal .modal-title {
    font-size: 18px;
  }

  .booking-modal .form-label {
    font-size: 14px;
  }

  .booking-modal .form-control,
  .booking-modal .form-select {
    font-size: 14px;
  }

  /* ---------- Lightbox ---------- */
  .lightbox__counter {
    font-size: 14px;
  }

  .lightbox {
    padding: 20px;
  }
}

/* =================================================================== */
/* ==================== SMALL MOBILE (max-width: 575.98px) ==================== */
/* =================================================================== */
@media (max-width: 575.98px) {
  .site-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .subpage-hero h1 {
    font-size: 22px;
    max-width: 340px;
  }

  .subpage-hero p {
    font-size: 14px;
    max-width: 340px;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card-simple {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .gallery-title {
    font-size: 22px;
  }

  .section-title-main {
    font-size: 22px;
  }

  .about-title {
    font-size: 18px;
  }

  .about-card {
    padding: 20px 18px 18px;
  }

  .about-card h2 {
    font-size: 17px;
  }

  .hero,
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 260px;
    min-height: 260px;
  }
}

/* =================================================================== */
/* ==================== EXTRA SMALL (max-width: 420px) ==================== */
/* =================================================================== */
@media (max-width: 420px) {
  .top-bar__links a:first-child {
    display: none;
  }

  .about-photo {
    height: 240px;
  }

  .amenity-grid {
    gap: 14px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-title {
    font-size: 20px;
  }

  .subpage-hero h1 {
    font-size: 20px;
  }

  .subpage-hero p {
    font-size: 14px;
  }

  .about-title {
    font-size: 17px;
  }

  .navbar-brand {
    width: 50px;
    height: 50px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }
}

/* calender past dates blocker  */
/* Past dates — ash gray, not clickable */
.cal-day--past {
	color: #b0b0b0 !important;
	background-color: #f0f0f0 !important;
	cursor: not-allowed !important;
	opacity: 0.5;
	pointer-events: none;
}

.cal-day--past .slot,
.cal-day--past .slot-label {
	opacity: 0;
	/* hide slot indicators on past days */
}
