/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
header, .header-on-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled, header.header-scrolled, header.header-after-hero {
  background: rgba(10, 30, 22, 0.82) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
}

.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: 98px;
  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-media-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
  opacity: 1;
  filter: none;
}

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

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(10, 24, 18, 0.65) 0%, rgba(10, 24, 18, 0.35) 50%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

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

.hero-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 32px;
}

.hero-content {
  width: 100%;
  max-width: 440px;
  color: #fff;
}

@media (min-width: 1024px) {
  .hero-content {
    transform: translateX(-35px);
  }
}

.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: 12px;
  color: #5F8F3A;
  max-width: 100%;
  word-wrap: break-word;
}

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

.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-specs-line {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 400;
  color: inherit;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .hero-specs-line {
    margin-top: 22px;
  }
}

.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: 16px;
  line-height: 1.2;
}

.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;
  }
}

.usp-strip-section {
  position: relative;
  width: 100%;
  height: 220px;
  min-height: 220px;
  padding: 42px 0 !important;
  display: flex;
  align-items: center;
  justify-content: 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;
}

@media (min-width: 1024px) {
  .usp-strip-section {
    min-height: 220px !important;
    height: 220px !important;
    padding: 38px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .usp-strip-item {
    flex: 0 0 240px !important;
    min-width: 240px !important;
    gap: 12px !important;
    padding: 10px 20px !important;
  }
  .usp-icon {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
  }
  .usp-text {
    font-size: 16px !important;
    line-height: 1.35 !important;
    max-width: 200px !important;
  }
  .usp-strip-divider {
    height: 70px !important;
  }
}

.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 36s 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;
  }
}



/* 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: 8px;
}

.about-specs-line {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 500;
  color: var(--color-accent-gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.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: 85px 0 50px 0;
  box-sizing: border-box;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  scroll-margin-top: 84px;
}

.amenities-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 48px;
}

.amenities-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
}

.amenities-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--color-primary-dark);
  text-align: center;
  line-height: 1.15;
  margin: 0;
  width: 100%;
}

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

/* Marquee Manual Navigation Buttons */
.marquee-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(10, 30, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F3D37D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  z-index: 50 !important;
  pointer-events: auto !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  user-select: none;
  -webkit-user-select: none;
}

.marquee-nav-btn * {
  pointer-events: none !important;
}

.marquee-nav-btn:hover {
  background: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-accent-gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.marquee-prev-btn {
  left: 20px;
}

.marquee-next-btn {
  right: 20px;
}

.bg-light .marquee-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D4AF37;
  color: var(--color-primary-dark);
}

.bg-light .marquee-nav-btn:hover {
  background: var(--color-accent-gold);
  color: var(--color-primary-dark);
}

.amenities-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.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;
}


.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: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
}

.fp-unit-type {
  font-weight: 700;
  white-space: nowrap;
}

.fp-unit-size {
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.95;
}

.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 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px auto;
}

.location-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.location-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--color-primary-dark);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 14px;
  width: 100%;
}

.location-subtitle {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  color: #4A5568;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
  width: 100%;
}

.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-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 48px;
}

.gallery-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-align: center;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.15;
  margin: 0;
  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-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: 0;
  padding-bottom: 14px;
  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: 12px;
  margin-top: 14px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 13px;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}
.claude-referral-link {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
  margin-left: 4px;
}
.claude-referral-link:hover {
  color: #F3D37D;
  text-decoration: underline;
}


/* ==========================================================================
   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 STICKY ACTION BAR (< 768px ONLY)
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(18, 28, 22, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  :root {
    --mobile-sticky-bar-height: 82px;
  }

  body {
    padding-bottom: calc(
      var(--mobile-sticky-bar-height) +
      env(safe-area-inset-bottom) +
      24px
    ) !important;
  }

  .mobile-action-bar {
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9998 !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
  }
}

@media screen and (min-width: 768px) {
  .mobile-action-bar {
    display: none !important;
  }
}

.action-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.action-btn {
  min-height: 50px;
  width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Call Now Button - Secondary */
.action-btn.call-btn {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #CDA85A;
}

.action-btn.call-btn:hover, .action-btn.call-btn:active {
  background: rgba(205, 168, 90, 0.15);
  color: #F3D37D;
}

/* Book Site Visit Button - Primary Gold */
.action-btn.primary-btn {
  background: linear-gradient(135deg, #F3D37D 0%, #CDA85A 100%);
  color: #121C16;
  border: none;
  box-shadow: 0 4px 14px rgba(205, 168, 90, 0.35);
}

.action-btn.primary-btn:hover, .action-btn.primary-btn:active {
  background: linear-gradient(135deg, #FFE89D 0%, #DFB465 100%);
  color: #0A120D;
}

.action-icon {
  flex-shrink: 0;
}

/* 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: 76px;
  }
  .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: 78px; }
  .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: 92px; }
  .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; }
  .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;
  padding: 16px;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

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

.modal-content {
  position: relative;
  width: 92%;
  max-width: 480px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  z-index: 1;
  transform: scale(0.93) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

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

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  line-height: 1;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.modal-close:hover {
  color: var(--color-accent-gold);
  background: rgba(255, 255, 255, 0.15);
}

.modal-subheading {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-body);
  font-size: 13.5px !important;
  font-weight: 400 !important;
  text-align: center !important;
  margin: 4px auto 14px auto !important;
  line-height: 1.4 !important;
}



/* 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 12px 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: 6px;
  text-align: center;
  width: 100%;
}

.disclaimer-text {
  font-size: 12px;
  line-height: 1.5;
  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) {
  .hero .container {
    padding: 0 32px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-content {
    max-width: 380px;
  }
  .hero-form-wrapper {
    width: 340px;
  }
  .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;
    margin-bottom: 10px;
  }
  .disclaimer-text {
    font-size: 11px;
    line-height: 1.45;
  }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OVERRIDES (< 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* 1. Mobile Header */
  header {
    height: 68px !important;
    padding: 0 16px !important;
    margin-bottom: 0 !important;
  }
  .nav-container {
    padding: 0 12px !important;
  }
  .logo-img {
    height: 94px !important;
  }
  .header-cta {
    padding: 8px 14px !important;
    font-size: 12.5px !important;
  }

  /* 2. Mobile Hero Section & Portrait Tower Background */
  .hero {
    height: auto !important;
    min-height: 100svh !important;
    padding-top: 68px !important;
    padding-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .hero-bg-img {
    object-fit: cover !important;
    object-position: center center !important;
  }
  .hero-bg {
    background-image: url('../assets/images/mobile hero image.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 20, 14, 0.45) 0%, rgba(5, 20, 14, 0.30) 50%, rgba(5, 20, 14, 0.55) 100%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }
  .hero .container {
    min-height: calc(100svh - 68px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    width: 100% !important;
    position: relative !important;
    z-index: 2 !important;
  }
  .hero-grid {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    margin: auto 0 !important;
    text-align: center !important;
  }
  .hero-content {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 10px 0 !important;
  }
  .premium-label {
    font-size: 13px !important;
    letter-spacing: 3px !important;
    margin-bottom: 8px !important;
  }
  .hero-content h1 {
    font-size: clamp(34px, 8vw, 44px) !important;
    line-height: 1.05 !important;
    margin-bottom: 10px !important;
  }
  .hero-location {
    font-size: clamp(18px, 4.5vw, 22px) !important;
    margin-bottom: 8px !important;
  }
  .subheading {
    font-size: 14.5px !important;
    line-height: 1.4 !important;
  }
  .hero-actions {
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }
  .hero-form-wrapper {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
  }
  .glass-form {
    padding: 20px 18px !important;
    border-radius: 16px !important;
    background: rgba(24, 34, 26, 0.92) !important;
  }
  .glass-form h3 {
    font-size: 19px !important;
    margin-bottom: 16px !important;
  }
  .enquiry-form input, .enquiry-form select {
    height: 46px !important;
    font-size: 14.5px !important;
    border-radius: 8px !important;
  }
  .enquiry-form .btn-primary.full-width {
    height: 48px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
  }

  /* 3. Mobile Continuous Horizontal USP Marquee (<= 768px) */
  .usp-strip-section {
    height: 75px !important;
    min-height: 75px !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    border-top: 1px solid rgba(197, 160, 89, 0.3) !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3) !important;
  }
  .usp-strip-mask {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
  }
  .usp-strip-track {
    display: flex !important;
    align-items: center !important;
    width: max-content !important;
    animation: mobileContinuousUsp 36s linear infinite !important;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }
  .usp-strip-group {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    width: auto !important;
  }
  .usp-strip-group:nth-child(2) {
    display: flex !important;
  }
  .usp-strip-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: max-content !important;
    gap: 5px !important;
    padding: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    position: static !important;
    transform: none !important;
  }
  .usp-icon {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    color: var(--color-accent-gold) !important;
    stroke: var(--color-accent-gold) !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }
  .usp-text {
    font-family: var(--font-body) !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.8px !important;
    color: #112A1D !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    word-break: normal !important;
    max-width: none !important;
    flex-shrink: 0 !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    text-align: center !important;
  }
  .usp-strip-divider {
    width: 1px !important;
    height: 32px !important;
    background-color: rgba(197, 160, 89, 0.35) !important;
    flex-shrink: 0 !important;
    margin: 0 24px !important;
    position: static !important;
    transform: none !important;
  }

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

  /* 4. Mobile About Section & Image */
  #about {
    padding: 45px 0 !important;
  }
  .editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .editorial-media {
    width: 100% !important;
  }
  .editorial-media picture,
  .editorial-media img {
    width: 100% !important;
    height: 340px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 16px !important;
    display: block !important;
  }
  .about-specs-line {
    font-size: clamp(13px, 3.8vw, 17px) !important;
    margin-bottom: 8px !important;
    white-space: nowrap !important;
  }
  .editorial-text h2 {
    font-size: clamp(28px, 6.5vw, 36px) !important;
    margin-bottom: 14px !important;
  }
  .editorial-text .lead-paragraph {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
  }
  .editorial-quote {
    font-size: 18px !important;
    margin: 12px 0 16px 0 !important;
  }

  /* 5. Mobile Amenities Section */
  #amenities {
    padding: 65px 0 45px 0 !important;
  }
  .amenities-header {
    margin-bottom: 32px !important;
  }
  .amenities-label {
    font-size: 11.5px !important;
    letter-spacing: 2px !important;
    white-space: normal !important;
    margin-bottom: 8px !important;
  }
  .amenities-title {
    font-size: clamp(26px, 6.5vw, 34px) !important;
    line-height: 1.2 !important;
  }
  .amenities-marquee-group {
    gap: 16px !important;
    padding-right: 16px !important;
  }
  .premium-amenity-card {
    flex: 0 0 calc(100vw - 64px) !important;
    width: calc(100vw - 64px) !important;
    max-width: 320px !important;
    height: 380px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }
  .amenity-card-title {
    font-size: 20px !important;
  }
  .amenity-card-text {
    font-size: 13px !important;
  }

  /* 6. Mobile Floor Plans */
  #floor-plans {
    padding: 40px 0 45px 0 !important;
  }
  #floor-plans h2 {
    font-size: clamp(28px, 6.5vw, 36px) !important;
  }
  .plans-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .fp-img-wrapper {
    height: 220px !important;
  }

  /* 7. Mobile Location Section */
  .location-advantage-section {
    padding: 40px 0 45px 0 !important;
  }
  .location-header {
    margin-bottom: 32px !important;
    text-align: center !important;
    align-items: center !important;
    padding: 0 12px !important;
  }
  .location-label {
    font-size: 11.5px !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }
  .location-title {
    font-size: clamp(26px, 6.5vw, 34px) !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }
  .location-subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    max-width: 100% !important;
  }
  .location-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .location-map-container {
    height: 300px !important;
    min-height: 300px !important;
    border-radius: 16px !important;
  }
  .location-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .location-card {
    padding: 16px 16px !important;
    border-radius: 14px !important;
  }
  .location-card h4 {
    font-size: 16.5px !important;
  }

  /* 8. Mobile Gallery Section */
  #gallery {
    padding: 45px 0 50px 0 !important;
  }
  .gallery-header {
    margin-bottom: 32px !important;
  }
  .gallery-label {
    font-size: 11.5px !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
  }
  .gallery-title {
    font-size: clamp(26px, 6.5vw, 34px) !important;
    line-height: 1.2 !important;
  }
  .gallery-card {
    flex: 0 0 calc(100vw - 64px) !important;
    width: calc(100vw - 64px) !important;
    max-width: 320px !important;
    height: 380px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  /* 9. Mobile FAQ Section */
  .faq-section {
    padding: 40px 0 45px 0 !important;
  }
  .faq-container {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 20px !important;
  }
  .faq-title {
    font-size: clamp(26px, 6vw, 34px) !important;
    text-align: center !important;
  }
  .faq-question {
    font-size: 17px !important;
    padding: 15px 18px !important;
  }
  .faq-answer p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  /* 10. Mobile Footer & Sticky Button */
  .sticky-right-cta {
    display: none !important;
  }

  .whatsapp-sticky-btn,
  .whatsapp-floating-button {
    display: flex !important;
    bottom: calc(76px + env(safe-area-inset-bottom)) !important;
    right: 16px !important;
    width: 52px !important;
    height: 52px !important;
    z-index: 9998 !important;
  }
}

/* Select Option Readability & Multi-line Support */
.enquiry-form select {
  text-overflow: ellipsis;
  padding-right: 28px;
}

.enquiry-form select option {
  white-space: normal;
  word-wrap: break-word;
  padding: 10px 12px;
  background-color: #15241a;
  color: #ffffff;
  font-size: 14px;
}

/* Mobile Vertical Sticky Book Site Visit Button */
.mobile-sticky-visit-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-visit-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 99;
    background: linear-gradient(135deg, #F3D37D 0%, #D4AF37 50%, #B88E33 100%);
    color: #1A3628;
    border: none;
    border-radius: 12px 0 0 12px;
    padding: 16px 9px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: -4px 6px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-sticky-visit-btn span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    transform: rotate(180deg);
    white-space: nowrap;
  }

  .mobile-sticky-visit-btn.is-visible {
    display: flex !important;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sticky-visit-btn:active {
    transform: translateY(-50%) translateX(-2px) scale(0.98);
  }
}

/* Sticky Floating WhatsApp Button (Desktop & Mobile) */
.whatsapp-sticky-btn,
.whatsapp-floating-button {
  display: flex !important;
  position: fixed !important;
  bottom: 90px !important;
  right: 24px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  z-index: 9997 !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
  text-decoration: none !important;
  user-select: none;
  -webkit-user-select: none;
}

.whatsapp-sticky-btn:hover,
.whatsapp-floating-button:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65), 0 6px 16px rgba(0, 0, 0, 0.45) !important;
}

/* Upper Footer Hero Block & Image Overlay Styling */
.footer-hero-block {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.footer-hero-block picture {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  z-index: 1;
  margin: 0;
  transform: scaleX(1.15);
  transform-origin: center;
}

@media (min-width: 1024px) {
  .footer-hero-block {
    width: 100% !important;
    max-width: none !important;
    height: 400px !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
  }

  .footer-hero-block picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-hero-bg {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: fill !important;
    transform: none !important;
    margin: 0 !important;
  }
}

@media (max-width: 768px) {
  .fp-footer {
    padding: 0 12px;
    font-size: 13px;
    height: 46px;
  }

  .footer-hero-block {
    height: 200px;
    margin-bottom: 10px;
  }
}
