/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #03070f;
  color: #e8eaf0;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --saffron: #f26e22;
  --saffron-light: #ff8c3a;
  --saffron-dark: #c64c0a;
  --navy: #03070f;
  --navy-2: #070e1b;
  --navy-3: #0c182d;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(18px);
  --accent-orange: #ff5f00;
  --accent-red: #ff3c3c;
  --accent-green: #00c884;
  --text-muted: #8898b5;
  --radius: 20px;
  --shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.saffron { color: var(--saffron); }
.gradient-text {
  background: linear-gradient(135deg, var(--saffron-light) 0%, var(--saffron) 50%, var(--saffron-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(3, 7, 15, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 38px; object-fit: contain; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #b8c4d8; transition: color 0.2s; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--saffron); }
.nav-links a.active-nav { color: var(--saffron); border-bottom: 2px solid var(--saffron); padding-bottom: 0.2rem; }
.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #03070f !important; font-weight: 800;
  padding: 0.65rem 1.4rem; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta.active-nav { border-bottom: none; }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(242,110,34,0.45) !important; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 0.25rem;
}
.burger span { display: block; width: 24px; height: 2px; background: #e8eaf0; border-radius: 2px; transition: 0.3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--saffron); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--saffron); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 3rem;
  padding: 7.5rem 2rem 4rem;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(242,110,34,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,95,0,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 80%, rgba(0,200,132,0.04) 0%, transparent 60%),
              #03070f;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.16; animation: floatOrb 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: var(--saffron); top: -200px; left: -150px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: var(--saffron-light); top: 30%; right: -100px; animation-delay: -3s; }
.orb-3 { width: 400px; height: 400px; background: var(--saffron-dark); bottom: -100px; left: 30%; animation-delay: -6s; }
@keyframes floatOrb { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-40px) scale(1.05); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(242,110,34,0.12); border: 1px solid rgba(242,110,34,0.3);
  color: var(--saffron-light); padding: 0.5rem 1.2rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-subtitle { font-size: 1.05rem; color: #8898b5; max-width: 540px; margin-bottom: 2rem; line-height: 1.7; }
.hero-subtitle strong { color: var(--saffron-light); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; transition: all 0.3s; border: none;
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #03070f; box-shadow: 0 8px 30px rgba(242,110,34,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(242,110,34,0.55); }
.btn-glass {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur); color: #e8eaf0;
}
.btn-glass:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.btn.full-width { width: 100%; margin-top: 0.5rem; }

.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--saffron); font-family: 'Playfair Display', serif; }
.stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 36px; background: var(--glass-border); }

.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-card-float {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 0 1px var(--glass-border);
  animation: heroFloat 5s ease-in-out infinite;
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
}
.hero-card-float img { width: 100%; max-width: 520px; object-fit: cover; }
@keyframes heroFloat { 0%,100% { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(0); } 50% { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-12px); } }
.hero-card-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(3,7,15,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); color: #e8eaf0;
  padding: 0.5rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.pulse-dot { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }

/* ===== SECTIONS ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-tag {
  display: inline-block; color: var(--saffron); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  margin-bottom: 1rem; line-height: 1.2;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ===== PROJECTS ===== */
.projects-section { padding: 6rem 0; }
.project-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start; margin-bottom: 6rem;
}
.project-block.reverse { direction: rtl; }
.project-block.reverse > * { direction: ltr; }

.project-media { position: relative; }
.project-img-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 0.75rem;
}
.grid-img {
  border-radius: 14px; object-fit: cover; width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.grid-img:hover { transform: scale(1.03) translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.grid-img.main-img { grid-column: 1 / -1; height: 280px; }
.project-label-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(3,7,15,0.85); backdrop-filter: blur(14px);
  border: 1px solid rgba(242,110,34,0.4); border-radius: 50px;
  padding: 0.45rem 1rem; font-size: 0.85rem; font-weight: 700; color: var(--saffron-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.project-label-badge.green { border-color: rgba(0,200,132,0.4); color: var(--accent-green); }

.project-info { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.project-tag { font-size: 0.72rem; color: var(--saffron); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.project-name { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; line-height: 1.1; }
.project-location { color: var(--text-muted); font-size: 0.88rem; }
.project-desc { color: #a0aec0; line-height: 1.7; font-size: 0.96rem; }
.project-desc strong { color: #e8eaf0; }

.project-features { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.feature-chip {
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  border-radius: 50px; padding: 0.35rem 0.9rem;
  font-size: 0.78rem; font-weight: 500; color: #c0cce0;
  transition: background 0.2s, border-color 0.2s;
}
.feature-chip:hover { background: rgba(242,110,34,0.1); border-color: rgba(242,110,34,0.3); color: var(--saffron-light); }

.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.price-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 1.2rem; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(242,110,34,0.4); }
.price-card.featured {
  border-color: rgba(242,110,34,0.5);
  background: linear-gradient(135deg, rgba(242,110,34,0.08), rgba(255,95,0,0.06));
}
.price-card.green-featured { border-color: rgba(0,200,132,0.4); background: linear-gradient(135deg,rgba(0,200,132,0.06),rgba(0,212,177,0.04)); }
.price-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--saffron); color: #03070f;
  font-size: 0.6rem; font-weight: 800; padding: 0.2rem 0.55rem; border-radius: 20px;
  letter-spacing: 0.08em;
}
.green-featured .price-badge { background: var(--accent-green); }
.price-type { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.4rem; }
.price-size { font-size: 0.85rem; font-weight: 500; color: #c0cce0; margin-bottom: 0.3rem; }
.price-amount { font-size: 1.4rem; font-weight: 800; color: var(--saffron); font-family: 'Playfair Display',serif; margin-bottom: 0.3rem; }
.green-featured .price-amount { color: var(--accent-green); }
.price-possession { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.price-cta {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #03070f; font-weight: 700; font-size: 0.78rem;
  padding: 0.5rem 1rem; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.green-featured .price-cta { background: linear-gradient(135deg, var(--accent-green), var(--accent-teal)); }
.price-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(242,110,34,0.45); }

.rera-badge {
  display: inline-block;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  border-radius: 8px; padding: 0.4rem 0.9rem;
  font-size: 0.75rem; color: var(--text-muted); font-weight: 500;
}

/* ===== VIDEO GATE CARDS ===== */
.gated-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(10, 20, 40, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.gated-wrap:hover {
  transform: translateY(-10px);
  border-color: rgba(242, 110, 34, 0.4);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
}
.gated-img-container {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #03070f;
  display: block;
}
.gated-img-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.gated-content-below {
  padding: 3rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(7, 14, 27, 0.75) 0%, rgba(3, 7, 15, 0.96) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}
.gated-lock-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 0 15px rgba(242, 110, 34, 0.4));
}
.gated-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #fff;
  line-height: 1.2;
}
.gated-sub {
  color: #8898b5;
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.gated-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.8rem;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #03070f;
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 12px 35px rgba(242, 110, 34, 0.45);
  margin: -2.2rem auto 4rem;
  position: relative;
  z-index: 10;
  width: fit-content;
}
.gated-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 50px rgba(242, 110, 34, 0.6);
}

/* ===== AMENITIES GRID ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.amen-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.amen-item:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 110, 34, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.amen-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(242, 110, 34, 0.3));
}
.amen-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff;
}
.amen-item p {
  color: #8898b5;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== GALLERY MASONRY ===== */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.gallery-masonry img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.gallery-masonry img:first-child {
  grid-column: 1 / 3;
  height: 320px;
}
.gallery-masonry img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* ===== WHY HOABL ===== */
.why-section { padding: 6rem 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card { padding: 2.5rem 2rem; text-align: center; transition: transform 0.3s, box-shadow 0.3s; cursor: default; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.65); border-color: rgba(242,110,34,0.3); }
.why-icon { font-size: 2.4rem; margin-bottom: 1.2rem; display: inline-block; filter: drop-shadow(0 0 8px rgba(242,110,34,0.3)); }
.why-card h3 { font-family: 'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== CONTACT & FORM ===== */
.contact-section { padding: 6rem 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-left { padding-top: 1rem; }
.contact-left h2 { font-family: 'Playfair Display',serif; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; margin: 0.8rem 0 1rem; line-height: 1.2; }
.contact-left p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-perks { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.perk { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: #c0cce0; }
.perk-check { color: var(--saffron); font-weight: 700; }
.contact-banner { border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); width: 100%; margin-top: 1.5rem; }

.form-card { padding: 2.5rem; }
.form-card h3 { font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.3rem; }
.form-subtitle { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #c0cce0; margin-bottom: 0.45rem; letter-spacing: 0.03em; }
.required { color: var(--saffron-light); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border); border-radius: 12px;
  padding: 0.8rem 1rem; color: #e8eaf0;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--saffron); background: rgba(242,110,34,0.05);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #070e1b; color: #e8eaf0; }
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%; display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem; border-radius: 50px; font-weight: 800;
  font-size: 1rem; cursor: pointer; transition: all 0.3s; border: none;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #03070f; letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(242,110,34,0.3);
}
.btn-submit:hover {
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(242,110,34,0.5);
}
.btn-submit:disabled {
  background: #2a3547; color: #6b7a99; cursor: not-allowed; transform: none; box-shadow: none;
}
.form-fine { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.8rem; text-align: center; line-height: 1.5; }

/* ===== SECURITY WIDGETS (COUNTRY PICKER + VPN) ===== */
.sec-notice {
  display: none; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fc8181; font-size: 0.78rem; padding: 0.5rem 0.8rem; border-radius: 8px; margin-bottom: 0.8rem;
}
.sec-notice.show { display: block; }
.phone-field-wrapper {
  position: relative; display: flex; align-items: center;
}
.country-trigger {
  display: flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border); padding: 0.8rem 1rem; border-radius: 12px 0 0 12px;
  color: #e8eaf0; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  border-right: none; height: 100%; min-width: 95px; box-sizing: border-box;
}
.selected-flag-img { width: 20px; height: auto; object-fit: contain; }
.caret { font-size: 0.6rem; color: var(--text-muted); }
.country-drop {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; width: 280px;
  max-height: 250px; overflow-y: auto; background: #0c182d; border: 1px solid var(--glass-border);
  border-radius: 12px; z-index: 1000; box-shadow: 0 15px 45px rgba(0,0,0,0.8);
}
.country-drop.open { display: block; }
.country-search-inp {
  width: calc(100% - 1.2rem); margin: 0.6rem; background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border); border-radius: 8px; padding: 0.5rem; color: #fff;
  font-size: 0.85rem; outline: none;
}
.c-opt {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.9rem; cursor: pointer; transition: background 0.15s;
}
.c-opt:hover { background: rgba(242,110,34,0.1); }
.c-opt img { width: 22px; }
.c-opt span { font-size: 0.85rem; color: #e8eaf0; }
.c-dial { margin-left: auto; font-size: 0.78rem; font-weight: 600; color: var(--saffron-light); }
.phone-num-input {
  flex: 1; border-radius: 0 12px 12px 0 !important;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 3000; background: rgba(3,7,15,0.85);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 1.5rem;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: #070e1b; border: 1px solid var(--glass-border);
  width: 100%; max-width: 460px; border-radius: 24px; padding: 2.2rem;
  position: relative; box-shadow: 0 35px 80px rgba(0,0,0,0.8);
  transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem; background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border); width: 32px; height: 32px; border-radius: 50%;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); }
.modal-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 0.4rem; color: #fff; }
.modal-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.8rem; line-height: 1.5; }

.form-success-state, .success-state {
  text-align: center; display: none; padding: 2rem 0;
}
.success-icon { font-size: 4rem; margin-bottom: 1rem; animation: popCheck 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popCheck { 0% { transform: scale(0.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
  position: fixed; inset: 0; z-index: 4000; background: rgba(3,7,15,0.96);
  backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.lightbox-modal.open { opacity: 1; pointer-events: auto; }
.lightbox-content {
  position: relative; max-width: 90%; max-height: 85vh; transform: scale(0.95); transition: transform 0.35s ease;
}
.lightbox-modal.open .lightbox-content { transform: scale(1); }
.lightbox-img {
  max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.9), 0 0 0 1px var(--glass-border);
}
.lightbox-close {
  position: absolute; top: -2.8rem; right: 0; background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border); width: 36px; height: 36px; border-radius: 50%;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.12); }

/* ===== FAQs ===== */
.faq-container { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.faq-item {
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden; padding: 1.2rem 1.5rem; transition: all 0.3s;
}
.faq-item[open] {
  border-color: rgba(242,110,34,0.3); background: rgba(255,255,255,0.04);
}
.faq-item summary {
  font-weight: 600; color: #fff; font-size: 1.05rem; cursor: pointer; outline: none;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '▼'; font-size: 0.7rem; color: var(--saffron-light); transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { margin-top: 1rem; color: #a0aec0; font-size: 0.95rem; line-height: 1.65; }

/* ===== FOOTER ===== */
.footer { background: #02050b; border-top: 1px solid var(--glass-border); padding: 4.5rem 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { height: 44px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron-light); margin-bottom: 1.1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--saffron); }
.footer-contact p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--saffron); }
.footer-divider { height: 1px; background: var(--glass-border); margin: 0 0 1.5rem; }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; max-width: 750px; }
.rera-foot { font-size: 0.78rem; color: var(--saffron-light); white-space: nowrap; padding: 0.3rem 0.8rem; border: 1px solid rgba(242,110,34,0.3); border-radius: 6px; align-self: flex-start; font-weight: 700; }
.footer-disclaimer p { font-size: 0.76rem; color: #404b5c; line-height: 1.65; }

/* ===== FLOAT CTAs ===== */
.float-ctas {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 1000;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.float-btn:hover { transform: scale(1.1) translateY(-4px); }
.float-wa { background: #25d366; box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.float-wa:hover { box-shadow: 0 12px 30px rgba(37,211,102,0.6); }
.float-call { background: var(--saffron); box-shadow: 0 8px 24px rgba(242,110,34,0.45); }
.float-call:hover { box-shadow: 0 12px 30px rgba(242,110,34,0.6); }

/* ===== RESPONSIVE DRAWER ===== */
.mobile-drawer {
  display: none; position: fixed; inset: 0; top: 68px; background: rgba(3,7,15,0.98);
  backdrop-filter: blur(25px); z-index: 999; padding: 2.5rem 2rem;
  flex-direction: column; gap: 1.2rem;
  border-top: 1px solid var(--glass-border);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.open { display: flex; transform: translateX(0); }
.mobile-drawer a {
  font-size: 1.15rem; font-weight: 600; color: #b8c4d8; padding-bottom: 0.6rem; border-bottom: 1px solid var(--glass-border); transition: color 0.2s;
}
.mobile-drawer a:hover, .mobile-drawer a.active { color: var(--saffron); }


/* ==========================================================================
   ADDED THEME STYLES (HERO BUTTONS, SECTIONS, PRICING, FOOTER)
   ========================================================================== */

/* ===== PROJ SECTIONS & HEADERS ===== */
.proj-section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.proj-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.proj-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-top: 0.5rem;
}
.proj-section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1rem;
}

/* ===== HERO BUTTONS & URGENCY ===== */
.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.btn-gold {
  background: linear-gradient(135deg, var(--saffron), #ff9f43);
  color: #03070f;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 1.05rem 2.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(242, 110, 34, 0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(242, 110, 34, 0.6);
  background: linear-gradient(135deg, #ff9f43, var(--saffron));
}
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 1.05rem 2.4rem;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--saffron-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
}
.urgency-tag {
  display: inline-block;
  background: rgba(242, 110, 34, 0.08);
  border: 1px solid rgba(242, 110, 34, 0.25);
  color: #ffd8a8;
  padding: 0.65rem 1.4rem;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-top: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

/* ===== NEW PRICING SECTION ===== */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.price-big-card {
  background: rgba(7, 14, 27, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.03);
}
.price-big-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 110, 34, 0.4);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.06);
}
.pbc-tag {
  color: var(--saffron);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.pbc-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pbc-size {
  font-size: 1.05rem;
  color: rgba(232, 234, 240, 0.75);
  margin-bottom: 1.5rem;
}
.pbc-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--saffron-light);
  margin-bottom: 1rem;
  line-height: 1;
}
.pbc-pos {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.pbc-btn {
  width: 100%;
  padding: 1.15rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  margin-top: auto;
}
.pbc-btn:hover {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #03070f;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(242, 110, 34, 0.45);
  transform: translateY(-2px);
}

/* ===== PROJ FOOTER ===== */
.proj-footer {
  background: #02050b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6rem 2rem 4rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.brand-col {
  padding-right: 2rem;
}
.footer-logo {
  height: 48px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-header {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--saffron-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--saffron);
}
.rera-info {
  font-size: 0.92rem;
  color: #ffd8a8;
}
.disclaimer-text {
  color: #404b5c;
  font-size: 0.78rem;
  line-height: 1.65;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 7.5rem 1.5rem 3rem; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-image { display: none; }
  .project-block, .project-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Responsive pricing & footer container */
  .pricing-row { grid-template-columns: 1fr; max-width: 550px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .project-img-grid { grid-template-columns: 1fr; }
  .grid-img.main-img { grid-column: 1; height: 200px; }
  .hero-stats { flex-direction: column; gap: 0.5rem; }
  .stat-divider { width: 60px; height: 1px; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-masonry img:first-child { grid-column: 1; height: 220px; }
  .amenities-grid { grid-template-columns: 1fr; }
  
  /* Extra mobile tweaks */
  .proj-section-header h2 { font-size: 1.8rem; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .price-big-card { padding: 2.5rem 1.8rem; }
  .pbc-name { font-size: 1.8rem; }
  .pbc-price { font-size: 2.5rem; }
}
