/* ================================================================
   DUNDIGAL LUXURY TRIPLEX VILLAS — MAIN STYLESHEET
   Design System: Premium Architectural Minimal
   ================================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --red: #B21816;
  --red-dark: #8B1210;
  --black: #000000;
  --dark: #222222;
  --mid-gray: #666666;
  --light-gray: #F4F4F4;
  --white: #FFFFFF;
  --border: #E8E8E8;
  --border-dark: rgba(0, 0, 0, 0.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', -apple-system, sans-serif;

  --px: clamp(20px, 5vw, 80px);
  --section-py: clamp(80px, 10vw, 140px);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--sans);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── UTILITY ── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 16px;
}

.red-line {
  width: 48px;
  height: 2px;
  background: var(--red);
  display: block;
  margin: 20px 0;
}

/* ── GSAP ANIMATION CLASSES ── */
.gsap-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.gsap-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gsap-reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.clip-reveal {
  clip-path: inset(100% 0 0 0);
}

/* ================================================================
   HEADER
   ================================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 24px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  padding: 14px var(--px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

#header.scrolled .header-logo-img {
  filter: none;
}

.footer-logo-img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.logo-name {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  transition: color var(--transition);
}

#header.scrolled .logo-name {
  color: var(--black);
}

.logo-tagline {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

/* Nav links */
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  list-style: none;
}

.header-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: color var(--transition-fast);
  position: relative;
}

#header.scrolled .header-nav a {
  color: #222222;
  text-shadow: none;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
  color: #FFFFFF;
}

#header.scrolled .header-nav a:hover,
#header.scrolled .header-nav a.active {
  color: var(--red);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* Enquire button */
.btn-enquire-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 11px 24px;
  border: 1px solid var(--red);
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-enquire-header:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1000;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  pointer-events: none;
}

#header.scrolled .hamburger span {
  background: #111111;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 20px 40px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  z-index: 1001;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-close:hover,
.mobile-nav-close:active {
  background: var(--red);
  color: var(--white);
  transform: scale(1.05);
}

.mobile-nav-close svg {
  width: 20px;
  height: 20px;
}

#mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.mobile-nav-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#mobile-nav.open .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-item a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 2px;
  padding: 8px 20px;
  text-align: center;
  transition: color var(--transition-fast);
}

.mobile-nav-item a:hover {
  color: var(--red);
}

.mobile-nav-cta {
  margin-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 14px 40px;
  border-radius: 2px;
  cursor: pointer;
}

/* ================================================================
   FLOATING STICKY CTA (Desktop)
   ================================================================ */
.sticky-cta {
  position: fixed;
  top: 50%;
  left: 0;
  right: auto;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-cta-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 18px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: padding var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
}

.sticky-cta-btn:first-child {
  background: var(--red);
  color: var(--white);
  border-top-right-radius: 4px;
}

.sticky-cta-btn:first-child:hover {
  background: var(--red-dark);
  padding-left: 16px;
}

.sticky-cta-btn:last-child {
  background: var(--black);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.sticky-cta-btn:last-child:hover {
  background: var(--dark);
  padding-left: 16px;
}

/* Mobile sticky bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  flex-direction: row;
  border-top: 2px solid var(--red);
}

.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.mobile-sticky-bar a:first-child {
  background: var(--red);
  color: var(--white);
}

.mobile-sticky-bar a:last-child {
  background: var(--black);
  color: var(--white);
}

/* ================================================================
   FORM SHARED STYLES
   ================================================================ */
.f-group {
  margin-bottom: 4px;
}

.f-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--light-gray);
  border: 1px solid transparent;
  border-bottom: 1px solid #D8D8D8;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.f-input::placeholder {
  color: #AAAAAA;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.f-input:focus {
  background: var(--white);
  border-color: var(--red);
  border-bottom-color: var(--red);
}

.f-input.error {
  border-color: #cc3333;
  border-bottom-color: #cc3333;
  background: #fff8f8;
}

.f-error {
  font-size: 10px;
  color: #cc3333;
  margin-top: 3px;
  margin-bottom: 6px;
  display: none;
  letter-spacing: 0.3px;
}

.f-error.show {
  display: block;
}

/* Spinner */
.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 14px 28px;
  border: 1px solid var(--red);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178, 24, 22, 0.3);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  padding: 13px 28px;
  border: 1px solid var(--black);
  transition: all var(--transition-fast);
  cursor: pointer;
  font-family: var(--sans);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #0d0f14;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(to left,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.25) 50%,
      rgba(0, 0, 0, 0.35) 100%); */
}

/* Hero: Form Panel (Moved to Right Side) */
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px var(--px) 60px;
}

/* Hero form — Completely Transparent */
.hero-form-panel {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 32px 26px;
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.hero-form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;

  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.hero-form-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.hero-form-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-form-panel .f-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  border-radius: 4px;
}

.hero-form-panel .f-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-form-panel .f-input:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--red);
  border-bottom-color: var(--red);
}

.hero-form-panel .btn-primary {
  width: 100%;
  padding: 15px;
  margin-top: 6px;
  font-size: 10px;
}

.form-note,
.modal-note {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.3px;
  display: block;
}

.hero-form-panel .form-note,
.mobile-form-container .form-note {
  color: rgba(255, 255, 255, 0.85);
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--black);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  user-select: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(30px, 4vw, 60px);
  animation: trustInfiniteScroll 25s linear infinite;
  will-change: transform;
}

.trust-bar:hover .trust-bar-track {
  animation-play-state: paused;
}

@keyframes trustInfiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.trust-item-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
#about {
  padding: var(--section-py) 0;
  overflow: hidden;
}

.about-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.about-left {
  position: relative;
  height: 100%;
  display: flex;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a09 0%, #2d1515 60%, #333 100%);
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 4px;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--red);
  pointer-events: none;
  z-index: -1;
}

.about-year-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--red);
  color: var(--white);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(178, 24, 22, 0.3);
  z-index: 2;
}

.about-year-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.about-year-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
}

/* About right */
.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
}

.about-headline {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.about-headline strong {
  font-weight: 600;
  color: var(--black);
}

.about-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 24px;
}

/* Project stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.about-stat {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  transition: background var(--transition-fast);
}

.about-stat:hover {
  background: var(--light-gray);
}

.about-stat-num {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.about-stat-num .stat-unit,
.about-stat-num span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-left: 5px;
}

.about-stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 10px;
  display: block;
}

/* Vertical label */
.about-vertical-label {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid-gray);
  white-space: nowrap;
  transform-origin: center;
}

/* ================================================================
   AMENITIES SECTION
   ================================================================ */
#amenities {
  padding: var(--section-py) 0;
  background: var(--light-gray);
  overflow: hidden;
}

.amenities-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 24px;
}

.amenities-big-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 300;
  color: var(--black);
  line-height: 0.9;
  letter-spacing: -2px;
  opacity: 0.06;
  position: absolute;
  top: 0;
  left: var(--px);
  pointer-events: none;
  user-select: none;
}

.amenities-title-wrap {
  position: relative;
}

.amenities-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
}

.amenities-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 8px;
}

/* Amenities grid */
.amenities-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.amenity-item {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.amenity-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.amenity-item:hover::before {
  transform: scaleX(1);
}

.amenity-item:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.amenity-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition-fast);
  min-width: 50px;
}

.amenity-item:hover .amenity-num {
  color: rgba(178, 24, 22, 0.1);
}

.amenity-content {
  flex: 1;
}

.amenity-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.amenity-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.amenity-desc {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ================================================================
   SPECIFICATIONS SECTION
   ================================================================ */
#specifications {
  padding: var(--section-py) 0;
  background: var(--white);
}

.specs-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.specs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}

.specs-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.05;
}

.specs-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 420px;
  align-self: end;
}

/* Accordion 2-Column Grid */
.specs-accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  border-top: 1px solid var(--border);
  align-items: start;
}

@media (max-width: 992px) {
  .specs-accordion {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.spec-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background var(--transition-fast);
  padding: 0 12px;
}

.spec-item.open {
  background: var(--light-gray);
  border-radius: 4px;
  border-bottom-color: transparent;
  margin: 6px 0;
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.spec-header:hover .spec-title {
  color: var(--red);
}

.spec-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  width: 32px;
  letter-spacing: 1px;
}

.spec-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 1;
  transition: color var(--transition-fast);
}

.spec-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}

.spec-toggle::before,
.spec-toggle::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: all var(--transition);
}

.spec-toggle::before {
  width: 12px;
  height: 1px;
}

.spec-toggle::after {
  width: 1px;
  height: 12px;
}

.spec-item.open .spec-toggle {
  background: var(--red);
  border-color: var(--red);
}

.spec-item.open .spec-toggle::before,
.spec-item.open .spec-toggle::after {
  background: var(--white);
}

.spec-item.open .spec-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.spec-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spec-item.open .spec-body {
  max-height: 600px;
}

.spec-body-inner {
  padding: 0 0 28px 52px;
}

.spec-detail {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.9;
  padding: 4px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.spec-detail::before {
  content: '—';
  color: var(--red);
  font-size: 10px;
  flex-shrink: 0;
}

.spec-detail:last-child {
  border-bottom: none;
}

/* ================================================================
   LOCATION SECTION
   ================================================================ */
#location {
  padding: var(--section-py) 0;
  background: var(--dark);
  overflow: hidden;
}

.location-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.location-header {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.location-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
}

.location-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.btn-maps {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-maps:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn-maps svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Location grid */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Location advantages */
.location-advantages {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
}

.location-category {
  margin-bottom: 28px;
}

.location-category-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.location-list {
  list-style: none;
}

.location-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 16px;
}

.location-list-item:last-child {
  border-bottom: none;
}

.location-place {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  flex: 1;
}

.location-distance {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Map area */
.location-map {
  position: relative;
  min-height: 420px;
  background: #1a1a1a;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) brightness(0.85);
  position: absolute;
  inset: 0;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
#contact {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-left {
  position: relative;
}

.contact-big-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.contact-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.contact-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail-text {
  font-size: 13px;
  color: var(--mid-gray);
}

.contact-detail-text strong {
  font-weight: 600;
  color: var(--black);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Contact form */
.contact-form-wrap {
  background: var(--light-gray);
  padding: 48px 40px;
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

.contact-form-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 24px;
}

.contact-form-wrap .f-input {
  background: var(--white);
}

.contact-form-wrap .btn-primary {
  width: 100%;
  padding: 16px;
  margin-top: 6px;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--black);
  padding: clamp(60px, 8vw, 100px) var(--px) 0;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-brand-tagline {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-brand-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand-ctas .btn-primary {
  font-size: 9px;
  padding: 10px 18px;
}

.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
  letter-spacing: 0.3px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item strong {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--red);
}

/* Disclaimer */
.footer-disclaimer {
  padding: 24px 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ================================================================
   MODAL / POPUP
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-top-bar {
  height: 3px;
  background: var(--red);
}

.modal-content {
  padding: 36px 36px 28px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  z-index: 2;
}

.modal-close:hover {
  background: var(--border);
}

.modal-close svg {
  width: 14px;
  height: 14px;
}

.modal-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 12px;
  color: var(--mid-gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-box .btn-primary {
  width: 100%;
  padding: 15px;
}

.modal-note {
  font-size: 10px;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* ================================================================
   THANK YOU PAGE
   ================================================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  text-align: center;
  padding: 40px 24px;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--red);
}

.thankyou-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.thankyou-heading {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  color: var(--black);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.thankyou-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 40px;
}

.thankyou-line {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 40px;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATIONS
   ================================================================ */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    gap: 32px;
  }

  .about-inner {
    gap: 60px;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-top .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  :root {
    --section-py: clamp(60px, 8vw, 100px);
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sticky-cta {
    display: none;
  }

  .mobile-sticky-bar {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  body {
    padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px));
  }

  .about-year-badge {
    left: 16px;
    top: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .about-year-num {
    font-size: 28px;
  }

  .about-vertical-label {
    display: none;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 350px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Mobile Form Section (Visible only on Mobile) ── */
.mobile-form-section {
  display: none;
  background: #0d0f14;
  padding: 40px var(--px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-form-container {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 28px 20px;
}

.mobile-form-container .f-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  border-radius: 4px;
}

.mobile-form-container .f-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* ── 768px (Mobile Portrait & Landscape) ── */
@media (max-width: 768px) {
  #header {
    padding: 16px var(--px);
  }

  #header.scrolled {
    padding: 12px var(--px);
  }

  /* Prevent font scaling auto-zoom on iOS inputs */
  .f-input {
    font-size: 16px;
    padding: 12px 14px;
  }

  .f-input::placeholder {
    font-size: 13px;
  }

  /* Mobile Hero Section — Complete Uncropped Banner View First */
  #hero {
    position: relative;
    width: 100%;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding-top: 75px;
    padding-bottom: 0;
    overflow: hidden;
    background: #0d0f14;
  }

  #hero .hero-video-wrapper {
    position: relative;
    width: 100%;
    height: auto !important;
    display: block;
  }

  #hero .hero-bg {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
  }

  #hero .hero-inner {
    display: none !important;
  }

  .hero-form-panel {
    display: none !important;
  }

  .mobile-form-section {
    display: block !important;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .hero-label {
    margin-bottom: 12px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .hero-label::before {
    width: 24px;
  }

  .hero-heading {
    font-size: clamp(32px, 8.5vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.5px;
  }

  .hero-subheading {
    font-size: clamp(10px, 3.2vw, 12px);
    margin-top: 14px;
    letter-spacing: 1px;
    line-height: 1.6;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-stat-val {
    font-size: clamp(24px, 6vw, 32px);
  }

  .hero-stat-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .hero-form-panel {
    padding: 28px 20px;
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  }

  .hero-form-title {
    font-size: 20px;
  }

  .hero-form-sub {
    font-size: 11px;
    margin-bottom: 16px;
  }

  /* About section mobile */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-left {
    height: auto;
  }

  .about-image-wrap {
    min-height: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 8px;
  }

  .about-image-wrap img {
    width: 100%;
    height: auto !important;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .about-right {
    padding-left: 0;
  }

  .about-headline {
    font-size: clamp(30px, 7vw, 42px);
    margin-bottom: 20px;
  }

  .about-desc {
    font-size: 13px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .about-image-accent {
    display: none;
  }

  /* Amenities section mobile */
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .amenities-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }

  .amenity-item {
    padding: 24px 20px;
  }

  .amenity-num {
    font-size: 32px;
    min-width: 40px;
  }

  /* Specifications mobile */
  .specs-header {
    margin-bottom: 36px;
  }

  .specs-title {
    font-size: clamp(30px, 7vw, 44px);
  }

  .spec-header {
    padding: 18px 0;
  }

  .spec-num {
    width: 24px;
    font-size: 11px;
  }

  .spec-title {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .spec-body-inner {
    padding: 0 0 20px 24px;
  }

  .spec-detail {
    font-size: 12px;
    line-height: 1.7;
  }

  /* Location mobile */
  .location-header {
    margin-bottom: 36px;
  }

  .location-title {
    font-size: clamp(30px, 7vw, 44px);
  }

  .location-advantages {
    padding: 24px 20px;
  }

  .location-map {
    min-height: 280px;
    height: 280px;
  }

  /* Contact mobile */
  .contact-headline {
    font-size: clamp(32px, 7.5vw, 48px);
    margin-bottom: 20px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Modal mobile */
  .modal-overlay {
    padding: 16px;
  }

  .modal-box {
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    border-radius: 4px;
  }

  .modal-content {
    padding: 28px 20px 20px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }
}

/* ── 480px (Small Mobile Devices) ── */
@media (max-width: 480px) {
  :root {
    --px: 18px;
  }

  .header-logo .logo-name {
    font-size: 18px;
  }

  .header-logo .logo-tagline {
    font-size: 7px;
    letter-spacing: 2px;
  }

  .btn-enquire-header {
    padding: 8px 14px;
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .hero-form-panel {
    padding: 24px 16px;
  }

  .trust-bar {
    padding: 12px 0;
  }

  .trust-item {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-stat {
    padding: 18px 14px;
  }

  .about-stat-num {
    font-size: 26px;
  }

  .about-stat-label {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .spec-body-inner {
    padding: 0 0 16px 16px;
  }

  .footer-brand-ctas {
    flex-direction: column;
  }

  .footer-brand-ctas .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .contact-inner {
    gap: 32px;
  }

  .contact-detail-icon {
    width: 36px;
    height: 36px;
  }
}

/* ── 360px (Extra Small Mobile Devices) ── */
@media (max-width: 360px) {
  :root {
    --px: 14px;
  }

  .btn-enquire-header {
    display: none;
    /* Hide header enquire button on narrow phones; sticky bottom bar handles CTAs */
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
  }

  .hero-stat-val {
    font-size: 22px;
  }
}

/* ================================================================
   NEW CONTENT SECTIONS STYLES
   ================================================================ */

/* Section Shared */
section {
  padding: 90px var(--px);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-intro .section-label {
  justify-content: center;
}

.section-intro .section-label::before {
  display: none;
}

.section-intro-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.section-intro-sub {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* Villa / Floor Plans Cards */
.villas-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.villas-tab {
  padding: 10px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--light-gray);
  border: 1px solid var(--border);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s;
}

.villas-tab.active,
.villas-tab:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.villas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.villa-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.villa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.villa-card-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.villa-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(178, 24, 22, 0.08);
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.villa-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);

  margin-bottom: 4px;
}

.villa-subtitle {
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.5px;
}

.villa-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.villa-features li {
  font-size: 13px;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.villa-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: bold;
}

/* Clubhouse Section */
.clubhouse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.clubhouse-item {
  background: var(--light-gray);
  padding: 28px 24px;
  border-left: 3px solid var(--red);
  transition: background 0.2s, transform 0.2s;
}

.clubhouse-item:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.clubhouse-item-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}

.clubhouse-item-desc {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Site Updates Section */
.site-updates-box {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   1. HERO VIDEO & CINEMATIC SCROLL STYLES
   ========================================================================== */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-video-wrapper.video-failed .hero-fallback-img {
  opacity: 1;
}

.hero-content-overlay {
  position: absolute;
  top: 32%;
  left: 5%;
  right: 5%;
  text-align: center;
  z-index: 3;
  color: var(--white);
  pointer-events: none;
}

.hero-badge-pill {
  display: inline-block;
  background: rgba(178, 24, 22, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-main-title {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-main-title strong {
  font-weight: 600;
  color: #fff;
}

.hero-main-sub {
  font-size: clamp(14px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  font-weight: 300;
}

.hero-stats-snap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 16px;
  background: rgba(15, 20, 30, 0.75);
  backdrop-filter: blur(16px);
  padding: 16px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  max-width: 90%;
  overflow-x: auto;
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.hero-stat-card:last-child {
  border-right: none;
}

.hero-stat-card .stat-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}

.hero-stat-card .stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2px;
}

/* ==========================================================================
   2. DYNAMIC INTERACTIVE BLUEPRINT VIEWER STYLES
   ========================================================================== */
.blueprint-controls {
  max-width: 1320px;
  margin: 0 auto 40px;
  padding: 0 var(--px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  background: var(--light-gray);
  padding: 20px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.bp-control-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.bp-btn-group {
  display: flex;
  gap: 6px;
  background: var(--white);
  padding: 4px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.bp-btn {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.bp-btn:hover {
  background: var(--light-gray);
}

.bp-btn.active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(178, 24, 22, 0.3);
}

.blueprint-workspace {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.blueprint-canvas-box {
  background: #0f141f;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  min-height: 520px;
}

.bp-canvas-badge {
  position: absolute;
  top: 20px;
  left: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bp-compass {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.blueprint-svg {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.wall-outer {
  stroke: #e2e8f0;
}

.room-hotzone {
  cursor: pointer;
}

.room-hotzone rect {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(178, 24, 22, 0.4);
  stroke-width: 2;
  transition: all 0.3s ease;
}

.room-hotzone:hover rect,
.room-hotzone.active rect {
  fill: rgba(178, 24, 22, 0.25);
  stroke: var(--red);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(178, 24, 22, 0.6));
}

.room-label {
  fill: #f8fafc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  pointer-events: none;
}

.room-dim {
  fill: #94a3b8;
  font-size: 10px;
  font-weight: 500;
  pointer-events: none;
}

.bp-hint {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 12px;
}

/* Hover-to-Render Panel */
.blueprint-render-panel {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
}

.render-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
}

.render-room-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  margin: 4px 0;
}

.render-room-dim {
  font-size: 12px;
  color: var(--mid-gray);
  margin-bottom: 16px;
}

.render-visual-box {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #1e293b;
  position: relative;
  margin-bottom: 16px;
}

.room-render-scene {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.scene-wall.back-wall {
  position: absolute;
  inset: 20px;
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.scene-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(90deg, #475569, #334155, #475569);
  transform: skewY(-2deg);
}

.scene-sofa {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 35px;
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.scene-light {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
}

.render-room-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.render-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.render-spec-pill {
  font-size: 10px;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 20px;
}

/* ==========================================================================
   3. EXPERIENTIAL 3D NAVIGATION STYLES
   ========================================================================== */
.viewer-3d-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.viewer-3d-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a;
  padding: 14px 24px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.viewer-3d-tabs {
  display: flex;
  gap: 10px;
}

.v3d-tab {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.v3d-tab.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(178, 24, 22, 0.4);
}

.v3d-instruction {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.viewer-3d-canvas-container {
  width: 100%;
  height: 520px;
  background: radial-gradient(circle at center, #1e293b 0%, #090d16 100%);
  position: relative;
  cursor: grab;
  overflow: hidden;
}

.viewer-3d-canvas-container:active {
  cursor: grabbing;
}

.v3d-loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #090d16;
  color: #fff;
  gap: 16px;
  font-size: 13px;
  z-index: 10;
  transition: opacity 0.5s ease;
}

.v3d-loading-overlay.loaded {
  opacity: 0;
  pointer-events: none;
}

.v3d-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(178, 24, 22, 0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.viewer-3d-footer {
  background: #0f172a;
  padding: 20px 32px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.v3d-stat {
  display: flex;
  flex-direction: column;
}

.v3d-stat-val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.v3d-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   4. AMENITIES ICON BOXES STYLES
   ========================================================================== */
#amenities {
  padding: var(--section-py) 0;
  background: var(--white);
}

.amenities-grid-iconboxes {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  max-width: 1380px;
  margin: 40px auto 0;
}

.amenity-icon-box {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 130px;
}

.amenity-icon-box:hover {
  background: var(--white);
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(178, 24, 22, 0.12);
}

.amenity-icon {
  font-size: 28px;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast);
}

.amenity-icon-box:hover .amenity-icon {
  transform: scale(1.1);
  background: rgba(178, 24, 22, 0.08);
}

.amenity-box-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .amenities-grid-iconboxes {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .amenities-grid-iconboxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ==========================================================================
   5. ANIMATED CONNECTIVITY MAP STYLES
   ========================================================================== */
.location-dark-section {
  background: #090d16 !important;
  color: #fff;
  padding: 100px 0;
}

.location-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.btn-maps:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn-maps svg {
  width: 16px;
  height: 16px;
}

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.landmark-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-fast);
}

.landmark-card:hover {
  background: rgba(178, 24, 22, 0.12);
  border-color: rgba(178, 24, 22, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.landmark-icon {
  font-size: 26px;
  line-height: 1;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.landmark-card:hover .landmark-icon {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

.landmark-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.landmark-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
}

.animated-map-workspace {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  margin-top: 50px;
  align-items: center;
}

.google-map-embed-box {
  background: #0f1422;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  min-height: 480px;
  height: 100%;
}

.map-embed-header {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: auto;
}

.map-hub-pill {
  background: rgba(178, 24, 22, 0.9);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.map-status-pill {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #94a3b8;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 10px;
}

.map-svg {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.radius-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

.ring-label {
  fill: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.map-vector-path {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.8s ease-out;
  filter: drop-shadow(0 0 6px rgba(178, 24, 22, 0.8));
}

.map-vector-path.drawn {
  stroke-dashoffset: 0;
}

.node-pulse {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  opacity: 0.6;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.node-dot {
  fill: #fff;
  transition: transform 0.3s ease;
}

.node-dot.highlight {
  fill: var(--red);
}

.map-node:hover .node-dot {
  transform: scale(1.5);
  fill: var(--red);
}

.node-text {
  fill: #e2e8f0;
  font-size: 11px;
  font-weight: 600;
  pointer-events: none;
}

.node-text.glow {
  fill: #fff;
  font-weight: 700;
}

.map-footer-hint {
  text-align: center;
  font-size: 11px;
  color: #64748b;
  margin-top: 8px;
}

.destination-cards-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dest-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dest-card:hover,
.dest-card.active {
  background: rgba(178, 24, 22, 0.15);
  border-color: var(--red);
  transform: translateX(6px);
}

.dest-time {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}

.dest-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.dest-sub {
  font-size: 11px;
  color: #94a3b8;
}

@media (max-width: 992px) {
  .blueprint-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .blueprint-workspace,
  .sticky-amenities-container,
  .animated-map-workspace {
    grid-template-columns: 1fr;
  }

  .sticky-amenities-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    justify-content: center;
    padding-top: 100px;
  }

  .hero-form-panel {
    max-width: 100%;
  }
}