/* =============================================
   TRELA NATURAL CHAPALA — MAIN STYLESHEET
   Warm palette: sand, terracotta, cream, gold
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --cream:       #F7F2EC;
  --sand:        #E8D9C0;
  --sand-dark:   #C9B99A;
  --warm-white:  #FAF8F4;
  --terracotta:  #C4735A;
  --terracotta-dark: #A35843;
  --gold:        #B8945F;
  --gold-light:  #D4AC76;
  --brown:       #6B4C35;
  --dark:        #2C1F14;
  --text:        #3D2B1A;
  --text-light:  #7A6352;
  --text-muted:  #A09080;
  --white:       #FFFFFF;
  --overlay:     rgba(44, 31, 20, 0.5);

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(44,31,20,0.08);
  --shadow-md:   0 8px 32px rgba(44,31,20,0.12);
  --shadow-lg:   0 16px 48px rgba(44,31,20,0.18);

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

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

/* ---- Typography ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.section-tag.light { color: var(--sand); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title em { font-style: normal; font-weight: 700; color: var(--terracotta); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }

.section-body {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,115,90,0.35);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 6px 28px rgba(196,115,90,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 48px; font-size: 1rem; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0 40px; /* extended padding-bottom to allow a smoother transition on the gradient */
  transition: var(--transition);
  background: linear-gradient(
    to bottom,
    rgba(44, 31, 20, 0.8) 0%,
    rgba(44, 31, 20, 0.35) 50%,
    rgba(44, 31, 20, 0.1) 75%,
    transparent 100%
  );
}
#navbar.scrolled {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--terracotta); }
#navbar.scrolled .nav-cta { background: var(--terracotta) !important; color: var(--white) !important; }
#navbar.scrolled .hamburger span { background: var(--dark); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 50px;
}
.logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.nav-logo .logo-dark {
  display: none;
}
.nav-logo .logo-light {
  display: block;
}
#navbar.scrolled .nav-logo .logo-light {
  display: none;
}
#navbar.scrolled .nav-logo .logo-dark {
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.nav-cta:hover { background: rgba(255,255,255,0.28) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--warm-white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text) !important; font-size: 1.1rem; }
  .nav-cta { border-color: var(--terracotta) !important; color: var(--terracotta) !important; background: transparent !important; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(44,31,20,0.85) 0%,
    rgba(44,31,20,0.60) 38%,
    rgba(44,31,20,0.10) 70%,
    transparent 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  display: flex;
  justify-content: flex-start;
}
.hero-text-box {
  max-width: 500px;
  text-align: left;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--sand);
  display: block;
}
.hero-subtitle {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: 28px;
  margin-left: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,148,95,0.25);
  border: 1.5px solid var(--gold-light);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.hero-badge i { font-size: 0.6rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* =============================================
   HIGHLIGHTS BAR
   ============================================= */
.highlights {
  background: var(--cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--sand);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.highlight-item {
  padding: 20px 32px;
  border-right: 1px solid var(--sand-dark);
  text-align: center;
}
.highlight-item:last-child { border-right: none; }
.highlight-item i {
  font-size: 1.6rem;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.highlight-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.highlight-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item { border-bottom: 1px solid var(--sand-dark); }
  .highlight-item:nth-child(2), .highlight-item:nth-child(4) { border-right: none; }
  .highlight-item:nth-child(3), .highlight-item:nth-child(4) { border-bottom: none; }
}

/* =============================================
   PROJECT SECTION
   ============================================= */
.project-section {
  padding: 100px 0;
  background: var(--warm-white);
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.project-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.project-features i { color: var(--terracotta); font-size: 0.85rem; flex-shrink: 0; }

.img-stack { position: relative; }
.img-main {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.img-secondary {
  position: absolute;
  bottom: -36px;
  left: -36px;
  width: 55%;
  height: 200px;
  border-radius: var(--radius-md);
  border: 5px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .project-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-secondary { left: auto; right: -20px; }
}

/* =============================================
   LOCATION SECTION
   ============================================= */
.location-section { padding: 0; }
.location-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0;
}
.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,31,20,0.78), rgba(44,31,20,0.45));
}
.location-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.location-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  backdrop-filter: blur(4px);
}
.location-item i {
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.location-item div { display: flex; flex-direction: column; }
.location-item strong {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}
.location-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities-section {
  padding: 100px 0;
  background: var(--cream);
}
.amenities-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  border: 1.5px solid var(--sand-dark);
  background: transparent;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(196,115,90,0.3);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.amenity-showcase {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.amenity-img { height: 420px; overflow: hidden; }
.amenity-img img { width: 100%; height: 100%; object-fit: cover; }
.amenity-info { padding: 40px 40px 40px 0; }
.amenity-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.amenity-info p { font-size: 0.93rem; color: var(--text-light); margin-bottom: 24px; }
.amenity-info ul { display: flex; flex-direction: column; gap: 10px; }
.amenity-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
}
.amenity-info li i { color: var(--terracotta); font-size: 0.8rem; }

.extra-amenities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.extra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  transition: var(--transition);
}
.extra-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}
.extra-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1.2rem;
}
.extra-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .amenity-showcase { grid-template-columns: 1fr; }
  .amenity-img { height: 260px; }
  .amenity-info { padding: 28px; }
  .extra-amenities { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .extra-amenities { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   UNITS SECTION
   ============================================= */
.units-section {
  padding: 100px 0;
  background: var(--warm-white);
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.unit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--sand);
  position: relative;
  transition: var(--transition);
}
.unit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.unit-card.featured {
  border-color: var(--terracotta);
  box-shadow: 0 8px 48px rgba(196,115,90,0.2);
}
.unit-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.featured-badge { background: var(--terracotta); }

/* Unit Gallery / Slider */
.unit-gallery { position: relative; height: 300px; overflow: hidden; }
.unit-slider { display: flex; height: 100%; transition: none; }
.unit-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.5s ease;
}
.unit-slide.active { opacity: 1; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.slider-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--white); width: 18px; border-radius: 3px; }

.unit-info { padding: 28px 32px 32px; }
.unit-type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.unit-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 600;
}
.unit-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.spec-item i { color: var(--terracotta); font-size: 1rem; }
.spec-item span { font-size: 0.75rem; color: var(--text); font-weight: 500; }

.unit-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.unit-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.unit-features i { color: var(--terracotta); font-size: 0.8rem; flex-shrink: 0; }

.unit-floorplan { margin-bottom: 20px; }
.btn-floorplan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}
.btn-floorplan:hover { color: var(--terracotta); border-color: var(--terracotta); }

@media (max-width: 900px) {
  .units-grid { grid-template-columns: 1fr; }
  .unit-specs { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  padding: 100px 0;
  background: var(--dark);
}
.gallery-section .section-tag { color: var(--gold-light); }
.gallery-section .section-title { color: var(--cream); }
.gallery-section .section-title em { color: var(--gold-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,31,20,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
}

/* =============================================
   URGENCY SECTION
   ============================================= */
.urgency-section { }
.urgency-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
  text-align: center;
}
.urgency-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,31,20,0.8);
}
.urgency-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.urgency-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
.urgency-number {
  font-size: 1.3em;
  color: var(--gold-light);
  font-weight: 600;
  font-style: italic;
}
.urgency-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { font-size: 0.93rem; color: var(--text-light); margin-bottom: 36px; max-width: 400px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 0.93rem; color: var(--text); }
.contact-item a:hover { color: var(--terracotta); }

.contact-social { display: flex; gap: 12px; }
.social-btn {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.social-btn:hover { background: var(--terracotta); color: var(--white); transform: translateY(-3px); }

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--warm-white);
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,115,90,0.12);
}
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}
.form-success {
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  font-size: 3rem;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-light); font-size: 0.93rem; }
.hidden { display: none !important; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  height: 50px;
}
.footer-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
}
.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--sand); }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-contact i { color: var(--gold-light); width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   MODALS
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.active { opacity: 1; pointer-events: all; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44,31,20,0.7);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 700px;
  width: calc(100% - 40px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  color: var(--dark);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}
.modal-close:hover { background: var(--terracotta); color: var(--white); }

.floorplan-tabs { display: flex; gap: 8px; }
.fp-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  border: 1.5px solid var(--sand-dark);
  transition: var(--transition);
}
.fp-tab.active, .fp-tab:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.floorplan-img img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
#lightbox-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--terracotta); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--terracotta); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].visible { opacity: 1; transform: translate(0); }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); }

/* =============================================
   RESPONSIVE GLOBAL
   ============================================= */
@media (max-width: 600px) {
  .hero-content { justify-content: flex-start; }
  .hero-text-box { text-align: left; max-width: 100%; }
  .hero-subtitle { margin-left: 0; }
  .hero-actions { justify-content: flex-start; flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .highlight-item { padding: 16px; }
  .contact-form-wrapper { padding: 24px; }
  .modal-box { padding: 24px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .location-bg { background-attachment: scroll; }
}
