/* ==========================================
   PROPERTY PANCHANG — Project Pages Shared CSS
   ========================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FED7AA;
  --charcoal: #1F2937;
  --charcoal-dark: #111827;
  --charcoal-mid: #374151;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --border: #E5E7EB;
  --bg-light: #F9FAFB;
  --bg-section: #F3F4F6;
  --white: #FFFFFF;
  --font: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ===================== REVEAL ANIMATIONS ===================== */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.92) translateY(20px); }
[data-reveal="fade"] { transform: none; }
[data-reveal].revealed { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.at-top { background: rgba(17,24,39,0.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.navbar.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-color: rgba(0,0,0,0.07); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 800; color: var(--white); flex-shrink: 0; transition: color 0.4s var(--ease); letter-spacing: -0.02em; }
.navbar.scrolled .nav-logo { color: var(--charcoal); }
.logo-icon { font-size: 1.4rem; line-height: 1; }
.logo-accent { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link { position: relative; padding: 8px 14px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); border-radius: 8px; transition: color 0.3s var(--ease), background 0.3s var(--ease); overflow: hidden; }
.navbar.scrolled .nav-link { color: var(--gray); }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--orange); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--orange) !important; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-nav-cta { display: inline-block; background: var(--charcoal); color: var(--white); padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.875rem; border: 1.5px solid var(--charcoal); transition: background 0.3s, transform 0.3s, box-shadow 0.3s; white-space: nowrap; }
.navbar.at-top .btn-nav-cta { border-color: rgba(255,255,255,0.6); background: transparent; color: var(--white); }
.btn-nav-cta:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.3); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s ease, background 0.4s; }
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { position: fixed; inset: 0; background: rgba(17,24,39,0.98); backdrop-filter: blur(24px); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; padding: 32px; }
.mobile-link { font-size: 1.75rem; font-weight: 700; color: rgba(255,255,255,0.7); padding: 12px 40px; border-radius: var(--radius); width: 100%; text-align: center; transition: color 0.25s, background 0.25s, transform 0.4s var(--ease), opacity 0.4s var(--ease); transform: translateY(20px); opacity: 0; }
.mobile-menu.open .mobile-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-link:hover { color: var(--orange); background: rgba(249,115,22,0.08); }
.btn-mobile-cta { display: block; background: var(--orange); color: var(--white); padding: 16px 40px; border-radius: var(--radius); font-weight: 700; font-size: 1.1rem; width: 100%; text-align: center; margin-top: 20px; opacity: 0; transform: translateY(20px); transition: background 0.3s, transform 0.3s, opacity 0.4s; }
.mobile-menu.open .btn-mobile-cta { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.btn-mobile-cta:hover { background: var(--orange-dark); }

/* ===================== PROGRESS BAR ===================== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===================== PROJECT HERO ===================== */
.project-hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.project-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.project-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 10s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,24,39,0.92) 0%,
    rgba(17,24,39,0.5) 45%,
    rgba(17,24,39,0.2) 100%
  );
}
.project-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.project-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 0;
  margin-bottom: 28px;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.3s, gap 0.3s;
  animation: fadeUpIn 0.8s 0.2s var(--ease) both;
}
.project-back-btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.project-back-btn:hover { color: var(--white); gap: 12px; }
.project-back-btn:hover svg { transform: translateX(-4px); }

.project-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeUpIn 0.8s 0.3s var(--ease) both;
}
.proj-badge {
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.proj-badge-type { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18); }
.proj-badge-cat { background: var(--orange); color: white; }
.proj-badge-status { background: rgba(34,197,94,0.2); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }

.project-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  animation: fadeUpIn 0.9s 0.4s var(--ease) both;
}
.project-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUpIn 0.9s 0.55s var(--ease) both;
}
.project-hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUpIn 0.9s 0.65s var(--ease) both;
}
.project-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.project-meta-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }
.project-hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeUpIn 0.9s 0.75s var(--ease) both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(249,115,22,0.38); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== QUICK STATS BAR ===================== */
.stats-bar {
  background: var(--charcoal-dark);
  padding: 28px 0;
}
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-bar-item {
  background: var(--charcoal-dark);
  padding: 20px 24px;
  text-align: center;
}
.stat-bar-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-bar-value span { color: var(--orange); }
.stat-bar-label { font-size: 0.78rem; color: var(--gray-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===================== SECTION TAGS / HEADINGS ===================== */
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--gray); max-width: 600px; line-height: 1.7; }
.section-desc.light { color: rgba(255,255,255,0.6); }

/* ===================== OVERVIEW SECTION ===================== */
.overview-section { padding: 100px 0; background: var(--white); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.overview-text p { font-size: 1rem; color: var(--gray); line-height: 1.85; margin-bottom: 20px; }
.overview-cta { margin-top: 36px; }

/* Feature tags */
.feature-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 32px 0; }
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-section);
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.feature-tag:hover { background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-2px); }
.feature-tag svg { width: 14px; height: 14px; }

/* Key info card */
.info-card {
  background: var(--charcoal-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
}
.info-card-header {
  padding: 24px 28px;
  background: rgba(249,115,22,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--white); }
.info-card-body { padding: 0; }
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.info-row:last-child { border-bottom: none; }
.info-row:hover { background: rgba(255,255,255,0.03); }
.info-label { font-size: 0.82rem; color: var(--gray-light); font-weight: 500; }
.info-value { font-size: 0.9rem; color: var(--white); font-weight: 600; text-align: right; }
.info-value.highlight { color: var(--orange); }

/* ===================== AMENITIES ===================== */
.amenities-section { padding: 100px 0; background: var(--bg-light); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 56px; }
.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  cursor: default;
}
.amenity-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(249,115,22,0.12); }
.amenity-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.04));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.35s, transform 0.35s;
}
.amenity-card:hover .amenity-icon { background: var(--orange); transform: scale(1.1) rotate(-5deg); }
.amenity-icon svg { width: 22px; height: 22px; color: var(--orange); transition: color 0.35s; }
.amenity-card:hover .amenity-icon svg { color: white; }
.amenity-name { font-size: 0.95rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.amenity-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

/* ===================== GALLERY ===================== */
.gallery-section { padding: 100px 0; background: var(--charcoal-dark); }
.gallery-section .section-tag { color: var(--orange); }
.gallery-section .section-title { color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 600; letter-spacing: 0.05em; }

.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }

/* ===================== HIGHLIGHTS / USP ===================== */
.highlights-section { padding: 100px 0; background: var(--white); }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.highlight-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.highlight-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-number { font-size: 4rem; font-weight: 900; color: rgba(249,115,22,0.08); letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; }
.highlight-icon { margin-bottom: 20px; }
.highlight-icon svg { width: 40px; height: 40px; color: var(--orange); }
.highlight-title { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.highlight-text { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ===================== LOCATION SECTION ===================== */
.location-section { padding: 100px 0; background: var(--bg-section); }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.location-map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-map iframe { width: 100%; height: 100%; border: none; }
.location-perks { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.location-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.location-perk:hover { border-color: var(--orange); transform: translateX(6px); }
.location-perk-icon { width: 40px; height: 40px; background: rgba(249,115,22,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.location-perk-icon svg { width: 18px; height: 18px; color: var(--orange); }
.location-perk-title { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.location-perk-desc { font-size: 0.82rem; color: var(--gray); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, #1a2332 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 480px; line-height: 1.7; }
.cta-banner-buttons { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; white-space: nowrap; }

/* ===================== RELATED PROJECTS ===================== */
.related-section { padding: 100px 0; background: var(--bg-light); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.related-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.4s, box-shadow 0.4s;
}
.related-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.related-card-img { height: 200px; overflow: hidden; position: relative; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-img-badge { position: absolute; top: 12px; left: 12px; }
.related-badge { background: var(--orange); color: white; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.08em; }
.related-card-body { padding: 24px; }
.related-card-title { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.related-card-loc { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gray); margin-bottom: 18px; }
.related-card-loc svg { width: 13px; height: 13px; flex-shrink: 0; }
.related-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--orange); transition: gap 0.3s; }
.related-card-link:hover { gap: 10px; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--charcoal-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; }
.logo-accent { color: var(--orange); }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: 32px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s, transform 0.3s; }
.social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.social-link:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.social-link:hover svg { color: white; }
.footer-links-col h4 { font-size: 0.875rem; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.3s, padding-left 0.3s; }
.footer-links-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; }
.footer-contact-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }
  .project-hero-content { padding: 0 24px 64px; }
  .stats-bar-inner { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-rows: 220px 220px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-banner-buttons { flex-direction: row; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .project-hero { height: 80vh; }
  .project-hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .project-hero-meta { gap: 16px; flex-direction: column; align-items: flex-start; }
  .amenities-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner-buttons { flex-direction: column; width: 100%; }
  .cta-banner-buttons .btn-primary,
  .cta-banner-buttons .btn-outline-white { text-align: center; justify-content: center; }
}
