/* ========================================
   MANA SKANDA — MAIN STYLESHEET
   style.css
======================================== */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.15);
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1E1E1E;
  --cream: #F5F0E8;
  --cream2: #EDE8DC;
  --white: #FFFFFF;
  /* --white: #888; */
  --border: rgba(201,168,76,0.25);
  --header-h: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
header.scrolled { background: rgba(13,13,13,0.98); }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--cream); font-weight: 300; }

/* ===== DESKTOP NAV ===== */
nav {
  display: flex;
  gap: 28px;
  align-items: center;
  position: relative;
}

nav > a {
  color: var(--cream2);
  text-decoration: none;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: color 0.3s;
  padding: 4px 0;
}
nav > a:hover { color: var(--gold); }

/* Projects Dropdown */
.nav-projects {
  position: relative;
}

/* Invisible bridge to prevent a mouse-gap between the trigger and dropdown */
.nav-projects::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  pointer-events: auto;
  /* keep it transparent and below the dropdown */
  background: transparent;
  z-index: 150;
}
.nav-projects > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none;
}
.nav-projects > a::after {
  content: '▾';
  font-size: 0.65rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.nav-projects:hover > a::after { transform: rotate(180deg); }

.projects-dropdown {
  position: absolute;
  /* keep dropdown close to the trigger to avoid a mouse-gap */
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark2);
  border: 1px solid var(--border);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}
.nav-projects:hover .projects-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.projects-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--cream2);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  border-left: 2px solid transparent;
}
.projects-dropdown a:hover {
  background: var(--gold-dim);
  color: var(--gold);
  border-left-color: var(--gold);
}
.projects-dropdown a .pd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.7;
  width: 20px;
}

/* Header CTA */
.header-cta {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 9px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
  display: block;
}
.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 Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 20px 5%;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 8px;
  color: var(--cream2);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 16px; }
.mobile-nav .mob-section-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 8px 6px;
}
.mobile-nav .mob-project-link {
  padding-left: 24px;
  font-size: 0.82rem;
  color: var(--white);
}
.mobile-nav .mob-project-link:hover { color: var(--gold); padding-left: 32px; }

/* ===== BANNER ===== */
#banner {
  height: 100vh;
  min-height: 600px;
  position: relative;
  padding: 0;
}

@media screen and (max-width: 768px) {
  #banner {
    height: 70vh;
    min-height: 300px;
  }
  .banner-content {
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 48px;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none ;
  }
  .banner-swiper .swiper-pagination {
    bottom: 12px;
  }
  .banner-btns {
    gap: 8px;
  }
  .banner-btns .btn-primary,
  .banner-btns .btn-outline {
    padding: 8px 16px;
    font-size: 0.65rem;
    min-width: auto;
  }
}

.banner-swiper { width: 100%; height: 100%; }

.banner-slide { position: relative; overflow: hidden; }

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.swiper-slide-active .banner-bg { transform: scale(1); }

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.6) 40%, rgba(13,13,13,0.1) 100%);
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 6%;
  padding-top: var(--header-h);
}

.banner-text { max-width: 100%; }

.banner-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}
.banner-title em { font-style: italic; color: var(--gold); }

.banner-location {
  font-size: 0.88rem;
  color: var(--cream2);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.banner-price {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 1.45rem;
  color: var(--gold-light);
  margin-bottom: 26px;
}

.banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Swiper Controls */
.banner-swiper .swiper-pagination { bottom: 28px; }
.banner-swiper .swiper-pagination-bullet {
  width: 6px; height: 6px;
  background: var(--cream); opacity: 0.4;
}
.banner-swiper .swiper-pagination-bullet-active {
  width: 24px; border-radius: 3px;
  background: var(--gold); opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--gold) !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid var(--border);
  background: rgba(13,13,13,0.5);
  backdrop-filter: blur(8px);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 26px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 12px 26px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-details {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 11px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-details:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-call {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  padding: 11px 20px;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.btn-call:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SECTION COMMONS ===== */
section { padding: 90px 5%; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.75;
  /* max-width: 560px; */
}

.divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 26px 0;
}

/* ===== PROJECTS SECTION ===== */
#projects {
  padding: calc(var(--header-h) + 110px) 0 0;
  background: var(--dark2);
}

.projects-header {
  padding: 0 5%;
  position: relative;
}

/* --- Project Quick Nav (fixed under header for testing) --- */
.projects-quick-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 24px 0 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: linear-gradient(to right, rgba(201,168,76,0.08), rgba(201,168,76,0.04), rgba(201,168,76,0.08));
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}

/* desktop breakpoint adjustments handled by responsive rules below */

.pq-item {
  padding: 20px 16px;
  border-right: 1px solid rgba(201,168,76,0.2);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--cream2);
  position: relative;
  overflow: hidden;
}

.pq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

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

.pq-item:hover {
  background: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: inset 0 0 20px rgba(201,168,76,0.2);
}

.pq-item:hover::before { opacity: 1; }
.pq-item:hover .pq-name { color: var(--gold); font-weight: 600; }
.pq-item:hover .pq-num { font-size: 1.25rem; }
.pq-item:hover .pq-icon { transform: scale(1.25) rotate(90deg); }

.pq-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  transition: all 0.35s ease;
}

.pq-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  transition: all 0.35s ease;
  color: var(--cream);
}

.pq-loc {
  font-size: 0.70rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition: opacity 0.35s ease;
}

.pq-item:hover .pq-loc { opacity: 1; }

.pq-icon {
  display: block;
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.3rem;
  color: var(--gold);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.7;
}

/* ===== VERTICAL ADS SECTION ===== */
.projects-ads-container {
  width: 100%;
  overflow: hidden;
  background: var(--dark2);
}

.ads-image {
  width: 100%;
  height: auto;
  display: block;
  /* aspect-ratio: 3/1; */
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.projects-ads-container:hover .ads-image {
  transform: scale(1.02);
}
/* 
@media (max-width: 768px) {
  .ads-image {
    aspect-ratio: 6/4;
  }
} */

/* ===== DESKTOP: Sticky scroll cards ===== */
.projects-scroll-container { position: relative; }

@media (min-width: 901px) {
  .project-card-wrapper {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 60px 5%;
    position: sticky;
    top: 0;
    gap: 60px;
  }
  .project-card-wrapper:nth-child(even) { flex-direction: row-reverse; background: var(--dark3); }
  .project-card-wrapper:nth-child(odd)  { flex-direction: row;         background: var(--dark2); }
}

/* ===== MOBILE: Normal stacked cards ===== */
@media (max-width: 900px) {
  .project-card-wrapper {
    display: flex;
    flex-direction: column !important;
    position: static !important;
    min-height: unset;
    padding: 48px 5%;
    border-bottom: 1px solid var(--border);
    background: var(--dark2);
    gap: 0px;
  }
  .project-card-wrapper:nth-child(even) { background: var(--dark3); }
}

.project-img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 55vh;
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card-wrapper:hover .project-img-wrap img { transform: scale(1.04); }

.project-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  text-transform: uppercase;
  z-index: 2;
}

.project-info { flex: 1; max-width: 520px; }

@media (max-width: 900px) {
  .project-info { max-width: 100%; }
  .project-img-wrap { max-height: 260px; width: 100%; flex: unset; aspect-ratio: 16/9; }
}

/* Project Number */
.project-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 300;
  /* Increased brightness so it's more visible */
  color: rgb(201 168 76 / 50%);
  line-height: 1;
  margin-bottom: -22px;
  user-select: none;
}

.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.project-location {
  font-size: 0.83rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-desc {
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.8;
}

.btn-read-more {
  background: transparent;
  color: var(--gold);
  border: none;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 22px;
}
.btn-read-more:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 11px;
  padding: 9px;
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.04);
}

.meta-item { text-align: center; }
.meta-label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
}

.project-price {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 1.55rem;
  color: var(--gold);
  margin-bottom: 11px;
}
.project-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--white);
  font-weight: 400;
  margin-left: 6px;
}

.project-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .project-actions { flex-direction: column; }
  .project-actions > * { width: 100%; justify-content: center; }
}

/* ===== GALLERY ===== */
#gallery { background: var(--dark3); }

.gallery-header { margin-bottom: 44px; }

.gallery-swiper { width: 100%; padding-bottom: 48px !important; }
.gallery-swiper .swiper-slide { border-radius: 2px; overflow: hidden; }
.gallery-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-swiper .swiper-slide:hover img { transform: scale(1.05); }
.gallery-swiper .swiper-pagination-bullet { background: var(--gold); opacity: 0.4; }
.gallery-swiper .swiper-pagination-bullet-active { opacity: 1; }

/* ===== ABOUT ===== */
#about {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 55%; height: 55%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 55%; height: 55%;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  pointer-events: none;
  z-index: 1;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 36px;
}

.stat-box { border-left: 2px solid var(--gold); padding-left: 18px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
}
.stat-label { font-size: 0.78rem; color: var(--white); margin-top: 3px; letter-spacing: 0.06em; }

/* ===== PROJECT DETAIL MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  overflow-y: auto;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 860px;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.35s;
  margin: auto;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  background: rgba(13,13,13,0.8);
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: 0.3s;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-header {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.modal-header img { width: 100%; height: 100%; object-fit: cover; }
.modal-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.25) 60%);
}
.modal-header-text {
  position: absolute;
  bottom: 24px; left: 28px; right: 60px;
}
.modal-header-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 300;
  color: var(--white);
}
.modal-header-text p { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.07em; margin-top: 4px; }

.modal-body { padding: 28px 28px 0; }

.modal-section { margin-bottom: 26px; }
.modal-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

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

.modal-detail-label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.modal-detail-value { font-size: 0.88rem; color: var(--cream2); }

.modal-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.amenity-tag {
  border: 1px solid var(--border);
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--cream2);
  letter-spacing: 0.05em;
  transition: 0.2s;
}
.amenity-tag:hover { border-color: var(--gold); color: var(--gold); }

.modal-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.modal-mini-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}
.modal-mini-gallery img:hover { border-color: var(--gold); }

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 22px 28px;
  border-top: 1px solid var(--border);
  background: rgba(201,168,76,0.04);
  margin-top: 28px;
}

@media (max-width: 600px) {
  .modal-header { height: 200px; }
  .modal-grid { grid-template-columns: 1fr 1fr; }
  .modal-mini-gallery { grid-template-columns: repeat(2, 1fr); }
  .modal-body { padding: 20px 18px 0; }
  .modal-actions { padding: 18px; flex-direction: column; }
  .modal-actions > * { width: 100%; justify-content: center; }
}

/* ===== LEAD FORM MODAL ===== */
.form-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(14px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  overflow-y: auto;
}
.form-modal-overlay.active { opacity: 1; pointer-events: all; }

.form-modal-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 460px;
  padding: 40px 36px 36px;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.35s;
  margin: auto;
}
.form-modal-overlay.active .form-modal-box { transform: scale(1); }

.form-modal-box::before {
  content: 'MANA';
  position: absolute;
  top: 14px; right: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.05);
  letter-spacing: 0.1em;
  pointer-events: none;
  line-height: 1;
}

.form-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}
.form-close:hover { border-color: var(--gold); color: var(--gold); }

.form-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.2;
}
.form-subtitle {
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 26px;
  line-height: 1.65;
}

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.form-group input[type="number"] {
  max-width: 100%;
}
.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  outline: none;
  transition: 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark2); color: var(--cream); }
.form-group textarea { 
  resize: vertical; 
  min-height: 72px;
  font-family: 'DM Sans', sans-serif;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover:not(.disabled) { background: var(--gold-light); }
.form-submit.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.form-submit.loading .btn-text {
  opacity: 0.7;
}
.form-submit .btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.form-submit.loading .btn-loader {
  display: block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-privacy {
  font-size: 0.7rem;
  color: var(--white);
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
}

@media (max-width: 480px) {
  .form-modal-box { padding: 28px 20px 24px; }
  .form-modal-box::before { display: none; }
}

/* ===== FLOATING BTNS ===== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 500;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.45);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: #25D366; color: #fff; }
.float-call { background: var(--gold); color: var(--dark); }
.float-enquire { background: var(--dark3); color: var(--gold); border: 1px solid var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: #080808;
  padding: 64px 5% 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { font-size: 1.35rem; margin-bottom: 14px; display: block; }
.footer-brand p { color: var(--white); font-size: 0.83rem; line-height: 1.75; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: 0.3s;
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold-dim); }

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col p { color: var(--white); font-size: 0.83rem; line-height: 1.8; }
.footer-col p a { color: var(--gold); text-decoration: none; }

.footer-bottom {
  /* border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px; */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-copy { color: var(--white); font-size: 0.76rem; }
.footer-copy a { color: var(--white); text-decoration: none; }
.footer-copy a:hover { color: var(--cream); }

.disclaimer {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 2px solid var(--gold);
  padding: 14px 18px;
  font-size: 0.7rem;
  color: #5a5a5a;
  line-height: 1.75;
}

/* RERA Bar */
.rera-bar {
  background: rgba(201,168,76,0.06);
  border-top: 1px solid var(--border);
  padding: 10px 5%;
  display: flex;
  gap: 20px;

}
.rera-bar span { font-size: 0.7rem; color: var(--white); letter-spacing: 0.05em; }
.rera-bar strong { color: var(--gold); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== SUCCESS TOAST ===== */
#successToast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold);
  color: var(--dark);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  z-index: 99999;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
  border-radius: 2px;
  white-space: nowrap;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1100px) {
  .projects-quick-nav { grid-template-columns: repeat(3, 1fr); }
  .pq-item:nth-child(3) { border-right: none; }
  .pq-item:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 900px) {
  #about { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap { aspect-ratio: 16/9; max-height: 340px; }

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

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

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  section { padding: 60px 5%; }
  .projects-quick-nav { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
  .pq-item { padding: 16px 14px; padding-right: 40px; }
  .pq-num { font-size: 1.1rem; }
  .pq-name { font-size: 0.75rem; }
  .pq-loc { font-size: 0.65rem; }
  .pq-icon { font-size: 1.1rem; top: 10px; right: 10px; }
  .pq-item:nth-child(2) { border-right: none; }
  .pq-item:nth-child(3) { border-right: 1px solid rgba(201,168,76,0.2); border-top: 1px solid rgba(201,168,76,0.2); }
  .pq-item:nth-child(4) { border-top: 1px solid rgba(201,168,76,0.2); }
  .pq-item:nth-child(5) { border-top: 1px solid rgba(201,168,76,0.2); }
  .pq-item:nth-child(6) { border-right: none; border-top: 1px solid rgba(201,168,76,0.2); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

  .banner-title { font-size: 2rem; }
  .banner-btns { flex-direction: column; gap: 10px; }
  .banner-btns .btn-primary,
  .banner-btns .btn-outline { text-align: center; }
}

@media (max-width: 480px) {
  .projects-quick-nav {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }
  .pq-item {
    padding: 14px 12px;
    padding-right: 38px;
    border-right: 1px solid rgba(201,168,76,0.2);
  }
  .pq-item:nth-child(2) { border-right: none; }
  .pq-item:nth-child(3) { border-right: 1px solid rgba(201,168,76,0.2); border-top: 1px solid rgba(201,168,76,0.2); }
  .pq-item:nth-child(4) { border-top: 1px solid rgba(201,168,76,0.2); }
  .pq-item:nth-child(5) { border-top: 1px solid rgba(201,168,76,0.2); }
  .pq-item:nth-child(6) { border-right: none; border-top: 1px solid rgba(201,168,76,0.2); }
  .pq-num { font-size: 1rem; }
  .pq-name { font-size: 0.70rem; }
  .pq-loc { font-size: 0.60rem; }
  .pq-icon { font-size: 0.95rem; top: 8px; right: 8px; }
}

@media (max-width: 760px) {
  .banner-price {
    margin-bottom: 10px;
  }
  .banner-location {
    margin-bottom: 4px;
  }
}