/* ============================================================
   KOHINOOR DEVELOPERS — Shared Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --gold: #C9A252;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --dark: #1A1A1A;
  --dark-2: #2C2C2C;
  --gray: #6B6B6B;
  --light-gray: #B0B0B0;
  --bg: #FFFFFF;
  --bg-warm: #F8F6F2;
  --bg-dark: #111111;
  --white: #FFFFFF;
  --border: rgba(201,162,82,0.25);
  --shadow: 0 4px 30px rgba(0,0,0,0.10);
  --shadow-hover: 0 12px 50px rgba(0,0,0,0.18);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --nav-h: 80px;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--gray); font-size: 1rem; font-weight: 300; }

/* --- Section utility --- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title { color: var(--dark); margin-bottom: 18px; }
.section-title span { color: var(--gold); }
.section-desc { max-width: 580px; font-size: 1.05rem; line-height: 1.8; }
.center { text-align: center; }
.center .section-desc { margin: 0 auto; }
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 30px;
}
.center .divider { margin: 20px auto 30px; }
.bg-warm { background: var(--bg-warm); }
.bg-dark { background: var(--bg-dark); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: var(--light-gray); }
.bg-dark .section-label { color: var(--gold-light); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.09); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 58px; width: auto; display: block; }
.footer .nav-logo-img { height: 64px; filter: brightness(1.1); }

/* Links */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em; color: var(--dark); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--white) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); color: var(--white) !important; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(10px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1.4rem; font-family: var(--font-serif); color: var(--dark); }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-cta { font-size: 0.9rem !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,162,82,0.4); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 40%, #1A1A1A 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 820px; padding: 0 24px; }
.hero-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; display: block; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Project hero variants */
.hero-acacia .hero-bg { background: linear-gradient(135deg, #1a2e10 0%, #2d4a1a 40%, #1a2e10 100%); }
.hero-freedom .hero-bg { background: linear-gradient(135deg, #2e1e10 0%, #4a321a 40%, #2e1e10 100%); }
.hero-santorini .hero-bg { background: linear-gradient(135deg, #0d1b3a 0%, #1b3a6b 40%, #0d1b3a 100%); }
.hero-about .hero-bg { background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%); }
.hero-contact .hero-bg { background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%); }

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,162,82,0.15); border: 1px solid rgba(201,162,82,0.35);
  border-radius: 50px; padding: 8px 20px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  color: var(--gold-light); margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark);
  padding: 28px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.project-card {
  border-radius: 8px; overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.card-image {
  height: 260px; position: relative; overflow: hidden;
}
.card-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9); text-align: center; padding: 24px;
}
.card-image-placeholder .project-name { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; margin-bottom: 6px; }
.card-image-placeholder .project-sub { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.75; }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

/* Acacia gradient */
.bg-acacia { background: linear-gradient(135deg, #2d5a1b 0%, #4a7c2f 50%, #3d6b22 100%); }
/* Freedom gradient */
.bg-freedom { background: linear-gradient(135deg, #5c3d20 0%, #8b5e32 50%, #6b4828 100%); }
/* Santorini gradient */
.bg-santorini { background: linear-gradient(135deg, #1b3a7a 0%, #2952a3 50%, #1b3a7a 100%); }

.card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
}
.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-location { font-size: 0.78rem; color: var(--gold); font-weight: 500; letter-spacing: 0.1em; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.card-location svg { width: 13px; height: 13px; }
.card-title { font-family: var(--font-serif); font-size: 1.45rem; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.card-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.card-specs { display: flex; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.card-spec { font-size: 0.75rem; color: var(--gray); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.card-spec::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.card-footer { border-top: 1px solid rgba(0,0,0,0.07); padding-top: 18px; display: flex; align-items: center; justify-content: space-between; }
.card-bhk { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.card-link { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; display: flex; align-items: center; gap: 5px; transition: gap var(--transition); }
.card-link:hover { gap: 10px; }

/* ============================================================
   PILLARS / WHY CHOOSE US
   ============================================================ */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pillar-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,162,82,0.15); transform: translateY(-4px); }
.pillar-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,162,82,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem;
}
.pillar-card h4 { font-family: var(--font-serif); color: var(--dark); margin-bottom: 12px; font-size: 1.1rem; }
.pillar-card p { font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   ENQUIRE STRIP
   ============================================================ */
.enquire-strip {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 56px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.enquire-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.enquire-strip h2 { color: var(--white); position: relative; margin-bottom: 14px; }
.enquire-strip p { color: rgba(255,255,255,0.85); position: relative; margin-bottom: 32px; font-size: 1.05rem; }
.enquire-strip .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.enquire-phone {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--white);
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-bottom: 28px; position: relative;
}
.enquire-phone svg { opacity: 0.8; }

/* ============================================================
   AMENITIES GRID
   ============================================================ */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.amenity-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 6px;
  transition: border-color var(--transition), background var(--transition);
}
.amenity-item:hover { border-color: var(--gold); background: rgba(201,162,82,0.04); }
.amenity-icon { font-size: 1.3rem; flex-shrink: 0; }
.amenity-name { font-size: 0.85rem; font-weight: 500; color: var(--dark-2); }

/* ============================================================
   SPECIFICATIONS TABLE
   ============================================================ */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid rgba(0,0,0,0.07); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table th { width: 200px; padding: 18px 20px; text-align: left; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(201,162,82,0.05); }
.specs-table td { padding: 18px 20px; font-size: 0.92rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   LOCATION DISTANCES
   ============================================================ */
.distance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 560px; }
.distance-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: var(--white);
  border: 1px solid var(--border); border-radius: 6px;
}
.distance-name { font-size: 0.9rem; color: var(--gray); }
.distance-km { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); font-weight: 600; }

/* ============================================================
   FLOOR PLAN GALLERY
   ============================================================ */
.floor-plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.floor-plan-card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 32px;
  text-align: center;
}
.floor-plan-card h4 { font-family: var(--font-serif); color: var(--dark); margin-bottom: 6px; }
.floor-plan-card p { font-size: 0.84rem; }
.floor-plan-placeholder {
  width: 100%; height: 200px; background: var(--white);
  border: 1px dashed var(--border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin: 16px 0; font-size: 0.78rem; color: var(--light-gray); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================================
   HIGHLIGHTS GRID (Project Highlights)
   ============================================================ */
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.highlight-card {
  background: rgba(201,162,82,0.06);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 28px 24px;
  text-align: center;
}
.highlight-number { font-family: var(--font-serif); font-size: 2.4rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.highlight-label { font-size: 0.82rem; color: var(--gray); letter-spacing: 0.08em; line-height: 1.5; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-image {
  height: 520px; border-radius: 8px; overflow: hidden;
  position: relative;
}
.story-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
  display: flex; align-items: center; justify-content: center;
}
.story-image-placeholder .monogram {
  font-family: var(--font-serif);
  font-size: 5rem; font-weight: 700;
  color: var(--gold); opacity: 0.4;
}
.story-image-badge {
  position: absolute; bottom: 32px; left: 32px;
  background: var(--white); padding: 20px 28px;
  border-radius: 6px; box-shadow: var(--shadow);
}
.story-image-badge .number { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.story-image-badge .label { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.story-content { }
.story-content p { margin-bottom: 18px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 32px; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(201,162,82,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-info-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-value { font-size: 1rem; color: var(--dark); font-weight: 500; }
.contact-info-value a { color: var(--dark); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--gold); }

.contact-map-placeholder {
  width: 100%; height: 420px; background: var(--bg-warm);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: var(--light-gray); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.contact-map-placeholder svg { width: 48px; height: 48px; opacity: 0.3; }

.project-enquiry-cards { display: flex; flex-direction: column; gap: 16px; }
.project-enquiry-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.project-enquiry-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,162,82,0.15); }
.project-enquiry-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.project-enquiry-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--dark); flex: 1; }
.project-enquiry-type { font-size: 0.78rem; color: var(--gray); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo-text .name { color: var(--white); }
.footer-brand-desc { font-size: 0.88rem; margin-top: 16px; line-height: 1.75; max-width: 280px; }
.footer-heading { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.55); align-items: flex-start; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 12px; }
.footer-bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-rera { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: calc(var(--nav-h) + 20px) 0 20px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray); }
.breadcrumb-inner a { color: var(--gray); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--light-gray); }
.breadcrumb-current { color: var(--dark); font-weight: 500; }

/* ============================================================
   PAGE HERO (smaller, for inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero .hero-label { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; }

/* ============================================================
   PROJECTS OVERVIEW PAGE
   ============================================================ */
.projects-overview-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
.project-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.project-row.reverse { }
.project-row-image { height: 420px; border-radius: 8px; overflow: hidden; position: relative; }
.project-row-content { }
.project-row-content p { margin-bottom: 18px; }
.project-row-specs { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 28px; }
.project-row-spec {
  padding: 7px 16px;
  background: rgba(201,162,82,0.08); border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.78rem; font-weight: 500; color: var(--dark);
}

/* ============================================================
   RERA BADGE
   ============================================================ */
.rera-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px; padding: 8px 14px;
  font-size: 0.72rem; color: var(--gray); letter-spacing: 0.05em;
  margin-top: 16px;
}
.rera-badge strong { color: var(--dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-image { height: 360px; }
  .project-row { grid-template-columns: 1fr; gap: 32px; }
  .project-row-image { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .floor-plans-grid { grid-template-columns: 1fr; }
  .distance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
