/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(12, 24, 17, 0.55) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, border-color 0.3s ease;
}

header.scrolled {
  background: rgba(10, 20, 14, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

.header-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  z-index: 101;
  padding-left: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}

.logo-img {
  height: 72px;
  width: auto;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
}

.desktop-nav a.nav-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color var(--transition-medium);
}
.desktop-nav a.nav-link:hover {
  color: var(--color-accent-gold);
}

.header-cta {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.hamburger {
  display: none;
  color: var(--color-primary-light);
  font-size: 24px;
  cursor: pointer;
  z-index: 101;
}

/* Mobile Slide-Out Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-primary-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: right var(--transition-slow);
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-primary-light);
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .hamburger { display: block; }
}


/* ==========================================================================
   SECTIONS ARCHITECTURE
   ========================================================================== */

/* 1. Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  background-color: #121C16;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  padding-top: 72px;
}

.hero-media-wrapper {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('../assets/images/hero.webp');
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(14,21,17,0.92) 0%, rgba(14,21,17,0.55) 45%, rgba(0,0,0,0.12) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  padding: 0 36px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 46% 1fr 360px;
  gap: 28px;
  align-items: center;
}

.hero-content {
  grid-column: 1;
  color: #fff;
  margin-top: 0;
  max-width: 680px;
  position: relative;
  left: 0;
}

.premium-label {
  display: inline-block;
  color: #cda85a;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 0.98;
  margin-bottom: 0;
  color: #5F8F3A;
  max-width: 100%;
  word-wrap: break-word;
}

.hero-content h1::first-line {
  color: #ffffff;
}

.hero-divider {
  width: 44px;
  height: 1px;
  background-color: #cda85a;
  margin: 12px 0;
}

.hero-location {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
  line-height: 1.15;
}

.subheading {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

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

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background-color: #cda85a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #b5924b;
}

.btn-secondary.dark {
  background-color: transparent;
  color: #fff;
  border: 1px solid #cda85a;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-secondary.dark:hover {
  background-color: rgba(205, 168, 90, 0.1);
}

.subheading:last-child {
  margin-bottom: 0;
}

/* Hero Form */
.hero-form-wrapper {
  grid-column: 3;
  width: 360px;
  max-width: 100%;
  position: relative;
  left: 0;
}

.glass-form {
  background: rgba(24, 34, 26, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.4);
}

.glass-form h3 {
  color: #fff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.ornate-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.ornate-divider span {
  width: 32px;
  height: 1px;
  background-color: rgba(205, 168, 90, 0.3);
}

.enquiry-form .form-group {
  margin-bottom: 11px;
  position: relative;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 0 14px 0 42px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}
.enquiry-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.enquiry-form select { color: rgba(255, 255, 255, 0.6); }
.enquiry-form input:focus, .enquiry-form select:focus { border-color: #cda85a; }

.form-group.has-icon .input-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.full-width { width: 100%; margin-top: 6px; }

.enquiry-form .btn-primary.full-width {
  height: 42px;
  padding: 0;
  font-size: 12px;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* Form Validation & States */
.form-error {
  display: block;
  font-size: 11px;
  color: #E74C3C;
  position: absolute;
  bottom: -18px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.form-error.visible { opacity: 1; transform: translateY(0); }
.enquiry-form input.input-error, .enquiry-form select.input-error { border-bottom-color: #E74C3C; }

/* Success Message */
.success-message { text-align: center; color: #fff; animation: fadeIn 0.5s ease forwards; padding: 20px 0; }
.success-message h4 { font-family: var(--font-heading); font-size: 24px; color: #cda85a; margin-bottom: 16px; }
.success-message p { font-size: 14px; margin-bottom: 8px; line-height: 1.5; color: rgba(255, 255, 255, 0.9); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Loading Spinner */
.loading-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s linear infinite; vertical-align: middle; margin-left: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }

.delay-1 { transition-delay: 0.3s; }


/* 2. USP / Intro */
.usp-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.usp-content h2 { margin-bottom: 40px; }


/* Philosophy Section */
.philosophy-section {
  padding: 180px 0;
  position: relative;
}

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

.philosophy-media {
  width: 100%;
}

.philosophy-media .placeholder {
  border-radius: var(--border-radius-card); /* Soft rounded corners */
}

.philosophy-content {
  display: flex;
  flex-direction: column;
}

.philosophy-content h2 {
  font-size: var(--text-h2);
  margin-bottom: 40px;
  color: var(--color-primary-dark);
}

.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.philosophy-body p {
  color: rgba(26, 54, 40, 0.7);
  font-size: var(--text-body);
}

.philosophy-icons {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

.icon-item span {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
}

.philosophy-quote {
  padding-left: 24px;
  border-left: 1px solid var(--color-accent-gold);
}

.philosophy-quote blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-h3);
  color: var(--color-primary-dark);
  line-height: 1.4;
}

/* Animations specific to Philosophy */
.reveal-soft {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.reveal-soft.in-view {
  opacity: 1;
}

.reveal-icon {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-icon.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-quote {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.reveal-quote.in-view {
  opacity: 1;
}

.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.7s; }
.delay-5 { transition-delay: 0.8s; }
.delay-6 { transition-delay: 0.9s; }
.delay-7 { transition-delay: 1.0s; }
.delay-8 { transition-delay: 1.2s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 100px 0;
  }
  .philosophy-grid {
    display: flex;
    flex-direction: column;
  }
  .philosophy-icons {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
  }
  .icon-circle {
    width: 48px;
    height: 48px;
  }
  .icon-circle svg {
    width: 20px;
    height: 20px;
  }
}

/* /* 2. USP Highlights Strip */
.usp-strip-section {
  position: relative;
  width: 100%;
  height: 145px;
  min-height: 145px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF !important;
  border-top: 1px solid rgba(197, 160, 89, 0.35);
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  z-index: 15;
  margin: 0;
  box-sizing: border-box;
  scroll-margin-top: 84px;
}

.usp-strip-mask {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.usp-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: uspMarquee 28s linear infinite !important;
  will-change: transform;
}

.usp-strip-track:hover {
  animation-play-state: paused;
}

.usp-strip-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.usp-strip-group:nth-child(2) {
  display: flex !important;
}

.usp-strip-item {
  flex: 0 0 210px;
  min-width: 210px;
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
}

.usp-star {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  flex-shrink: 0;
  display: inline-block;
}

.usp-icon {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  flex-shrink: 0;
  display: inline-block;
  color: var(--color-accent-gold);
  stroke: var(--color-accent-gold);
}

.usp-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 1px;
  color: #112A1D;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-word;
  max-width: 170px;
  text-align: center;
}

.usp-strip-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(197, 160, 89, 0.35);
  flex-shrink: 0;
}

@keyframes uspMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1024px) {
  .usp-strip-section {
    height: 225px;
    padding: 30px 0 !important;
  }
  .usp-strip-group {
    gap: 45px;
    padding-right: 45px;
  }
  .usp-strip-item {
    width: 180px;
    gap: 16px;
  }
  .usp-icon {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
  }
  .usp-strip-divider {
    height: 70px;
  }
  .usp-text {
    font-size: 14px;
    max-width: 170px;
    letter-spacing: 1.8px;
  }
}

@media (max-width: 768px) {
  .usp-strip-section {
    height: 185px;
    padding: 20px 0 !important;
  }
  .usp-strip-track {
    animation-duration: 50s;
  }
  .usp-strip-group {
    gap: 30px;
    padding-right: 30px;
  }
  .usp-strip-item {
    width: 145px;
    gap: 12px;
  }
  .usp-icon {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }
  .usp-strip-divider {
    height: 50px;
  }
  .usp-text {
    font-size: 12.5px;
    letter-spacing: 1.5px;
    max-width: 135px;
  }
}

/* 3. Editorial Layouts (About) */
#about {
  min-height: auto;
  height: auto;
  padding: 65px 0 75px 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  scroll-margin-top: 84px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.editorial-grid.reverse {
  direction: rtl;
}
.editorial-grid.reverse > * {
  direction: ltr;
}

.editorial-media img {
  height: 500px;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.editorial-text {
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-text .caption {
  display: block;
  color: #CDA85A;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.editorial-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.editorial-text .lead-paragraph {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
  max-width: 580px;
  font-weight: 300;
}

.editorial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: #CDA85A;
  margin: 10px 0 24px 0;
  padding-left: 20px;
  border-left: 2px solid #CDA85A;
  max-width: 540px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.editorial-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.editorial-body p {
  max-width: 580px;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #CDA85A;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.editorial-link:hover {
  color: #FFE89D;
}

.editorial-link .link-arrow {
  transition: transform 0.3s ease;
}

.editorial-link:hover .link-arrow {
  transform: translateX(4px);
}

/* About CTA Button */
.about-cta-wrapper {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  padding: 0 38px;
  background: linear-gradient(135deg, #F3D37D 0%, #D4AF37 50%, #B88E33 100%);
  color: #1A3628;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.about-cta-btn .cta-arrow {
  transition: transform 0.3s ease;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #FFE89D 0%, #E5C158 50%, #C5A059 100%);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.45);
}

.about-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

.editorial-link:hover .link-arrow {
  transform: translateX(6px);
}

/* 4. Full Width Media (AI Video) */
.full-width-media {
  padding: 0; /* Remove standard section padding */
  width: 100%;
}
.full-width-media .placeholder {
  border-radius: 0;
}

/* 5. Amenities Marquee Section */
#amenities {
  min-height: auto;
  height: auto;
  padding: 40px 0 45px 0;
  box-sizing: border-box;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  scroll-margin-top: 84px;
}

.amenities-marquee-mask {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 0;
}

.amenities-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: amenitiesMarquee 40s linear infinite;
  will-change: transform;
}

.amenities-marquee-track:has(.premium-amenity-card:hover) {
  animation-play-state: paused;
}

.amenities-marquee-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

.premium-amenity-card {
  width: 275px;
  height: 350px;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
  overflow: hidden;
  border: none;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.premium-amenity-card:hover .amenity-hero-img {
  transform: scale(1.05);
}

.amenity-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.amenity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  box-sizing: border-box;
}

.amenity-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
      to top,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.85) 15%,
      rgba(0,0,0,0.65) 35%,
      rgba(0,0,0,0.35) 60%,
      rgba(0,0,0,0) 100%
  );
  z-index: 1;
  border-radius: 0 0 20px 20px;
  pointer-events: none;
}

.premium-amenity-card h4 {
  margin: 0 0 4px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  color: #FFFFFF;
  text-shadow: none;
  position: relative;
  z-index: 3;
}

.premium-amenity-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  text-align: left;
  white-space: normal;
  position: relative;
  z-index: 3;
}

@keyframes amenitiesMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.new-amenities-wrapper .premium-amenity-card.reveal-up.in-view:hover .amenity-hero-img {
  transform: scale(1.05);
}

/* Centered Amenities CTA Button */
.amenities-cta-wrapper {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.amenities-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 54px;
  padding: 0 44px;
  background: linear-gradient(135deg, #F3D37D 0%, #D4AF37 50%, #B88E33 100%);
  color: #1A3628;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.amenities-cta-btn .cta-arrow {
  transition: transform 0.3s ease;
}

.amenities-cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #FFE89D 0%, #E5C158 50%, #C5A059 100%);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.45);
}

.amenities-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

/* 6. Floor Plans */
#floor-plans {
  min-height: auto;
  height: auto;
  padding: 65px 0 75px 0;
  box-sizing: border-box;
  background-color: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  overflow: hidden;
  scroll-margin-top: 84px;
}

#floor-plans h2 {
  white-space: normal;
  font-size: clamp(30px, 3vw, 42px);
  text-align: center;
}

#floor-plans .caption {
  display: block;
  text-align: center;
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.floor-plan-card {
  width: 320px;
  max-width: 100%;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fp-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

/* Semi-transparent dark overlay always on */
.fp-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  border-radius: 16px 16px 0 0;
  z-index: 2;
}

.fp-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
  filter: blur(12px);
  transform: scale(1.04);
  transition: filter .3s ease;
  pointer-events: none;
  user-select: none;
}

.fp-footer {
  background: #ada381;
  color: #1A3628;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.fp-view-btn {
  background: linear-gradient(135deg, #F3D37D 0%, #D4AF37 50%, #B88E33 100%);
  color: #1A3628;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 15px rgba(197, 160, 89, 0.4);
  transition: .3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 5;
  pointer-events: none; /* Let the card handle the click */
}

/* Hover effects */
.floor-plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent-gold);
  box-shadow: 0 14px 35px rgba(197, 160, 89, 0.25);
}

.floor-plan-card:hover .fp-img-wrapper img {
  filter: blur(8px) brightness(0.85);
  transform: scale(1.08);
}

.floor-plan-card:hover .fp-view-btn {
  transform: translate(-50%,-50%) scale(1.05);
  background: linear-gradient(135deg, #FFE89D 0%, #E5C158 50%, #C5A059 100%);
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 22px rgba(229, 193, 88, 0.65);
}

/* Unlocked Floor Plan State */
.floor-plan-card.unlocked .fp-img-wrapper img {
  filter: blur(0) brightness(1) !important;
  transform: scale(1) !important;
}

.floor-plan-card.unlocked .fp-img-wrapper::before {
  background: transparent !important;
}

.floor-plan-card.unlocked .fp-view-btn {
  opacity: 0;
  pointer-events: none;
}

/* Modal CSS */
.fp-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.82);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fp-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.fp-modal-header {
  height: 60px;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  color: white;
}
.fp-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.fp-modal-actions {
  display: flex;
  gap: 16px;
}
.fp-action-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px;
}
.fp-action-btn:hover {
  opacity: 1;
}
.fp-modal-body {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-modal-body:active {
  cursor: grabbing;
}
.fp-modal-body img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  /* Add scale logic for fade+scale animation */
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform-origin: center center;
}
/* When active, image scales in and fades in */
.fp-modal.active .fp-modal-body img {
  opacity: 1;
}

.plans-grid .floor-plan-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 16px;
  display: block;
}

/* 7. Location Advantage (Redesigned Split-Screen) */
.location-advantage-section {
  background-color: #F9F8F5;
  min-height: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 45px 0 55px 0;
  scroll-margin-top: 84px;
}

.location-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.location-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px auto;
}

.location-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #A6844A;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.location-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.8vw, 38px);
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.location-subtitle {
  font-size: 14.5px;
  color: #666666;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

.location-layout {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.location-map-container {
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border: 1px solid #E8E2D8;
  height: 410px;
  min-height: 410px;
}

.location-map-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.location-card {
  background: #F9F8F5;
  border: 1px solid #E8E2D8;
  border-radius: 16px;
  padding: 18px 18px;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.location-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.location-card h4 {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.location-card p {
  font-size: 13px;
  line-height: 1.45;
  color: #666666;
  margin: 0;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent-gold);
}

.location-card:hover .location-icon {
  color: var(--color-accent-gold);
  transform: scale(1.08);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* 9. Gallery Section */
#gallery {
  min-height: auto;
  height: auto;
  padding: 60px 0 70px 0;
  box-sizing: border-box;
  background-color: var(--color-primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  scroll-margin-top: 84px;
}

#gallery .container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#gallery h2 {
  font-size: clamp(46px, 4vw, 56px);
  color: var(--color-accent-gold);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  width: 100%;
}

.gallery-card {
  width: 310px !important;
  height: 430px !important;
  border-radius: 24px !important;
  flex-shrink: 0;
}

.gallery-card .amenity-hero-img {
  border-radius: 24px !important;
}

/* Lightbox Styling */
.lightbox {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: rgba(8, 18, 14, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lightbox-img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--color-accent-gold);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 10;
}

.lightbox-prev { left: -30px; }
.lightbox-next { right: -30px; }

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--color-accent-gold);
  color: var(--color-primary-dark);
}

/* 10. FAQ Section */
.faq-section {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  height: auto;
  min-height: auto;
  padding: 65px 0 75px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 84px;
}

.faq-container {
  max-width: 1280px !important;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 0 32px;
}

.faq-intro {
  text-align: left;
  margin-bottom: 0;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  color: var(--color-primary-dark);
  margin-bottom: 18px;
}

.faq-divider {
  width: 40px;
  height: 2px;
  background: var(--color-accent-gold);
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-card {
  background: #ffffff !important;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-card:hover, .faq-card.active {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--color-accent-gold);
  background: #ffffff !important;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 5;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}

.faq-question span {
  padding-right: 16px;
  pointer-events: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent-gold);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.faq-card.active .faq-answer-wrapper {
  max-height: 350px;
  opacity: 1;
  visibility: visible;
}

.faq-answer {
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26, 54, 40, 0.88);
  margin: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 32px;
  }
  .faq-question {
    font-size: 18px;
    padding: 16px 20px;
  }
  .faq-answer {
    padding: 0 20px 20px 20px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}



/* 12. Footer */
footer {
  padding-top: 56px;
  padding-bottom: 28px;
  font-size: var(--text-caption);
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.footer-logo {
  width: 120px;
  height: auto;
}
.footer-address {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  margin-top: 28px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 13px;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}


/* ==========================================================================
   STICKY RIGHT ACTION BAR (DESKTOP)
   ========================================================================== */
.sticky-right-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  align-items: center;
}

.sticky-tab-btn {
  background: linear-gradient(135deg, #F3D37D 0%, #D4AF37 50%, #B88E33 100%);
  color: #1A3628;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-right: none;
  padding: 22px 14px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-tab-btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-tab-btn:hover {
  background: linear-gradient(135deg, #FFE89D 0%, #E5C158 50%, #C5A059 100%);
  padding-left: 18px;
  box-shadow: -6px 0 25px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .sticky-right-cta {
    display: none !important;
  }
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary-light);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  z-index: 100;
  padding: 16px 24px;
  /* iPhone home indicator safety */
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary-dark);
}
.action-btn.primary {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-light);
  border-radius: 4px;
  padding: 8px 0;
  font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 340px; gap: 30px; }
  .hero-content { grid-column: 1; max-width: 100%; }
  .hero-form-wrapper { grid-column: 2; }
}

/* ==========================================================================
   LAPTOP BREAKPOINT OPTIMIZATION (1024px - 1440px / 1366x768)
   ========================================================================== */
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  header {
    height: 68px;
  }
  .logo-img {
    height: 46px;
  }
  .desktop-nav {
    gap: 28px;
  }
  .desktop-nav a.nav-link {
    font-size: 12.5px;
  }
  .header-cta {
    padding: 8px 18px;
    font-size: 14px;
  }
  
  .hero {
    height: calc(100vh - 68px);
    min-height: 520px;
    max-height: 650px;
    padding-top: 68px;
  }
  .hero .container {
    padding: 0 32px;
  }
  .hero-grid {
    grid-template-columns: 44% 1fr 330px;
    gap: 24px;
  }
  .hero-content h1 {
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.08;
  }
  .hero-location {
    font-size: 19px;
    margin-bottom: 8px;
  }
  .subheading {
    font-size: 13.5px;
  }
  .hero-form-wrapper {
    width: 330px;
  }
  .glass-form {
    padding: 16px 20px;
  }
  .glass-form h3 {
    font-size: 18px;
  }
  .enquiry-form .form-group {
    margin-bottom: 8px;
  }
  .enquiry-form input,
  .enquiry-form select {
    height: 38px;
    font-size: 13px;
  }
  .enquiry-form .btn-primary.full-width {
    height: 40px;
    font-size: 11.5px;
  }
  
  /* Sections Compact Sizing */
  #about {
    min-height: auto;
    padding: 60px 0;
  }
  .editorial-grid {
    gap: 48px;
  }
  .editorial-media img {
    height: 440px;
  }
  .editorial-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .editorial-text .lead-paragraph {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .editorial-quote {
    font-size: 22px;
    margin: 8px 0 16px 0;
  }
  
  #amenities {
    min-height: auto;
    padding: 60px 0;
  }
  .premium-amenity-card {
    width: 320px;
    height: 420px;
  }
  
  #floor-plans {
    min-height: auto;
    padding: 60px 0;
  }
  #floor-plans h2 {
    font-size: 34px;
  }
  .plans-grid {
    gap: 24px;
    margin-top: 36px;
  }
  .fp-img-wrapper {
    height: 250px;
  }
  
  .location-advantage-section {
    min-height: auto;
    padding: 60px 0;
  }
  .location-header {
    margin-bottom: 36px;
  }
  .location-title {
    font-size: 34px;
  }
  .location-map-container {
    height: 420px;
    min-height: 420px;
  }
  .location-card {
    padding: 22px 20px;
  }
  
  #gallery {
    min-height: auto;
    padding: 60px 0;
  }
  
  .faq-section {
    padding: 60px 0 !important;
  }
}

@media (max-width: 1024px) {
  .logo-img { height: 50px; }
  .desktop-nav { gap: 24px; }
  .desktop-nav a.nav-link { font-size: 13px; letter-spacing: 0.5px; }
  .editorial-grid, .plans-grid { grid-template-columns: 1fr; gap: 48px;}
  .editorial-grid.reverse { direction: ltr; }
  .new-amenities-wrapper { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  #google-map { height: 420px; }
  .faq-section { height: auto; padding: 80px 0 !important; }
  .faq-container { grid-template-columns: 1fr; gap: 48px; }
  .faq-accordion { width: 100%; }
}

@media (max-width: 768px) {
  .logo-img { height: 44px; }
  .logo-link { padding-left: 0; }
  .desktop-only { display: none !important; }
  .new-amenities-wrapper { grid-template-columns: 1fr; }
  .mobile-action-bar { display: block; }
  #google-map { height: 320px; }
  .hero-content h1 { font-size: 38px; line-height: 1.1; margin-bottom: 8px; }
  .hero-location { font-size: 20px; margin-bottom: 16px; }
  .hero {
    min-height: auto;
    max-height: none;
    height: auto;
    padding-top: 0;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    background-color: var(--color-primary-dark);
  }
  .hero-bg {
    background-image: url('../assets/images/hero-mobile.webp');
    background-position: center center;
  }
  .faq-intro { text-align: center; margin-bottom: 32px; }
  .faq-divider { margin: 0 auto; }
  .hero-media-wrapper {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
  }
  .hero-media-wrapper .placeholder {
    animation: none;
  }
  .hero .container {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-wrapper { grid-column: 1; }

  .lightbox-prev { left: 0px; }
  .lightbox-next { right: 0px; }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .final-cta { padding: 120px 0; }
}

/* Modal Styling */
.modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(8, 18, 14, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  z-index: 1;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin: 0 auto;
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-accent-gold);
}



/* Location Advantage Responsive */
@media (max-width: 1024px) {
  .location-advantage-section {
    height: auto;
    padding: 100px 0;
  }
  .location-layout {
    grid-template-columns: 1fr;
  }
  .location-map-container {
    height: 400px;
  }
  .location-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .location-advantage-section {
    padding: 80px 0;
  }
  .location-container {
    padding: 0 24px;
  }
  .location-header {
    margin-bottom: 48px;
  }
  .location-title {
    font-size: 36px;
  }
  .location-map-container {
    height: 300px;
  }
  .location-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* 12. Footer Disclaimer */
.footer-disclaimer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.disclaimer-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8A76A;
  margin-bottom: 14px;
  text-align: center;
  width: 100%;
}

.disclaimer-text {
  font-size: 12px;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-disclaimer {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .footer-top-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  .footer-disclaimer {
    padding: 0 24px;
  }
  .disclaimer-text {
    font-size: 11px;
    line-height: 1.6;
  }
}
