/* ============================================================
   NHC HOMES — style.css
   Single shared stylesheet for all pages.
   Tailwind CDN handles layout/grid/spacing utilities.
   This file handles: brand tokens, typography, nav, footer,
   buttons, cards, animations, and all bespoke components.
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES (Brand Token System) ── */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

:root {
  --turquoise: #00BDCA;
  --turquoise-light: #00D2DC;
  --gold: #D3AF37;
  --gold-deep: #D19D01;
  --heading-color: #1A1A1A;
  --body-color: #4A4A4A;
  --bg-alt: #F9F9F9;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 300ms ease-in-out;
}

/* ── 2. RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  color: var(--body-color);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── 3. TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  color: var(--heading-color);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-color);
}

/* Section title with gold underline */
.section-title {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background-color: var(--gold);
  margin-top: 10px;
  border-radius: 2px;
}

.section-title.centered::after {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--body-color);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.8;
}

/* ── 4. BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background-color: var(--turquoise);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--turquoise);
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background-color: var(--turquoise-light);
  border-color: var(--turquoise-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 189, 202, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background-color: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--turquoise);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background-color: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 175, 55, 0.28);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background-color: var(--heading-color);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--heading-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-dark:hover {
  background-color: #2a2a2a;
  transform: translateY(-2px);
}

/* ── 5. NAVIGATION ── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow var(--transition);
}

#main-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

@media (max-width: 400px) {
  .nav-container {
    padding: 0 10px;
    gap: 8px;
  }

  .header-img-logo {
    height: 55px !important;
  }

  .currency-switch-container {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
}

/* NHC Logo — CSS recreation of uploaded brand logo */
.nhc-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.nhc-logo-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nhc-logo .logo-nhc,
.nhc-logo .logo-homes {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--turquoise);
  letter-spacing: -0.5px;
  line-height: 1;
}

.nhc-logo .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── 25. AVAILABILITY WIDGET & SUGGESTIONS ── */
#availability-result {
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.availability-msg {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: slideDown 0.4s ease-out;
}

.availability-msg.success {
  background-color: rgba(0, 189, 202, 0.08);
  border: 1px solid rgba(0, 189, 202, 0.25);
  color: #006b72;
}

.availability-msg.error {
  background-color: rgba(192, 0, 0, 0.05);
  border: 1px solid rgba(192, 0, 0, 0.15);
  color: #c00;
}

.availability-msg .msg-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.availability-msg .msg-header i {
  font-size: 1.25rem;
}

.availability-msg .btn-book-now-scroll {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.suggestion-chip {
  background-color: var(--white);
  border: 1.5px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--body-color);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.suggestion-chip:hover {
  border-color: var(--turquoise);
  color: var(--turquoise);
  background-color: rgba(0, 189, 202, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.suggestion-chip i {
  font-size: 0.7rem;
  opacity: 0.7;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ensure the submit button can be disabled */
#submitInquiryBtn:disabled {
  background-color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.nhc-logo .logo-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  color: #5a5a5a;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nhc-logo .logo-tagline::before,
.nhc-logo .logo-tagline::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background-color: #bbb;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--heading-color);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--turquoise);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--turquoise);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-book-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  background-color: var(--turquoise);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), transform var(--transition);
}

.nav-book-btn:hover {
  background-color: var(--turquoise-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--heading-color);
  border-radius: 2px;
  transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu — max-height slide */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
  background-color: var(--white);
  border-top: 1px solid #f0f0f0;
}

.mobile-menu.open {
  max-height: 420px;
}

.mobile-menu ul {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading-color);
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f5;
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu ul li:last-child a {
  border-bottom: none;
}

.mobile-menu ul li a:hover {
  color: var(--turquoise);
  padding-left: 0.5rem;
}

.mobile-book-btn {
  display: block;
  margin: 1rem 0 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background-color: var(--turquoise);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.mobile-book-btn:hover {
  background-color: var(--turquoise-light);
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}

/* ── 6. HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Only allowed gradient — hero overlay only */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 189, 202, 0.60) 0%, rgba(0, 210, 220, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content>p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 auto 1.75rem;
  max-width: 620px;
}

/* ── HERO BOOKING WIDGET ── */
.hero-booking-widget {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-md);
  display: flex;
  align-items: stretch;
  box-shadow: 0 10px 48px rgba(0, 0, 0, 0.28);
  max-width: 780px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.7rem 1.2rem;
  min-width: 0;
  border-right: 1px solid #eee;
}

.booking-field:last-of-type {
  border-right: none;
}

.booking-field label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.booking-field label i {
  color: var(--turquoise);
  font-size: 0.68rem;
}

.booking-input {
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--heading-color);
  background: transparent;
  width: 100%;
  cursor: pointer;
  padding: 0;
}

.booking-btn {
  background-color: var(--turquoise);
  color: var(--white);
  border: none;
  padding: 0 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: background-color var(--transition);
  flex-shrink: 0;
}

.booking-btn:hover {
  background-color: var(--turquoise-light);
}

.hero-cta-secondary {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  transition: all var(--transition);
  background: transparent;
}

.btn-outline-sm:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
}

@media (max-width: 640px) {
  .hero-booking-widget {
    flex-direction: column;
  }

  .booking-field {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .booking-btn {
    padding: 1rem;
    justify-content: center;
    font-size: 0.95rem;
  }

  .hero-cta-secondary {
    margin-top: 0.5rem;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* Slim page hero for inner pages */
.page-hero {
  position: relative;
  padding-top: 72px;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/_DSC0018.JPG');
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 189, 202, 0.75) 0%, rgba(0, 210, 220, 0.68) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.75rem;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* ── 7. SECTIONS ── */
section {
  padding: 5rem 0;
}

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

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-title::after {
  margin: 10px auto 0;
}

/* ── 8. CARDS ── */
.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease-in-out;
}

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

.card-body {
  padding: 1.5rem;
}

.card-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: rgba(0, 189, 202, 0.08);
  color: var(--turquoise);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 189, 202, 0.2);
  margin-bottom: 0.75rem;
}

/* ── 9. AMENITY GRID ── */
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-md);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 189, 202, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background-color var(--transition);
}

.amenity-item:hover .amenity-icon {
  background-color: rgba(0, 189, 202, 0.16);
}

.amenity-icon i {
  font-size: 1.4rem;
  color: var(--turquoise);
}

.amenity-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--heading-color);
}

/* ── 10. TESTIMONIALS ── */
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  border-left: 3px solid var(--turquoise);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--body-color);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--heading-color);
}

.testimonial-location {
  font-size: 0.78rem;
  color: #888;
}

/* ── 11. FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid #ececec;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--heading-color);
  transition: color var(--transition);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--turquoise);
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--turquoise);
  transition: transform 300ms ease-in-out;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.93rem;
  line-height: 1.8;
}

/* ── 12. HOUSE RULES ── */
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.rule-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 189, 202, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rule-icon i {
  font-size: 1.1rem;
  color: var(--turquoise);
}

.rule-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}

.rule-text p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── 13. LONG STAY ── */
.long-stay-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.long-stay-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.long-stay-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(211, 175, 55, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.long-stay-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

/* ── 14. STATS BAR ── */
.stats-bar {
  background-color: var(--turquoise);
  padding: 1.5rem 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  display: block;
  margin-top: 0.2rem;
}

/* ── 15. GALLERY ── */
.gallery-grid {
  columns: 3 260px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 420ms ease-in-out;
  border-radius: var(--radius-md);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
  border-radius: var(--radius-md);
}

.gallery-item:hover .gallery-item-overlay {
  background-color: rgba(0, 189, 202, 0.28);
}

.gallery-item-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay i {
  opacity: 1;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  background: transparent;
  color: var(--body-color);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--turquoise);
  background-color: var(--turquoise);
  color: var(--white);
}

/* ── 16. CONTACT / FORM ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--heading-color);
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--body-color);
  background-color: var(--white);
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(0, 189, 202, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 189, 202, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.1rem;
  color: var(--turquoise);
}

.contact-info-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--heading-color);
  display: block;
  margin-bottom: 0.15rem;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 0.9rem;
  color: var(--body-color);
  transition: color var(--transition);
}

.contact-info-text a:hover {
  color: var(--turquoise);
}

/* M-Pesa box */
.mpesa-box {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  border-left: 4px solid #00A651;
}

.mpesa-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mpesa-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #00A651;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background-color: var(--heading-color);
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 9999;
  transition: transform 350ms ease-in-out;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 90vw;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background-color: #1A7A4A;
}

.toast.error {
  background-color: #B33A3A;
}

/* ── 17. PRICING TABLE ── */
.pricing-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid #ebebeb;
}

.pricing-card.featured {
  border-color: var(--turquoise);
  box-shadow: 0 4px 24px rgba(0, 189, 202, 0.14);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  display: inline-block;
  background-color: var(--turquoise);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.pricing-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-amount .currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--turquoise);
  vertical-align: super;
  font-size: 1.1rem;
}

.pricing-amount .per {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body-color);
}

.pricing-features {
  padding: 0;
  margin: 1.25rem 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--body-color);
  padding: 0.4rem 0;
  border-bottom: 1px solid #f5f5f5;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--turquoise);
  font-size: 0.78rem;
}

/* ── 18. UNIT CAROUSEL ── */
.unit-carousel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.unit-carousel-track {
  display: flex;
  transition: transform 400ms ease-in-out;
}

.unit-carousel-slide {
  min-width: 100%;
  height: 380px;
}

.unit-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition), transform var(--transition);
}

.carousel-btn:hover {
  background-color: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.carousel-btn i {
  font-size: 0.85rem;
  color: var(--heading-color);
}

.carousel-btn.prev {
  left: 0.75rem;
}

.carousel-btn.next {
  right: 0.75rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  border: none;
}

.carousel-dot.active {
  background-color: var(--turquoise);
  transform: scale(1.25);
}

.unit-amenity-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .unit-amenity-list {
    grid-template-columns: 1fr;
  }
}

.unit-amenity-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--body-color);
}

.unit-amenity-list li i {
  color: var(--turquoise);
  font-size: 0.78rem;
}

/* ── 19. LOCATION LANDMARKS ── */
.landmark-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  color: var(--body-color);
}

.landmark-item:last-child {
  border-bottom: none;
}

.landmark-item i {
  color: var(--turquoise);
  width: 20px;
  text-align: center;
}

/* ── 20. CTA BANNER ── */
.cta-banner {
  background-color: var(--turquoise);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ── 21. FOOTER ── */
#main-footer {
  background-color: #111111;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo .logo-nhc,
.footer-logo .logo-homes {
  color: var(--turquoise) !important;
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.45) !important;
}

.footer-logo .logo-tagline::before,
.footer-logo .logo-tagline::after {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links li a:hover {
  color: var(--turquoise);
}

.footer-links li a i {
  font-size: 0.65rem;
  color: var(--turquoise);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item i {
  color: var(--turquoise);
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--turquoise);
  color: var(--turquoise);
  background-color: rgba(0, 189, 202, 0.10);
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

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

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

/* ── 22. FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.5s infinite;
  transition: transform var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.60);
  animation: none;
}

/* ── 24. CURRENCY SWITCH ── */
.currency-switch-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── 24. CURRENCY DROPDOWN ── */
.currency-dropdown {
  position: relative;
  display: inline-flex;
}

.currency-drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1.5px solid var(--turquoise);
  border-radius: 30px;
  padding: 5px 12px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--turquoise);
  transition: all var(--transition);
  user-select: none;
}

.currency-drop-btn:hover {
  background-color: rgba(0, 189, 202, 0.08);
  box-shadow: 0 2px 8px rgba(0, 189, 202, 0.15);
}

.currency-drop-btn i.fa-chevron-down {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.currency-dropdown.active .currency-drop-btn i.fa-chevron-down {
  transform: rotate(180deg);
}

.currency-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 100px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1001;
  border: 1px solid rgba(0, 189, 202, 0.1);
}

.currency-dropdown.active .currency-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-drop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--body-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.currency-drop-item:hover {
  background-color: rgba(0, 189, 202, 0.08);
  color: var(--turquoise);
}

.currency-drop-item.active {
  background-color: var(--turquoise);
  color: var(--white);
}

.currency-drop-item i {
  font-size: 0.7rem;
  opacity: 0;
}

.currency-drop-item.active i {
  opacity: 1;
}

.currency-switch-container i {
  color: var(--turquoise);
  font-size: 0.9rem;
}

.whatsapp-float i {
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--heading-color);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--heading-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.72), 0 0 0 10px rgba(37, 211, 102, 0.10);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
}

/* ── 23. 404 PAGE ── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 1.5rem 4rem;
  text-align: center;
  flex-direction: column;
  background-color: var(--bg-alt);
}

.error-code-bg {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(7rem, 22vw, 14rem);
  color: var(--turquoise);
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  letter-spacing: -10px;
}

.page-404-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

/* ── 24. RESPONSIVE ── */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .gallery-grid {
    columns: 2 200px;
  }

  .stats-inner {
    gap: 1.25rem;
  }

  /* Navigation Mobile Refinements */
  .header-img-logo {
    height: 60px !important;
    /* Smaller logo on mobile to prevent overflow */
  }

  .nav-container {
    padding: 0 1rem;
    min-height: 70px;
  }

  .currency-switch-container {
    gap: 4px;
    margin-right: 2px !important;
  }

  .currency-option {
    min-width: 32px;
    padding: 3px 8px;
    font-size: 0.6rem;
  }

  .hamburger {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  /* Overflow Fixes */
  .about-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .pricing-card.featured {
    width: 100% !important;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .landmark-item {
    width: 100% !important;
    box-sizing: border-box;
  }

  #directions-cta {
    width: 100% !important;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2.75rem 0;
  }

  .gallery-grid {
    columns: 1;
  }

  .footer-description {
    max-width: 100%;
  }
}

/* AOS timing */
[data-aos] {
  transition-duration: 600ms !important;
}

/* Utilities */
.text-gold {
  color: var(--gold);
}

.text-turquoise {
  color: var(--turquoise);
}

/* ── 25. DARK MODE ── */
/* Smooth transition for all colour-bearing properties */
*,
*::before,
*::after {
  transition: background-color 280ms ease, color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

[data-theme="dark"] {
  --heading-color: #F8F9FA;
  --body-color: #adb5bd;
  --bg-alt: #2B3035;
  --white: #212529;
  /* keep brand accent colours identical in dark mode */
}

/* Page background */
[data-theme="dark"] body {
  background-color: #212529;
  color: #adb5bd;
}

/* Ensure transparent dark logo remains legible on dark navbar */
[data-theme="dark"] .header-img-logo {
  background-color: #F8F9FA;
  padding: 4px 10px;
  border-radius: 6px;
}



/* Nav */
[data-theme="dark"] #main-nav {
  background-color: #2B3035;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .nav-links a {
  color: #E0E0E0;
}

[data-theme="dark"] .hamburger span {
  background-color: #E0E0E0;
}

[data-theme="dark"] .mobile-menu {
  background-color: #2B3035;
  border-top-color: #3d4248;
}

[data-theme="dark"] .mobile-menu ul li a {
  color: #E0E0E0;
  border-bottom-color: #3d4248;
}

/* Cards */
[data-theme="dark"] .card {
  background-color: #2B3035;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .card-body {
  background-color: #2B3035;
}

[data-theme="dark"] .amenity-item,
[data-theme="dark"] .long-stay-benefit,
[data-theme="dark"] .rule-item,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .contact-info-item,
[data-theme="dark"] .mpesa-box,
[data-theme="dark"] .pricing-card {
  background-color: #2B3035;
  border-color: #3d4248;
}

[data-theme="dark"] .pricing-card.featured {
  border-color: var(--turquoise);
}

/* Sections */
[data-theme="dark"] .section-bg-alt {
  background-color: #2B3035;
}

[data-theme="dark"] section:not(.section-bg-alt):not(.cta-banner):not(.stats-bar) {
  background-color: #212529;
}

/* Form inputs */
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background-color: #343A40;
  border-color: #495057;
  color: #F8F9FA;
}

[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder {
  color: #8A92A6;
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(0, 189, 202, 0.15);
}

/* Booking widget */
[data-theme="dark"] .currency-drop-btn {
  background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .currency-drop-menu {
  background-color: #2B3035;
  border-color: #3d4248;
}

[data-theme="dark"] .currency-drop-item {
  color: #E0E0E0;
}

[data-theme="dark"] .currency-drop-item:hover {
  background-color: rgba(0, 189, 202, 0.15);
}

[data-theme="dark"] .booking-field label {
  color: #F8F9FA;
}

[data-theme="dark"] .booking-input {
  color: #F8F9FA;
}

[data-theme="dark"] .booking-input option {
  background-color: #343A40;
}

/* FAQ */
[data-theme="dark"] .faq-item {
  border-bottom-color: #3d4248;
}

[data-theme="dark"] .faq-question {
  color: #F8F9FA;
}

/* Map / contact boxes */
[data-theme="dark"] .bg-white {
  background-color: #2B3035 !important;
}

/* Toast */
[data-theme="dark"] .toast {
  background-color: #343A40;
}

/* Footer already dark — just adjust border */
[data-theme="dark"] #main-footer {
  background-color: #181a1d;
}

[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* Misc inline whites */
[data-theme="dark"] [style*="background:white"],
[data-theme="dark"] [style*="background: white"] {
  background-color: #2B3035 !important;
}

/* ── Dark Mode Toggle Button ── */
.dark-toggle {
  position: fixed;
  bottom: 7rem;
  right: 1.5rem;
  z-index: 9997;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--heading-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.24);
  transition: transform var(--transition), background-color var(--transition);
}

.dark-toggle:hover {
  transform: scale(1.08);
}

.dark-toggle i {
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--transition);
}

[data-theme="dark"] .dark-toggle {
  background-color: #2a3040;
}

[data-theme="dark"] .dark-toggle i {
  color: var(--gold);
}

/* ── 22. CUSTOM CHECKBOX ── */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  user-select: none;
}

.form-checkbox-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 2px solid #ddd;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

[data-theme="dark"] .checkbox-custom {
  background-color: var(--bg-alt);
  border-color: #444;
}

.form-checkbox-group:hover input~.checkbox-custom {
  border-color: var(--turquoise);
}

.form-checkbox-group input:checked~.checkbox-custom {
  background-color: var(--turquoise);
  border-color: var(--turquoise);
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox-group input:checked~.checkbox-custom:after {
  display: block;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--body-color);
  line-height: 1.4;
}

.checkbox-label a {
  color: var(--turquoise);
  font-weight: 600;
  text-decoration: underline;
}

/* ── 26. HERO AVAILABILITY MODAL ── */
#nhc-avail-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1.5rem;
}

#nhc-avail-modal.active {
  opacity: 1;
  visibility: visible;
}

.avail-modal-content {
  background: var(--white);
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avail-modal-overlay.active .avail-modal-content {
  transform: scale(1);
}

.avail-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.avail-modal-close:hover {
  background-color: #f5f5f5;
  color: var(--heading-color);
}

.avail-modal-body {
  text-align: center;
}

.avail-modal-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.avail-modal-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.avail-modal-icon.success { color: var(--turquoise); }
.avail-modal-icon.error { color: #c00; }

.modal-result-msg {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--body-color);
}

.modal-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-suggestions-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 0.75rem;
}