/* ===== YASHADA DREAMSONG — Mamurdi, Pune ===== */

:root {
  --navy: #0B1D3A;
  --navy-deep: #071427;
  --navy-soft: #12294e;
  --gold: #C5A55A;
  --gold-light: #DCC084;
  --gold-dark: #A88944;
  --white: #ffffff;
  --cream: #F7F4EE;
  --text: #33415C;
  --muted: #6B7A93;
  --border: rgba(11, 29, 58, 0.1);
  --shadow-sm: 0 2px 10px rgba(7, 20, 39, 0.06);
  --shadow-md: 0 12px 32px rgba(7, 20, 39, 0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(860px, 92%); margin: 0 auto; }

.section { padding: 96px 0; position: relative; }

.sec-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.sec-kicker.light { color: var(--gold-light); }

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sec-title.left { text-align: left; }

.sec-desc { color: var(--muted); font-size: 16px; max-width: 640px; }

.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .sec-desc { margin: 0 auto; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(197, 165, 90, 0.35); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.24); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-whatsapp { background: #1FA855; color: var(--white); }
.btn-whatsapp:hover { background: #189349; transform: translateY(-2px); }

/* ===== HEADER / NAV ===== */
.header {
  position: relative;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(11, 29, 58, 0.1);
  box-shadow: 0 3px 16px rgba(7, 20, 39, 0.07);
  padding: 10px 0;
}
.header.scrolled {
  background: var(--white);
  box-shadow: 0 3px 16px rgba(7, 20, 39, 0.07);
  padding: 10px 0;
}

.navbar {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-yashada-logo {
  height: 48px;
  width: auto;
  filter: none;
  transition: height 0.35s ease;
}
.nav-brand-divider { width: 1px; height: 38px; background: rgba(11, 29, 58, 0.2); }
.nav-logo-img {
  height: 76px;
  width: auto;
  filter: none;
  transition: height 0.35s ease;
}
.header.scrolled .nav-yashada-logo { height: 48px; }
.header.scrolled .nav-logo-img { height: 76px; }
.header.scrolled .nav-brand-divider { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
  padding: 4px 0;
  text-shadow: none;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold-light); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-mobile-group { display: none; align-items: center; gap: 12px; }
.nav-cta-mobile { color: var(--navy); font-weight: 700; font-size: 15px; text-shadow: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100svh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide img { width: 100%; height: 100%; object-fit: contain; background: var(--navy-deep); }
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(7, 20, 39, 0.35);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.hero-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.hero-arrow-prev { left: 22px; }
.hero-arrow-next { right: 22px; }

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  transition: all 0.3s ease;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.18);
}
.form-group textarea { resize: vertical; }
.field-error { border-color: #D64545 !important; box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.12) !important; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-submit:hover { background: var(--navy-soft); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-consent {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-success { text-align: center; padding: 30px 10px; }
.form-success .check {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: #E8F6EC;
  color: #27AE60;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-success p { color: var(--muted); font-size: 14.5px; }

/* ===== OVERVIEW ===== */
.overview { background: var(--cream); }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.overview-media { position: relative; }
.overview-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.overview-badge {
  position: absolute;
  bottom: -24px; right: -18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.overview-badge strong {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.overview-badge span { font-size: 13px; line-height: 1.45; opacity: 0.92; }

.overview-copy p { margin-bottom: 14px; color: var(--text); font-size: 15.5px; }
.overview-points { margin: 8px 0 26px; }
.overview-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}
.overview-points li::before {
  content: '\2713';
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  background: rgba(197, 165, 90, 0.18);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HIGHLIGHTS ===== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all 0.35s ease;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(197, 165, 90, 0.5); }
.highlight-card svg {
  width: 40px; height: 40px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.highlight-card p { font-size: 14.5px; color: var(--muted); }

/* ===== AMENITIES ===== */
.amenities { background: var(--navy); }
.amenities .sec-title { color: var(--white); }
.amenities .sec-desc { color: rgba(255, 255, 255, 0.65); margin: 0 auto; }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.amenity-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 26px 14px;
  text-align: center;
  transition: all 0.35s ease;
}
.amenity-item:hover {
  background: rgba(197, 165, 90, 0.12);
  border-color: rgba(197, 165, 90, 0.5);
  transform: translateY(-5px);
}
.amenity-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center;
  justify-content: center;
  background: rgba(197, 165, 90, 0.14);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 14px;
}
.amenity-icon svg { width: 26px; height: 26px; }
.amenity-item h3 {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== PRICING ===== */
.pricing { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  transition: all 0.35s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-card.featured { border-top: 4px solid var(--gold); }
.pricing-flag {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.pricing-flag.gold { background: var(--gold); color: var(--navy); }
.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
}
.pricing-type { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.pricing-price {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.1;
  margin-bottom: 22px;
}
.pricing-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
}
.pricing-perks { margin-bottom: 28px; }
.pricing-perks li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  font-size: 14.5px;
  color: var(--text);
}
.pricing-perks li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ===== GALLERY ===== */
.gallery-masonry {
  columns: 3;
  column-gap: 18px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-masonry-item.tall { aspect-ratio: 3 / 4; }
.gallery-masonry-item:not(.tall) { aspect-ratio: 4 / 3; }
.gallery-masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-hidden { display: none; }
.gallery-masonry.expanded .gallery-masonry-hidden { display: block; }
.gallery-toggle-wrap { text-align: center; margin-top: 34px; }

.gallery-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.gallery-slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
}
.gallery-slider-dots { display: flex; gap: 8px; }
.gallery-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
}
.gallery-slider-dot.active { background: var(--gold); }

/* ===== LOCATION ===== */
.location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.location-map iframe { width: 100%; height: 420px; border: 0; display: block; }
.location-copy h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.location-address { font-size: 15px; color: var(--text); margin-bottom: 22px; }
.connect-list { margin-bottom: 28px; }
.connect-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  font-size: 15px;
  color: var(--text);
}
.connect-list li::before {
  content: '\25B8';
  position: absolute;
  left: 6px; top: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.connect-list strong { color: var(--navy); }

/* ===== ABOUT BUILDER ===== */
.about-builder {
  background:
    radial-gradient(ellipse at top right, rgba(197, 165, 90, 0.12), transparent 55%),
    var(--navy-deep);
}
.about-grid { max-width: 900px; }
.about-logo {
  height: 64px;
  width: auto;
  margin-bottom: 26px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.about-builder .sec-title { color: var(--white); }
.about-builder p { color: rgba(255, 255, 255, 0.72); font-size: 15.5px; margin-bottom: 14px; max-width: 780px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 40px;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.about-stat { text-align: left; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
  margin-left: 2px;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== CTA BAND ===== */
.cta-band {
  background:
    radial-gradient(ellipse at left center, rgba(197, 165, 90, 0.18), transparent 60%),
    linear-gradient(120deg, var(--navy-soft), var(--navy));
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-inner p { color: rgba(255, 255, 255, 0.7); font-size: 15.5px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-desc { color: var(--muted); font-size: 15.5px; margin: 6px 0 26px; }
.contact-block { margin-bottom: 20px; }
.contact-block h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 5px;
}
.contact-block p { font-size: 15px; color: var(--text); }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active { border-color: rgba(197, 165, 90, 0.55); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-dark);
  transition: transform 0.3s ease;
}
.faq-icon::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq-icon::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
}
.faq-a a { color: var(--gold-dark); font-weight: 600; }
.faq-item.active .faq-a { max-height: 300px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.75); }
.footer-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 44px;
}
.footer-logo img { height: 54px; width: auto; margin-bottom: 18px; }
.footer-desc { font-size: 14px; line-height: 1.65; margin-bottom: 16px; max-width: 320px; }
.footer-contact-line a {
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 700;
}
.footer-rera-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  align-self: start;
}
.footer-rera-box img {
  height: 110px;
  width: auto;
  margin: 0 auto 10px;
  border-radius: 6px;
}
.footer-rera-box span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-rera-no { font-size: 13px; line-height: 1.5; }
.footer-column h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-column ul li { margin-bottom: 11px; }
.footer-column ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-column ul a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-rera {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 20px;
  font-size: 13.5px;
}
.footer-rera a { color: var(--gold-light); }

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  padding: 30px 20px;
  text-align: center;
}
.footer-disclaimer p {
  max-width: 1050px;
  margin: 0 auto 12px;
  font-size: 11.8px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}
.footer-disclaimer .footer-agent { margin-bottom: 4px; font-size: 12px; color: rgba(255, 255, 255, 0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7, 20, 39, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px 28px;
  width: min(430px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: popupIn 0.35s ease;
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--muted);
  line-height: 1;
  transition: color 0.3s ease;
}
.popup-close:hover { color: var(--navy); }
.popup-title {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.popup-sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 1500;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.2s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1600;
  background: var(--navy);
  box-shadow: 0 -4px 20px rgba(7, 20, 39, 0.35);
}
.sticky-call, .sticky-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 6px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
}
.sticky-call svg, .sticky-wa svg { width: 17px; height: 17px; }
.sticky-call { border-right: 1px solid rgba(255, 255, 255, 0.12); }
.sticky-enquire {
  flex: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 150px 24px 90px;
}
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.effective-date {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-page ol { counter-reset: legal; list-style: none; }
.legal-page ol > li {
  counter-increment: legal;
  margin-bottom: 30px;
}
.legal-page ol > li > strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.legal-page ol > li > strong::before {
  content: counter(legal) '. ';
  color: var(--gold-dark);
}
.legal-page ol > li p,
.legal-page ol > li ul {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  padding-left: 22px;
}
.legal-page ol > li ul { list-style: disc; margin-top: 4px; }
.legal-page ol > li ul li { margin-bottom: 5px; }
.legal-page a { color: var(--gold-dark); font-weight: 600; }

/* Legal pages body offset for fixed header (non-hero pages get solid header) */
.page-header-solid { background: var(--navy); }

/* ===== THANK YOU PAGE ===== */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse at top right, rgba(197, 165, 90, 0.14), transparent 55%), var(--navy);
  color: var(--white);
}
.thankyou-check {
  width: 84px; height: 84px;
  background: var(--gold);
  color: var(--navy);
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.thankyou-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  margin-bottom: 14px;
}
.thankyou-page p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 34px;
}

/* ===== 404 PAGE ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--navy);
  color: var(--white);
}
.error-code {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.error-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}
.error-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  max-width: 400px;
}
.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.error-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===== BLOG ===== */
.blog-page { background: var(--cream); min-height: 100vh; padding: 68px 0 96px; }
.blog-hero { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.blog-hero h1, .article-title { font-family: var(--font-serif); color: var(--navy); font-size: clamp(38px, 5vw, 58px); line-height: 1.05; margin: 10px 0 16px; }
.blog-hero p, .article-lead { color: var(--muted); font-size: 17px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-card-meta, .article-meta { color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.blog-card h2 { font-family: var(--font-serif); color: var(--navy); font-size: 25px; line-height: 1.15; margin: 10px 0; }
.blog-card p:not(.blog-card-meta) { color: var(--muted); font-size: 14px; }
.blog-link { display: inline-block; color: var(--gold-dark); font-size: 14px; font-weight: 700; margin-top: 16px; }
.article-page { background: var(--white); padding: 52px 0 96px; }
.article-layout { width: min(1180px, 92%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 46px; align-items: start; }
.article-layout .article-shell { width: 100%; margin: 0; }
.blog-enquiry { position: sticky; top: 24px; margin-top: 52px; padding: 26px; background: var(--cream); border-top: 4px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.blog-enquiry h2 { font-family: var(--font-serif); color: var(--navy); font-size: 28px; line-height: 1.1; }.blog-enquiry > p { color: var(--muted); font-size: 14px; margin: 8px 0 20px; }.blog-footer { margin-top: 0; }
.article-shell { width: min(840px, 92%); margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 28px; }.breadcrumb a { color: var(--gold-dark); }
.article-cover { width: 100%; border-radius: var(--radius); aspect-ratio: 16 / 8; object-fit: cover; margin: 28px 0; }
.article-body { color: var(--text); font-size: 16px; }.article-body p { margin: 0 0 18px; }.article-body h2 { font-family: var(--font-serif); font-size: 32px; line-height: 1.15; color: var(--navy); margin: 38px 0 14px; }.article-body ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; }.article-body li { margin-bottom: 8px; }
.article-note { background: var(--cream); border-left: 4px solid var(--gold); padding: 18px 20px; border-radius: 0 8px 8px 0; font-size: 14px; margin: 28px 0; }.article-cta { margin-top: 36px; padding: 28px; border-radius: var(--radius); background: var(--navy); color: var(--white); }.article-cta h2 { color: var(--white); margin: 0 0 8px; }.article-cta p { color: rgba(255,255,255,.72); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .article-layout { display: block; width: 100%; }.article-layout .article-shell { width: min(840px, 92%); margin: 0 auto; }.blog-enquiry { position: static; width: min(560px, 92%); margin: 0 auto 72px; }.blog-nav { display: none; } }
@media (max-width: 640px) { .blog-page { padding: 42px 0 72px; }.blog-grid { grid-template-columns: 1fr; }.article-page { padding: 34px 0 72px; }.article-title { font-size: 38px; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .amenity-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 82vw);
    height: 100vh;
    height: 100dvh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--white); font-size: 17px; text-shadow: none; }
  .nav-hamburger { display: flex; position: relative; z-index: 1100; }
  .nav-mobile-group { display: flex; }
  .nav-cta { display: none; }

  .hero { min-height: calc(100svh - 78px); }

  .nav-yashada-logo { height: 34px; }
  .nav-logo-img { height: 52px; }
  .nav-brand-divider { height: 27px; }
  .hero-arrow { display: none; }

  .overview-grid { grid-template-columns: 1fr; gap: 44px; }
  .overview-badge { right: 12px; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: minmax(0, 460px); }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

  .mobile-sticky { display: flex; }
  .whatsapp-float { bottom: 74px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  body { padding-bottom: 0; }
}

@media (max-width: 640px) {
  .navbar { width: 92%; }
  .header,
  .header.scrolled { padding: 8px 0; }
  .nav-cta-mobile { display: none; }
  .nav-logo { gap: 9px; }
  .nav-yashada-logo { display: block; height: 38px; }
  .nav-brand-divider { display: block; height: 30px; }
  .nav-logo-img { display: block; height: 58px; }
  .nav-mobile-group {
    display: flex !important;
    position: static;
    margin-left: auto;
    flex: 0 0 38px;
    gap: 0;
    z-index: auto;
  }
  .nav-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .amenity-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .amenity-item { padding: 18px 8px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; column-gap: 12px; }
  .gallery-masonry-item { margin-bottom: 12px; }
  .about-stats { gap: 20px 24px; }
  .stat-num { font-size: 38px; }
  .contact-form-card { padding: 26px 20px; }
}

@media (max-width: 480px) {
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .popup-box { padding: 30px 22px 22px; }
}
