/* ================================================================
   PARKSIDE RESIDENCES — Main Stylesheet
   Design direction: premium resort-style luxury property landing
   ================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  --green:        #30251F;
  --green-dark:   #1E1814;
  --green-mid:    #5A3522;
  --gold:         #BD773A;
  --gold-light:   #E2A562;
  --gold-dark:    #9A6030;
  --offwhite:     #F1EFEC;
  --offwhite-2:   #EBE7E0;
  --charcoal:     #171717;
  --charcoal-mid: #333333;
  --charcoal-lt:  #555555;
  --white:        #ffffff;
  --border:       rgba(189,119,58,0.2);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 60px rgba(0,0,0,0.18);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:        80px;
  --container:    1200px;
  --section-py:   5rem;

  --transition:       0.3s ease;
  --transition-slow:  0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

p {
  color: var(--charcoal-mid);
  line-height: 1.75;
}

/* ================================================================
   4. LAYOUT UTILITIES
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--section-py);
}

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

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

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 0.4rem;
}

.section-heading .gold {
  color: var(--gold);
}

.section-heading.light {
  color: var(--white);
}

.gold {
  color: var(--gold);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.eyebrow-light {
  color: rgba(184,151,90,0.85);
}

.eyebrow-hero {
  color: rgba(255,255,255,0.8);
}

.section-intro {
  max-width: 640px;
  margin-inline: auto;
  margin-top: 1rem;
  color: var(--charcoal-lt);
  font-size: 1.05rem;
}

/* ================================================================
   5. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 1rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(90deg, #F6DE99 0%, #C6884A 100%);
  color: var(--white);
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #C6884A 0%, #F6DE99 100%);
  box-shadow: 0 6px 20px rgba(198,136,74,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-dark:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
}
.btn-whatsapp:hover {
  background: #1da855;
  border-color: #1da855;
}

.btn-sm  { padding: 0.55rem 1.25rem; font-size: 0.8rem; }
.btn-lg  { padding: 1rem 2.4rem; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================================
   6. HEADER / NAVIGATION
   ================================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

#site-header.scrolled .nav-links a,
#site-header.scrolled .nav-logo span {
  color: var(--charcoal);
}

#site-header.scrolled .nav-links a:hover {
  color: var(--gold);
}

#site-header.scrolled .hamburger span {
  background: var(--charcoal);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.3;
}

.nav-logo-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.nav-logo-title {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9);
  border-radius: 0.5rem;
  transition: color var(--transition);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 99px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open { visibility: hidden; pointer-events: none; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-cta { margin-top: 1.5rem; }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* ================================================================
   7. HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 28, 22, 0.82) 0%,
    rgba(20, 36, 28, 0.65) 50%,
    rgba(10, 20, 15, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 8rem;
  max-width: 780px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.hero-sub strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.hero-chips li {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(184,151,90,0.5);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 1rem;
  background: rgba(184,151,90,0.1);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.scroll-arrow-wrap {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-arrow {
  position: absolute;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%   { top: -40%; }
  100% { top: 140%; }
}

/* ================================================================
   8. STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--green);
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ================================================================
   9. OVERVIEW SECTION
   ================================================================ */
.overview-section {
  background: var(--offwhite);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.overview-img-stack {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.overview-img-main {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.overview-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 50%;
  border: 5px solid var(--offwhite);
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.overview-text .section-heading {
  margin-bottom: 1.25rem;
}

.overview-body {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--gold);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
}

.feature-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ================================================================
   10. HIGHLIGHTS SECTION
   ================================================================ */
.highlights-section {
  background: var(--green);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.highlight-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(184,151,90,0.15);
  border-radius: 1rem;
  transition: border-color var(--transition), background var(--transition);
}

.highlight-card:hover {
  border-color: rgba(184,151,90,0.4);
  background: rgba(255,255,255,0.04);
}

.highlight-icon {
  width: 72px;
  height: 72px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(184,151,90,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(1) hue-rotate(0deg) saturate(2);
}

.highlight-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ================================================================
   11. FLOOR PLANS SECTION
   ================================================================ */
.floor-plans-section {
  background: var(--white);
}

/* Tabs */
.fp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.fp-tabs::-webkit-scrollbar { display: none; }

.fp-tab {
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.fp-tab:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.fp-tab.active {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

/* Panels */
.fp-panel {
  display: none;
}

.fp-panel.active {
  display: block;
}

.fp-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.fp-image-wrap {
  position: relative;
}

.fp-image-wrap a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.fp-image-wrap img {
  width: 100%;
  object-fit: contain;
  background: var(--offwhite);
  transition: transform 0.5s ease;
}

.fp-image-wrap a:hover img {
  transform: scale(1.04);
}

.zoom-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  background: rgba(48,37,31,0.85);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition);
}


.fp-image-wrap a:hover .zoom-hint,
.map-link:hover .zoom-hint {
  opacity: 1;
}

.fp-type-name {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.spec-table th,
.spec-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.spec-table th {
  width: 45%;
  color: var(--charcoal-lt);
  font-weight: 500;
  font-family: var(--font-sans);
}

.spec-table td {
  color: var(--charcoal);
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.spec-table tr:first-child th,
.spec-table tr:first-child td {
  border-top: 1px solid var(--border);
}

/* ================================================================
   12. FACILITIES SECTION
   ================================================================ */
.facilities-section {
  background: var(--offwhite);
}

.facilities-slider-wrap {
  position: relative;
}

.facilities-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.facilities-grid::-webkit-scrollbar {
  display: none;
}

.facility-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  display: block;
  flex: 0 0 280px; /* overridden by JS on load */
}

.facilities-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(255,255,255,0.9);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 2;
}

.facilities-arrow-left { left: 0.75rem; }
.facilities-arrow-right { right: 0.75rem; }

.facilities-arrow:hover {
  background: var(--gold);
  color: var(--white);
}

.facility-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-item:hover img {
  transform: scale(1.06);
}

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(48,37,31,0.5) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.facility-item:hover .facility-overlay {
  opacity: 1;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,23,23,0.7);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================================
   13. LOCATION SECTION
   ================================================================ */
.location-section {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.location-map {
  position: relative;
}

.map-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.map-link img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.map-link:hover img {
  transform: scale(1.03);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.connectivity-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.connectivity-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  padding: 0.6rem;
  background: var(--offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connectivity-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.connectivity-item h4 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.connectivity-item p {
  font-size: 0.9rem;
  color: var(--charcoal-lt);
}

/* ================================================================
   14. SHOWROOM SECTION
   ================================================================ */
.showroom-section {
  background: var(--offwhite);
  overflow: hidden;
}

.showroom-fullwidth {
  padding-inline: 1rem;
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.showroom-item {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  position: relative;
}

.showroom-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showroom-item:hover img {
  transform: scale(1.06);
}

.showroom-hidden {
  display: none;
}

.showroom-footer {
  text-align: center;
}

/* ================================================================
   15. VIDEO SECTION
   ================================================================ */
.video-section {
  background: var(--white);
  padding-bottom: 0;
}

.video-wrapper {
  max-width: 100%;
  margin-inline: auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-fullwidth {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
  box-shadow: none;
}

.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: var(--charcoal);
}

/* ================================================================
   16. CONTACT / ENQUIRY SECTION
   ================================================================ */
.contact-section {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,151,90,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Consultant card */
.consultant-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,151,90,0.2);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}

.consultant-intro {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.consultant-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  margin-inline: auto;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultant-avatar-initials {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.consultant-name {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.consultant-role {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.consultant-ren {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.consultant-company {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

.consultant-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.consultant-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.consultant-contact-link:hover {
  color: var(--gold);
}

.consultant-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Form */
.enquiry-form-wrap {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row { display: flex; flex-direction: column; gap: 0; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}

.form-optional {
  font-weight: 400;
  color: var(--charcoal-lt);
  text-transform: none;
  letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.1em;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
  padding: 0;
  border: 1.5px solid #ddd;
}

.form-check label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal-mid);
  cursor: pointer;
  line-height: 1.5;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #e53e3e;
  min-height: 1rem;
}

.form-success {
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #f0fff4;
  border: 1px solid #38a169;
  border-radius: 1rem;
  color: #276749;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-success[aria-live]:not([hidden]) {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  color: #38a169;
}

/* ================================================================
   17. DISCLAIMER BAR
   ================================================================ */
.disclaimer-bar {
  background: var(--offwhite-2);
  border-top: 1px solid var(--border);
  padding-block: 2rem;
}

.disclaimer-bar p {
  font-size: 0.8rem;
  color: var(--charcoal-lt);
  line-height: 1.6;
  max-width: 900px;
}

/* ================================================================
   18. FOOTER
   ================================================================ */
.site-footer {
  background: var(--green-dark);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-logo span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.footer-col p,
.footer-col address p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer-agent-name {
  font-family: var(--font-serif);
  font-size: 1.15rem !important;
  color: var(--white) !important;
  font-weight: 600;
  margin-bottom: 0.25rem !important;
}

.footer-license {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 0.75rem;
  line-height: 1.5 !important;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-col address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col address a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ================================================================
   19. FLOATING ELEMENTS
   ================================================================ */
.float-btn {
  position: fixed;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.float-whatsapp {
  bottom: 2rem;
  background: #25D366;
  color: var(--white);
  animation: pulse-green 2.5s infinite;
}

.float-call {
  bottom: 6rem;
  background: var(--gold);
  color: var(--white);
}

.back-to-top {
  bottom: 10rem;
  background: var(--green);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ================================================================
   20. MOBILE STICKY BAR
   ================================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 58px;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  height: 100%;
  transition: opacity var(--transition);
}

.mobile-sticky-btn:hover { opacity: 0.9; }

.mobile-sticky-whatsapp {
  background: #25D366;
  color: var(--white);
}

.mobile-sticky-cta {
  background: var(--gold);
  color: var(--white);
}

/* ================================================================
   21. SCROLL ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)), transform 0.65s ease calc(var(--delay, 0s));
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   22. RESPONSIVE — Tablet (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }

  .overview-grid      { gap: 3rem; }
  .overview-img-secondary { display: none; }

  .feature-cards      { gap: 1.25rem; }

  .fp-content         { gap: 2.5rem; }

  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ================================================================
   23. RESPONSIVE — Mobile (≤768px)
   ================================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
    --section-py: 3.5rem;
  }

  /* Nav */
  #site-header.scrolled .hamburger span { background: var(--charcoal); }
  .hamburger span { background: rgba(255,255,255,0.9); }

  /* Hero */
  .hero-content {
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 6rem;
  }

  .hero-chips { gap: 0.4rem; }
  .hero-chips li { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-top: none; }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(5) { grid-column: 1 / -1; border-right: none; }

  /* Overview */
  .overview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-cards { grid-template-columns: 1fr; }

  /* Highlights */
  .highlights-grid { grid-template-columns: 1fr; }

  /* Floor plans */
  .fp-tabs { gap: 0.25rem; }
  .fp-tab  { padding: 0.5rem 0.9rem; font-size: 0.75rem; }
  .fp-content { grid-template-columns: 1fr; gap: 2rem; }

  /* Facilities */
  .facility-item { flex: 0 0 45% !important; width: 45% !important; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Showroom */
  .showroom-grid { grid-template-columns: 1fr; gap: 0.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row-2col { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Floating */
  .float-btn { right: 1rem; }
  .float-whatsapp { bottom: 4.5rem; }
  .float-call     { bottom: 8rem; }
  .back-to-top    { bottom: 11.5rem; }

  /* Mobile sticky bar */
  .mobile-sticky-bar { display: flex; }

  /* Body padding for sticky bar */
  body { padding-bottom: 58px; }
}

/* ================================================================
   24. RESPONSIVE — Small Mobile (≤480px)
   ================================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .section-heading { font-size: 1.8rem; }
  .fp-tabs { flex-wrap: nowrap; }
  .fp-tab  { font-size: 0.72rem; padding: 0.45rem 0.8rem; }
  .showroom-grid { grid-template-columns: 1fr; gap: 0.35rem; }
  .facility-item { flex: 0 0 80% !important; width: 80% !important; }
  .facilities-arrow { width: 36px; height: 36px; }
  .enquiry-form-wrap { padding: 1.5rem; }
}

/* ================================================================
   25. ABOUT CONSULTANT SECTION
   ================================================================ */
.about-section {
  background: var(--offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Photo column */
.about-photo {
  position: relative;
}

.about-photo-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(48,37,31,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-photo-wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5/6;
  display: block;
  transition: transform 0.6s ease;
}

.about-photo-wrap:hover img {
  transform: scale(1.03);
}

.about-photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-badge-ren {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  width: fit-content;
}

.about-badge-company {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Content column */
.about-name {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green);
  margin-top: 0.35rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 1rem;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

/* Services list — full width below about-grid */
.about-services {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 1rem 1rem 0;
  box-shadow: var(--shadow-sm);
}

.about-services-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.about-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.about-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  line-height: 1.45;
}

.about-services-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* CTA buttons */
.about-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 340px 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap { max-width: 360px; margin-inline: auto; }
  .about-photo-badge { left: 1rem; bottom: 1rem; }
  .about-services-list { grid-template-columns: 1fr; }
  .about-cta { flex-direction: column; }
  .about-cta .btn { justify-content: center; }
}

/* ================================================================
   27. PRINT / REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
