/*
Theme Name: Bolton Place Homes
Theme URI: https://boltonplacehomes.com
Description: Pre-construction landing page for Bolton Place at Caledon Station by OPUS Homes
Author: Jatin Gill
Author URI: https://jatingill.com
Version: 1.0.0
Text Domain: bolton-place-homes
*/

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

:root {
  --primary: #7A2030;
  --primary-light: #9A3040;
  --primary-dark: #5A1020;
  --secondary: #B8860B;
  --secondary-light: #D4A030;
  --bg-cream: #FBF8F3;
  --bg-white: #FFFFFF;
  --dark: #2C1810;
  --dark-light: #3D2920;
  --accent: #D4A574;
  --accent-light: #E8C9A8;
  --text-dark: #2C1810;
  --text-medium: #5A4A40;
  --text-light: #8A7A70;
  --text-white: #FBF8F3;
  --border-light: rgba(122, 32, 48, 0.12);
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.1);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.14);
  --shadow-xl: 0 16px 60px rgba(44, 24, 16, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   INTRO SPLASH SCREEN
   ============================================ */
.intro-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  background: var(--dark);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-splash__dev-logo {
  width: 140px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  filter: brightness(0) invert(1);
}

.intro-splash__project-logo {
  width: 220px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.intro-splash__tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent-light);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
  letter-spacing: 1px;
}

.intro-splash.visible .intro-splash__dev-logo,
.intro-splash.visible .intro-splash__project-logo,
.intro-splash.visible .intro-splash__tagline {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition);
}

.site-header.scrolled .header-logo img {
  height: 42px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  transition: color var(--transition);
  position: relative;
}

.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.header-nav__link:hover::after {
  width: 100%;
}

.site-header.scrolled .header-nav__link {
  color: var(--text-dark);
}

.header-nav__link:hover {
  color: var(--secondary);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 2px solid var(--primary);
}

.header-cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.site-header.scrolled .header-cta {
  background: var(--primary);
  color: #fff;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
}

.site-header.scrolled .menu-toggle span {
  background: var(--text-dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.55) 0%,
    rgba(122, 32, 48, 0.4) 50%,
    rgba(44, 24, 16, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 100px;
  max-width: 900px;
}

.hero__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: var(--radius-xl);
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.hero__title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 32, 48, 0.35);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.btn--secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn--secondary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
  color: #fff;
}

.btn--dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--dark-light);
  border-color: var(--dark-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

/* Hero stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: rgba(44, 24, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.hero__stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.hero__stat {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(212, 165, 116, 0.3);
}

.hero__stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--bg-cream);
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(122, 32, 48, 0.08);
  border-radius: var(--radius-xl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  color: var(--text-dark);
}

.section-title span {
  color: var(--primary);
}

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

.about__text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__developer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.about__developer img {
  height: 50px;
  width: auto;
}

.about__developer-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about__developer-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(122, 32, 48, 0.1);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   WHAT'S COMING SECTION
   ============================================ */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0f0a 100%);
}

.features .section-label {
  color: var(--accent);
  background: rgba(212, 165, 116, 0.15);
}

.features .section-title {
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.features__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 165, 116, 0.3);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-md);
  font-size: 1.8rem;
}

.feature-card__title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ============================================
   HOME TYPES SECTION
   ============================================ */
.home-types {
  padding: 100px 0;
  background: var(--bg-white);
}

.home-types .section-label,
.home-types .section-title {
  text-align: center;
}

.home-types__subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home-type-card {
  position: relative;
  padding: 48px 40px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  overflow: hidden;
}

.home-type-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 4px 0 0 4px;
}

.home-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122, 32, 48, 0.2);
}

.home-type-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.home-type-card__title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.home-type-card__desc {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.home-type-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-type-card__spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-medium);
}

.home-type-card__spec-icon {
  font-size: 1.1rem;
}

.home-type-card__cta {
  margin-top: 28px;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community {
  padding: 100px 0;
  background: var(--bg-cream);
}

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

.community__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

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

.community__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.community__img:hover img {
  transform: scale(1.05);
}

.community__img:first-child {
  grid-column: 1 / -1;
}

.community__img:first-child img {
  height: 260px;
}

.community__text h2 {
  margin-bottom: 20px;
}

.community__text p {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.community__highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.community__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.community__highlight-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 32, 48, 0.08);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
  padding: 100px 0;
  background: var(--bg-white);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.location__site-map {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.location__google-map {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: var(--radius-md);
}

.location__info h2 {
  margin-bottom: 20px;
}

.location__info > p {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.location__transit {
  margin-bottom: 32px;
}

.location__transit h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.transit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--border-light);
}

.transit-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.transit-item__text {
  font-size: 0.95rem;
  font-weight: 500;
}

.transit-item__text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

.location__amenities h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-medium);
  padding: 6px 0;
}

.amenities-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   NEIGHBOURHOOD SECTION
   ============================================ */
.neighbourhood {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, #F5EFE6 100%);
}

.neighbourhood .section-title {
  text-align: center;
  margin-bottom: 12px;
}

.neighbourhood__subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.neighbourhood__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.neighbourhood-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-align: center;
}

.neighbourhood-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122, 32, 48, 0.2);
}

.neighbourhood-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 32, 48, 0.08);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.neighbourhood-card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.neighbourhood-card__list {
  text-align: left;
}

.neighbourhood-card__list li {
  font-size: 0.85rem;
  color: var(--text-medium);
  padding: 6px 0;
  border-bottom: 1px solid rgba(122, 32, 48, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.neighbourhood-card__list li:last-child {
  border-bottom: none;
}

.neighbourhood-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   FLOOR PLANS & PRICE LIST SECTION
   ============================================ */
.floorplans {
  padding: 100px 0;
  background: var(--bg-cream);
}

.floorplans__subtitle {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
}

.floorplans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.floorplans__card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.floorplans__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.floorplans__card--pricelist {
  background: var(--dark);
  border-color: var(--dark);
}

.floorplans__card--pricelist h3,
.floorplans__card--pricelist p {
  color: var(--text-white);
}

.floorplans__card--pricelist .floorplans__features li {
  color: var(--accent-light);
}

.floorplans__card--pricelist .floorplans__features li::before {
  color: var(--accent);
}

.floorplans__card--pricelist:hover {
  border-color: var(--accent);
}

.floorplans__card-icon {
  margin-bottom: 20px;
}

.floorplans__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.floorplans__card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.floorplans__features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.floorplans__features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-medium);
  position: relative;
  padding-left: 20px;
}

.floorplans__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.floorplans__card .btn {
  margin-top: auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .floorplans__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 100px 0;
  background: var(--bg-white);
}

.faq .section-label,
.faq .section-title {
  text-align: center;
}

.faq__subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item:hover {
  border-color: rgba(122, 32, 48, 0.2);
}

.faq__item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--bg-cream);
  transition: background var(--transition);
  gap: 16px;
}

.faq__item.active .faq__question {
  background: rgba(122, 32, 48, 0.04);
}

.faq__question h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  flex: 1;
}

.faq__toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 32, 48, 0.08);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--primary);
  transition: all var(--transition);
  flex-shrink: 0;
}

.faq__item.active .faq__toggle {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0f0a 100%);
}

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

.booking__text {
  color: #fff;
}

.booking .section-label {
  color: var(--accent);
  background: rgba(212, 165, 116, 0.15);
}

.booking__text h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.booking__text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.booking__benefits {
  margin-bottom: 0;
}

.booking__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.booking__benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 116, 0.15);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.booking__benefit-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.booking__calendly {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 630px;
  box-shadow: var(--shadow-xl);
}

.booking__calendly .calendly-inline-widget {
  min-width: 100%;
  min-height: 630px;
}

/* ============================================
   REGISTER / CONTACT SECTION
   ============================================ */
.register {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.register::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.register__text {
  color: #fff;
}

.register .section-label {
  color: var(--accent);
  background: rgba(212, 165, 116, 0.15);
}

.register__text h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.register__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.register__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.register__contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.register__contact-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.register__contact-text a {
  color: var(--accent-light);
  transition: color var(--transition);
}

.register__contact-text a:hover {
  color: var(--accent);
}

.register__form-wrapper {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.register__form-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}

.register__form-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

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

.phone-input-wrapper {
  display: flex;
  gap: 8px;
}

.phone-prefix {
  width: 70px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  text-align: center;
  flex-shrink: 0;
}

.phone-input-wrapper input {
  flex: 1;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success__title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.form-success__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  padding: 60px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__nav h4,
.footer__contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer__nav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: #fff;
}

.footer__contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer__contact a {
  color: var(--accent-light);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--accent);
}

.footer__developer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__developer img {
  height: 30px;
  opacity: 0.7;
}

.footer__developer span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__disclaimer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__disclaimer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
}

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

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.float-booking {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.4);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.float-booking:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(184, 134, 11, 0.5);
}

.float-booking svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ============================================
   LEAD POPUP
   ============================================ */
.lead-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lead-popup-overlay.visible {
  display: flex;
  opacity: 1;
}

.lead-popup {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(122, 32, 48, 0.1);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.lead-popup-overlay.visible .lead-popup {
  transform: translateY(0);
}

.lead-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 24, 16, 0.06);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-medium);
  transition: all var(--transition);
}

.lead-popup__close:hover {
  background: rgba(122, 32, 48, 0.1);
  color: var(--primary);
}

.lead-popup__title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.lead-popup__subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.lead-popup .form-group {
  margin-bottom: 14px;
}

.lead-popup .form-group label {
  color: var(--text-dark);
}

.lead-popup .form-group input {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.lead-popup .form-group input::placeholder {
  color: var(--text-light);
}

.lead-popup .form-group input:focus {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(122, 32, 48, 0.1);
}

.lead-popup .phone-prefix {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  color: var(--text-medium);
}

.lead-popup .form-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  margin-top: 4px;
}

.lead-popup .form-submit:hover {
  box-shadow: 0 8px 24px rgba(122, 32, 48, 0.35);
}

.lead-popup .form-success__title {
  color: var(--text-dark);
}

.lead-popup .form-success__text {
  color: var(--text-medium);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .neighbourhood__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .booking__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav__link {
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  .hero__content {
    padding: 100px 20px 80px;
  }

  .hero__stats-inner {
    flex-direction: column;
  }

  .hero__stat:not(:last-child)::after {
    width: 60px;
    height: 1px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
  }

  .hero__stat {
    padding: 16px;
  }

  .about__grid,
  .community__grid,
  .location__grid,
  .register__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-types__grid {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .neighbourhood__grid {
    grid-template-columns: 1fr;
  }

  .community__images {
    grid-template-columns: 1fr;
  }

  .community__img:first-child {
    grid-column: 1;
  }

  .community__highlights {
    grid-template-columns: 1fr;
  }

  .home-type-card__specs {
    grid-template-columns: 1fr;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .register__form-wrapper {
    padding: 32px 24px;
  }

  .lead-popup {
    padding: 36px 28px;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .float-whatsapp,
  .float-booking {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }

  .float-whatsapp {
    right: 20px;
  }

  .float-booking {
    left: 20px;
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .intro-splash__line--presents {
    font-size: 0.9rem;
    letter-spacing: 4px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
