/* ============================================================
   MHADA CITY LANDING PAGE — style.css
   Bright & Modern Theme · Orange/Saffron + White
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #e85d04;
  --orange-light: #f48c06;
  --orange-pale: #fff3e0;
  --orange-bg: #fff8f0;
  --white: #ffffff;
  --off-white: #fafaf8;
  --ink: #1a1a2e;
  --ink-mid: #2d2d44;
  --grey: #6b7280;
  --grey-light: #9ca3af;
  --grey-border: #e5e7eb;
  --font-display: "Fraunces", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
nav.scrolled {
  border-color: var(--grey-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon img {
  height: 56px;
  width: auto;
  margin-left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo-text span {
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: #c94d00 !important;
  transform: translateY(-1px);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-left {
  position: relative;
  z-index: 2;
  padding: 4rem 5%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-pale);
  border: 1px solid rgba(232, 93, 4, 0.2);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.hero-title .accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 300;
}
.hero-title .underline-word {
  position: relative;
  display: inline-block;
}
.hero-title .underline-word::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}
.btn-orange {
  background: var(--orange);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.3);
}
.btn-orange:hover {
  background: #c94d00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--grey-border);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 500;
}
.trust-item .check {
  width: 18px;
  height: 18px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #16a34a;
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--grey-border);
}

/* Hero right — image stack */
.hero-right {
  position: relative;
  z-index: 2;
  padding: 4rem 5% 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-main {
  width: 100%;
  max-width: 540px;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-img-card {
  position: absolute;
  bottom: 3rem;
  left: 0;
  background: white;
  border-radius: 8px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
  min-width: 200px;
}
.hero-img-card-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-img-card-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-img-card-text span {
  font-size: 0.72rem;
  color: var(--grey);
  font-weight: 500;
}
.hero-img-card2 {
  position: absolute;
  top: 3.5rem;
  right: 1rem;
  background: var(--orange);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.7s 1.2s forwards;
}
.hero-img-card2 strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
}
.hero-img-card2 span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--ink);
  padding: 2rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  display: block;
}

/* ─── SECTION BASE ─── */
.section {
  padding: 6rem 5%;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
.section-title .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
}
.section-sub {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 520px;
  margin-top: 0.8rem;
}

/* ─── ABOUT ─── */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-imgs {
  position: relative;
}
.about-img1 {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.about-img2 {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid white;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.about-oc-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
  text-align: center;
}
.about-oc-badge strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about-oc-badge span {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}
.about-content {
  padding-bottom: 2rem;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.pill {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(232, 93, 4, 0.15);
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.2rem;
  border-left: 3px solid var(--orange);
}
.highlight-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.highlight-card p {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ─── SCHEMES ─── */
#schemes {
  background: var(--off-white);
}
.schemes-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.schemes-note {
  font-size: 0.82rem;
  color: var(--grey);
  max-width: 280px;
  text-align: right;
}
.schemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.scheme-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.scheme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.scheme-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.12);
}
.scheme-card-top {
  padding: 1.8rem 1.8rem 1.2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-border);
  position: relative;
}
.scheme-card.featured .scheme-card-top {
  background: linear-gradient(135deg, #fff3e0, #ffe8cc);
}
.scheme-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.scheme-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.scheme-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.scheme-plot {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.3rem;
}
.scheme-card-body {
  padding: 1.5rem 1.8rem;
}
.scheme-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}
.scheme-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey);
}
.scheme-specs {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--grey-border);
}
.scheme-spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
}
.scheme-spec-label {
  color: var(--grey);
}
.scheme-spec-val {
  font-weight: 600;
  color: var(--ink);
}
.scheme-rera {
  margin-top: 1.2rem;
  padding: 0.6rem 0.8rem;
  background: var(--orange-pale);
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--grey);
}
.scheme-rera strong {
  color: var(--orange);
}
.scheme-cta {
  display: block;
  width: 100%;
  margin-top: 1.2rem;
  padding: 0.75rem;
  text-align: center;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.scheme-cta:hover {
  background: var(--ink-mid);
}
.scheme-card.featured .scheme-cta {
  background: var(--orange);
}
.scheme-card.featured .scheme-cta:hover {
  background: #c94d00;
}

/* ─── FLOOR PLANS ─── */
#floorplans {
  background: white;
}
.fp-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.fp-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: 2px solid var(--grey-border);
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--grey);
  cursor: pointer;
  background: none;
  transition: all 0.2s;
}
.fp-tab.active {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}
.fp-tab:hover:not(.active) {
  border-color: var(--ink);
  color: var(--ink);
}
.fp-panel {
  display: none;
}
.fp-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.fp-visual {
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--grey-border);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.room-fill {
  fill: rgba(232, 93, 4, 0.06);
  stroke: rgba(232, 93, 4, 0.3);
  stroke-width: 1;
}
.room-fill-hi {
  fill: rgba(232, 93, 4, 0.14);
  stroke: var(--orange);
  stroke-width: 1.5;
}
.room-label {
  fill: #374151;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  text-anchor: middle;
}
.room-dim {
  fill: #9ca3af;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 7px;
  text-anchor: middle;
}
.fp-details h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.fp-sub {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
}
.fp-rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.fp-room {
  background: var(--off-white);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--grey-border);
}
.fp-room-name {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.3rem;
}
.fp-room-size {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.fp-area {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--orange);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
}
.fp-area-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.fp-area-label {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.4;
}

/* ─── AMENITIES ─── */
#amenities {
  background: var(--off-white);
}
.amenities-header {
  text-align: center;
  margin-bottom: 1rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.amenity-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.amenity-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(232, 93, 4, 0.1);
  transform: translateY(-4px);
}

/* Image area at top of card */
.amenity-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--orange-pale);
}
.amenity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.amenity-card:hover .amenity-img-wrap img {
  transform: scale(1.06);
}

/* Fallback shown when image fails to load */
.amenity-img-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--orange-pale), #ffd8b0);
}

.amenity-body {
  padding: 1.4rem 1.6rem 1.6rem;
}
.amenity-icon-small {
  width: 38px;
  height: 38px;
  background: var(--orange-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(232, 93, 4, 0.12);
}
.amenity-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.amenity-card p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--white);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 1rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--grey-border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.featured-testimonial {
  background: var(--ink);
  border-color: var(--ink);
}
.featured-testimonial .testimonial-text {
  color: rgba(255, 255, 255, 0.85);
}
.featured-testimonial .testimonial-author strong {
  color: white;
}
.featured-testimonial .testimonial-author span {
  color: rgba(255, 255, 255, 0.5);
}
.testimonial-stars {
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 2px;
}
.featured-testimonial .testimonial-stars {
  color: var(--orange-light);
}
.testimonial-text {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-border);
}
.featured-testimonial .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.testimonial-author-info {
  flex: 1;
}
.testimonial-author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}
.testimonial-author-info span {
  font-size: 0.75rem;
  color: var(--grey);
}
.testimonial-scheme-badge {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(232, 93, 4, 0.15);
  white-space: nowrap;
}
.featured-testimonial .testimonial-scheme-badge {
  background: rgba(232, 93, 4, 0.2);
  color: var(--orange-light);
  border-color: rgba(232, 93, 4, 0.3);
}

/* Stats row below testimonials */
.testimonials-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--grey-border);
}
.testimonials-stat {
  text-align: center;
}
.testimonials-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.testimonials-stat span {
  font-size: 0.75rem;
  color: var(--grey);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  display: block;
}
.testimonials-divider {
  width: 1px;
  height: 40px;
  background: var(--grey-border);
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--off-white);
}
.gallery-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(26, 26, 46, 0.3);
}
.gallery-overlay-icon {
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* ─── LOCATION ─── */
#location {
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.location-content {
  order: 1;
}
.location-map-wrap {
  order: 2;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  height: 440px;
}
.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.landmarks {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.landmark {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.landmark:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
}
.landmark-icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.landmark-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.landmark-text p {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 0.1rem;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-left {
  padding: 5rem 5%;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: "";
  position: absolute;
  bottom: -4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.contact-left::after {
  content: "";
  position: absolute;
  top: -3rem;
  left: -3rem;
  width: 10rem;
  height: 10rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.contact-left .section-tag {
  color: rgba(255, 255, 255, 0.7);
}
.contact-left .section-tag::before {
  background: rgba(255, 255, 255, 0.7);
}
.contact-left .section-title {
  color: white;
  font-size: 2.5rem;
}
.contact-left .section-sub {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-text h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.3rem;
}
.contact-text p,
.contact-text a {
  font-size: 0.9rem;
  color: white;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  font-weight: 500;
}
.contact-text a:hover {
  text-decoration: underline;
}
.contact-auth {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.contact-auth p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.contact-auth strong {
  color: white;
  display: block;
}
.contact-right {
  padding: 5rem 5%;
}
.contact-right h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
}
.contact-right > p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 6px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
  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);
  background: rgba(232, 93, 4, 0.08);
}
.form-group select option {
  background: var(--ink-mid);
  color: white;
}
.form-group textarea {
  resize: none;
  height: 100px;
}
.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 0.9rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  letter-spacing: 0.02em;
}
.form-submit:hover {
  background: #c94d00;
  transform: translateY(-1px);
}
.form-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 0.8rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.show {
  display: block;
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ─── FOOTER ─── */
footer {
  background: #0f1123;
  padding: 1.8rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: white;
}
.footer-logo span {
  color: var(--orange);
}
.footer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}
.footer-rera {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  line-height: 1.7;
}
.footer-rera strong {
  color: rgba(255, 255, 255, 0.5);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}
.reveal-d4 {
  transition-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
  }
  #hero::before {
    display: none;
  }
  .hero-right {
    display: none;
  }
  #about,
  #location {
    grid-template-columns: 1fr;
  }
  .about-imgs {
    display: none;
  }
  #contact {
    grid-template-columns: 1fr;
  }
  .schemes-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fp-panel.active {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-row: auto;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-footer {
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .fp-rooms {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-rera {
    text-align: center;
  }
  .testimonials-footer {
    flex-direction: column;
    gap: 1.5rem;
  }
  .testimonials-divider {
    width: 40px;
    height: 1px;
  }
}
