:root {
  --orange: #E87025;
  --orange-light: #F09050;
  --teal: #00B4C8;
  --deep: #1A1A2E;
  --dark-bg: #111120;
  --cream: #F4EDE0;
  --cream-dark: #E8DDCC;
  --warm-white: #FDFAF5;
  --white: #FFFFFF;
  --text: #333333;
  --text-muted: #777777;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(17, 17, 32, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 112, 37, 0.2);
  transition: padding 0.3s;
}
nav.scrolled { padding: 8px 48px; }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 80px; width: auto; display: block; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nl-srinis { font-size: 0.52rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.nl-pristine { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--orange); letter-spacing: 0.06em; line-height: 1.05; }
.nl-luxury { font-size: 0.42rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--orange); }

.nav-cta { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); border: 1px solid var(--orange); padding: 13px 26px; cursor: pointer; text-decoration: none; transition: background 0.3s; }
.nav-cta:hover { background: var(--orange); }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--deep); flex-direction: column; align-items: center; justify-content: center; gap: 0;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 1.4rem; color: rgba(255,255,255,0.6); cursor: pointer; }
.mobile-menu ul { list-style: none; text-align: center; margin-bottom: 32px; }
.mobile-menu ul li { margin-bottom: 24px; }
.mobile-menu ul a { font-size: 1.2rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); text-decoration: none; }
.mobile-menu ul a:hover { color: var(--orange); }

/* ─── BUTTONS ─── */
.btn-primary { display: inline-block; background: var(--orange); color: var(--white); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; padding: 14px 36px; transition: all 0.3s; border: 2px solid var(--orange); }
.btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-2px); }
.btn-outline { display: inline-block; border: 2px solid rgba(255,255,255,0.5); color: var(--white); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; padding: 14px 36px; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ─── SECTION COMMONS ─── */
.section-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--deep); }
.section-title.white { color: var(--white); }
.section-title em { font-style: normal; color: var(--orange); }
.section-desc { font-size: 0.98rem; line-height: 1.85; color: var(--text-muted); font-weight: 300; max-width: 580px; margin-top: 14px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 14px auto 0; }

.divider-orange { width: 56px; height: 2px; background: var(--orange); margin: 22px 0; }
.center-div { margin-left: auto; margin-right: auto; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: url(assets/images/imageheader2.jpeg) center center / cover no-repeat;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(17,17,32,0.80) 0%, rgba(17,17,32,0.55) 50%, rgba(17,17,32,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 56px;
}
.hero-logo-wrap { opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards; }
.hero-logo { height: 90px; width: auto; margin-bottom: 20px; }
.rera-pill {
  display: inline-block; border: 1px solid var(--orange); color: var(--orange);
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.08em;
  padding: 5px 16px; margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 7rem); font-weight: 300; line-height: 1.05; color: var(--white);
  opacity: 0; animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-headline em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.65);
  max-width: 480px; line-height: 1.75; margin-top: 18px;
  opacity: 0; animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-actions {
  margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-badges {
  position: relative; z-index: 2;
  display: flex; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1.1s ease forwards;
}
.hero-badge {
  padding: 14px 12px 22px; text-align: center;
  width: 130px; height: 80px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  cursor: default;
}
.hero-badge .hb-title { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--white); line-height: 1.3; }
.hero-badge .hb-sub { display: block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; color: rgba(255,255,255,0.85); }
.b1 { background: #C87D20; }
.b2 { background: var(--orange); }
.b3 { background: #D06020; }
.b4 { background: #B8950E; }

/* ─── STEP INTO A WORLD ─── */
.step-into { background: var(--deep); padding: 0; overflow: hidden; }
.step-into-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.step-text {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
  background: var(--deep);
}
.step-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 500; line-height: 1.0;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.step-sub-italic {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: normal;
  color: var(--orange); font-weight: 300; margin-bottom: 20px;
}
.step-desc { font-size: 0.96rem; line-height: 1.85; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 36px; }
.approvals-row { display: flex; gap: 10px; flex-wrap: wrap; }
.appr-pill {
  background: rgba(232,112,37,0.1); border: 1px solid rgba(232,112,37,0.28);
  padding: 10px 30px; font-size: 0.7rem; color: rgba(255,255,255,0.75);
  line-height: 1.5; text-align: center;
}
.appr-pill strong { color: var(--orange); font-weight: 600; }
.step-image { position: relative; overflow: hidden; }
.step-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── HIGHLIGHTS STRIP ─── */
.highlights-strip {
  background: var(--orange); display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.hl-item { padding: 26px 36px; text-align: center; flex: 1; min-width: 100px; }
.hl-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--white); line-height: 1; }
.hl-label { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.82); margin-top: 5px; }
.hl-sep { width: 1px; background: rgba(255,255,255,0.25); align-self: stretch; margin: 12px 0; }

/* ─── PRESENTING ─── */
.presenting { padding: 0; overflow: hidden; background: var(--cream); }
.presenting-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.presenting-image { position: relative; overflow: hidden; }
.presenting-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.presenting-text {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.presenting-text p { font-size: 0.97rem; line-height: 1.85; color: #555; font-weight: 300; }

/* ─── AMENITIES ─── */
.amenities {
  position: relative; padding: 80px 48px;
  background: var(--dark-bg); overflow: hidden;
}
.amenities-bg-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,112,37,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,180,200,0.07) 0%, transparent 50%);
}
.amenities-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

/* bento grid */
.am-bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  margin-top: 52px;
}
.am-bento-item {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; cursor: default;
  transition: background 0.35s, border-color 0.35s, transform 0.3s;
  backdrop-filter: blur(6px);
}
.am-bento-item:hover {
  background: rgba(232,112,37,0.14);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.am-bento-item:hover .am-bento-icon { color: var(--orange); transform: scale(1.15); }
.am-bento-icon {
  font-size: 2.2rem; color: rgba(255,255,255,0.55);
  transition: color 0.35s, transform 0.35s;
  display: flex; align-items: center; justify-content: center;
}
.am-bento-icon img {
  width: 56px; height: 56px; object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: filter 0.35s, transform 0.35s;
}
.am-bento-item:hover .am-bento-icon img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(78%) saturate(600%) hue-rotate(352deg) brightness(100%);
  transform: scale(1.15);
}
.am-bento-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.am-bento-glow {
  position: absolute; inset: 0; border-radius: 16px; pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(232,112,37,0.12), transparent 70%);
  opacity: 0; transition: opacity 0.35s;
}
.am-bento-item:hover .am-bento-glow { opacity: 1; }

.am-brochure-wrap { text-align: center; margin-top: 40px; }
.am-brochure-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 0.82rem; padding: 16px 40px; }

/* ─── APARTMENTS ─── */
.apartments { padding: 80px 48px; background: var(--cream); }
.apartments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.apt-card {
  background: var(--white); padding: 48px; position: relative; overflow: hidden;
  border-top: 3px solid rgba(0,0,0,0.07); transition: box-shadow 0.3s;
}
.apt-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.featured-tag { position: absolute; top: 0; right: 0; background: var(--orange); color: var(--white); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; }
.apt-config { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 300; color: var(--deep); line-height: 1; }
.apt-range { font-size: 1.05rem; font-weight: 600; color: var(--orange); margin-top: 6px; }
.apt-facing { font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 16px; margin-top: 2px; }
.apt-floorplan { margin-bottom: 20px; text-align: center; }
.floorplan-img { width: 100%; max-height: 270px; object-fit: contain; filter: blur(7px); }
.apt-features { list-style: none; margin-bottom: 32px; }
.apt-features li {
  padding: 9px 0 9px 20px; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem; color: #555; font-weight: 300; position: relative;
}
.apt-features li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; background: var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.apt-cta { width: fit-content; font-size: 0.82rem; padding: 16px 40px; display: block; margin: 0 auto; }
.apt-note {
  margin-top: 28px; padding: 18px 22px; background: rgba(232,112,37,0.06);
  border-left: 3px solid var(--orange); font-size: 0.84rem; color: var(--text-muted); line-height: 1.75;
}

/* ─── SPECIFICATIONS ─── */
.specifications {
  padding: 40px 48px; background: var(--cream-dark);
}
.specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 48px; background: rgba(0,0,0,0.06);
}
.spec-card {
  background: var(--cream); padding: 28px 22px; transition: background 0.3s;
}
.spec-card:hover { background: var(--white); }
.spec-icon-wrap { margin-bottom: 14px; height: 48px; display: flex; align-items: center; }
.spec-icon-wrap img { width: 32px; height: 32px; object-fit: contain; }
.spec-icon-wrap svg { width: 48px; height: 48px; stroke: var(--orange); }
.spec-name { font-size: 0.97rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.spec-detail { font-size: 0.97rem; color: #555; font-weight: 300; line-height: 1.65; }

/* ─── LOCATION ─── */
.location { padding: 0; overflow: hidden; background: var(--deep); }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.location-text { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.location-desc { font-size: 0.96rem; line-height: 1.85; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 36px; }
.neighbourhood-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nb-cat { border-left: 2px solid rgba(232,112,37,0.35); padding-left: 14px; }
.nb-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.nb-cat ul { list-style: none; }
.nb-cat ul li { font-size: 0.84rem; color: rgba(255,255,255,0.55); font-weight: 300; padding: 3px 0; }
.location-map-box {
  position: relative;
  min-height: 480px; overflow: hidden;
}
.location-map-box::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    #1A1A2E 0%,
    rgba(26,26,46,0.75) 30%,
    rgba(26,26,46,0.35) 55%,
    rgba(26,26,46,0.00) 80%);
}
.location-map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-overlay-link {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(17,17,32,0.82); backdrop-filter: blur(6px);
  color: var(--orange); text-decoration: none;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 20px; text-align: center; display: block;
  transition: background 0.3s;
}
.map-overlay-link:hover { background: var(--orange); color: var(--white); }

/* ─── SBI SECTION ─── */
.sbi-section { background: var(--white); padding: 56px 48px; border-top: 1px solid rgba(0,0,0,0.06); }
.sbi-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; max-width: 960px; margin: 0 auto; }
.sbi-heading { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 300; color: var(--deep); margin: 8px 0 12px; }
.sbi-heading em { color: var(--orange); font-style: normal; }
.sbi-text p { font-size: 0.94rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; max-width: 520px; }
.sbi-logo-box { text-align: center; flex-shrink: 0; }
.sbi-logo-img { height: 163px; width: auto; object-fit: contain; display: block; margin: 0 auto 10px; }
.sbi-label { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }

/* ─── CONTACT ─── */
.contact {
  background: var(--deep); display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; padding: 80px 48px;
}
.contact-sub { font-size: 0.96rem; line-height: 1.85; color: rgba(255,255,255,0.55); font-weight: 300; margin-top: 18px; }
.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; align-items: center; gap: 18px; }
.c-icon { font-size: 1.1rem; color: var(--orange); flex-shrink: 0; }
.c-detail strong { display: block; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 3px; }
.c-detail a { font-size: 0.95rem; color: var(--white); text-decoration: none; font-weight: 300; transition: color 0.3s; }
.c-detail a:hover { color: var(--orange); }
.rera-num { font-size: 0.82rem; color:var(--white); font-weight: 300; }

/* ─── FORM ─── */
.form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(232,112,37,0.2); padding: 44px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 28px; font-style: normal; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 15px; color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; font-weight: 300; outline: none; transition: border-color 0.3s; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: #1A1A2E; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; background: var(--orange); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 15px; border: none; cursor: pointer; transition: background 0.3s, transform 0.2s; margin-top: 8px; }
.btn-submit:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer { background: rgba(17, 17, 32, 0.96); }

.footer-disclaimer-wrap {
  padding: 48px 80px 0px;
  text-align: center;
}
.footer-disclaimer-text {
  font-size: 0.96rem; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.8; max-width: 860px; margin: 0 auto 20px;
}
.footer-rera-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 500; color: var(--orange);
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.footer-rera-link {
  font-size: 0.88rem; font-weight: 400; color: var(--orange);
  text-decoration: none; letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(232,112,37,0.4); padding-bottom: 2px;
  transition: border-color 0.3s;
}
.footer-rera-link:hover { border-color: var(--orange); }

.footer-columns {
  display: flex;
  padding: 20px 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--orange);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  font-weight: 300; line-height: 1.75;
}
.footer-col a {
  color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s;
}
.footer-col a:hover { color: var(--orange); }

.footer-socials { display: flex; gap: 14px; margin-top: 4px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.social-icon:hover { background: var(--orange); border-color: var(--orange); color: var(--white) !important; }
.social-icon svg { width: 18px; height: 18px; }

.footer-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 80px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-bar p {
  font-size: 0.96rem; color: rgba(255,255,255,0.3); font-weight: 300;
}
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a {
  font-size: 0.96rem; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--orange); }
.footer-sep { color: rgba(255,255,255,0.2); font-size: 0.8rem; }

/* ─── PRIVACY MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(7,16,26,0.88); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open {
  display: flex;
  animation: enqFadeIn 0.3s ease forwards;
}
.modal-overlay.open .modal-box {
  animation: enqSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.modal-box {
  background: var(--dark-bg); max-width: 580px; width: 100%;
 overflow-y: auto; position: relative;
  padding: 48px 40px 40px;
  border-radius: 4px; box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.modal-close {
  position: absolute; top: 12px; right: 30px; background: none; border: none;
  font-size: 2rem; color: rgba(255,255,255,0.4); cursor: pointer; transition: color 0.2s;
}
.modal-close:hover { color: var(--orange); }
.modal-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 0; }
.modal-title em { font-style: normal; color: var(--orange); }
.modal-body p { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 18px; }

/* ─── ENQUIRY MODAL ─── */
@keyframes enqFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes enqSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.enq-overlay {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(7,16,26,0.88); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.enq-overlay.open {
  display: flex;
  animation: enqFadeIn 0.3s ease forwards;
}
.enq-overlay.open .enq-box {
  animation: enqSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.enq-box {
  background: var(--dark-bg); max-width: 480px; width: 100%;
  border-radius: 4px;
  padding: 48px 40px 40px; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.enq-close {
  position: absolute; top: 10px; right: 20px; background: none; border: none;
  font-size: 2rem; color: rgba(255,255,255,0.4); cursor: pointer; transition: color 0.2s;
}
.enq-close:hover { color: var(--orange); }
.enq-header { text-align: center; margin-bottom: 28px; }
.enq-title {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 300; color: var(--white); margin: 8px 0 12px;
}
.enq-title em { font-style: normal; color: var(--orange); }
.enq-sub { font-size: 0.97rem; color: rgba(255,255,255,0.45); font-weight: 300; }
.enq-form { display: flex; flex-direction: column; gap: 14px; }
.enq-field {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 0 16px; transition: border-color 0.3s;
}
.enq-field:focus-within { border-color: var(--orange); }
.enq-field-icon { color: var(--orange); font-size: 0.85rem; flex-shrink: 0; }
.enq-field input {
  flex: 1; background: none; border: none; outline: none;
  padding: 14px 0; font-size: 0.88rem; color: var(--white);
  font-family: 'Montserrat', sans-serif;
}
.enq-field input::placeholder { color: rgba(255,255,255,0.35); }
.enq-submit {
  margin-top: 6px; background: transparent; color: var(--white);
  border: 1px solid var(--orange); padding: 14px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 4px; transition: background 0.3s, transform 0.2s;
}
.enq-submit:hover { background: var(--orange); transform: translateY(-2px); }
.enq-submit:disabled { cursor: not-allowed; transform: none; }

@media (max-width: 900px) {
  .enq-box { padding: 40px 24px 32px; }
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  nav.scrolled { padding: 8px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu .nav-cta { display: inline-block; margin-top: 8px; font-size: 1rem; padding: 14px 32px; background: var(--orange); border-color: var(--orange); color: var(--white); }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 100px 24px 40px; }
  .hero-logo { height: 70px; }
  .hero-badge { width: 88px; height: 68px; padding: 8px 10px 16px; }
  .hero-badge .hb-title { font-size: 0.65rem; }

  .step-into-inner { grid-template-columns: 1fr; }
  .step-text { padding: 56px 24px; }
  .step-image { min-height: 280px; }

  .hl-item { padding: 20px 14px; min-width: 80px; }
  .hl-sep { display: none; }

  .presenting-inner { grid-template-columns: 1fr; }
  .presenting-image { min-height: 260px; }
  .presenting-text { padding: 48px 24px; }

  .amenities { padding: 60px 20px; }
  .am-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 12px; margin-top: 36px; }
  .am-bento-icon { font-size: 1.8rem; }
  .am-bento-label { font-size: 0.72rem; }

  .apartments { padding: 60px 24px; }
  .apartments-grid { grid-template-columns: 1fr; gap: 16px; }

  .specifications { padding: 60px 24px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }

  .location-inner { grid-template-columns: 1fr; }
  .location-text { padding: 60px 24px; }
  .location-map-box { min-height: 300px; }
  .neighbourhood-grid { grid-template-columns: 1fr 1fr; }

  .sbi-section { padding: 40px 24px; }
  .sbi-inner { flex-direction: column; align-items: flex-start; }

  .contact { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-disclaimer-wrap { padding: 36px 24px 28px; }
  .footer-columns { padding: 36px 24px; }
  .footer-bottom-bar { padding: 16px 24px; flex-direction: column; align-items: center; gap: 8px; }
}

@media (max-width: 600px) {
  .neighbourhood-grid { grid-template-columns: 1fr; }
  .hero-badge { width: 76px; height: 60px; padding: 6px 8px 14px; }
  .hl-num { font-size: 1.5rem; }
}

/* ─── CAROUSEL (mobile only) ─── */
.carousel-wrapper { position: relative; }
.carousel-btn { display: none; } /* hidden on desktop */

@media (max-width: 900px) {
  .carousel-btn {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 38px; height: 38px; border-radius: 50%;
    background: var(--orange); color: var(--white); border: none;
    cursor: pointer; font-size: 0.85rem; box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    transition: background 0.2s;
  }
  .carousel-btn:hover { background: var(--orange-light); }
  .carousel-prev { left: -6px; }
  .carousel-next { right: -6px; }

  .carousel-viewport { overflow: hidden; width: 100%; }

  .specs-grid.carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 8px;
  }
  .specs-grid.carousel-track::-webkit-scrollbar { display: none; }

  .specs-grid.carousel-track .spec-card {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
    scroll-snap-align: start;
  }
}

/* ── Form Validation ─────────────────────────────────────── */
.val-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.72rem;
  margin-top: 4px;
  padding-left: 2px;
}

/* contact form invalid/valid borders */
.form-group input.field-invalid,
.form-group select.field-invalid,
.form-group textarea.field-invalid {
  border-color: #ff6b6b !important;
  outline: none;
}



/* enquiry modal invalid/valid borders */
.enq-field:has(input.field-invalid) {
  border-color: #ff6b6b !important;
}



/* disabled submit button */
.btn-submit:disabled,
.enq-submit:disabled {
  cursor: not-allowed;
}
/* ── POPUP IMAGE MODAL ─────────────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.popup-overlay.active {
  display: flex;
}
.popup-box {
  position: relative;
  max-width: 520px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: popupIn 0.35s ease;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
.popup-img {
  display: block;
  width: 100%;
  height: auto;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s;
}
.popup-close:hover { background: rgba(0, 0, 0, 0.8); }
