/* ============================================================
   NEW THANE DEVELOPERS — Design System & Styles
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Noto+Sans+Devanagari:wght@400;500;600&display=swap');

/* ---------- CSS Custom Properties (Brand Tokens) ---------- */
:root {
  /* Brand colors from logo */
  --purple: #3D1A5B;
  --magenta: #EC008C;
  --wine: #7C2150;
  --coral: #F7941E;
  --crimson: #E11E4D;
  --ink: #1A1A1A;
  --bg: #FFFFFF;
  --bg-soft: #F6F4F8;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #F7941E 0%, #EC008C 50%, #E11E4D 100%);
  --gradient-dark: linear-gradient(160deg, #3D1A5B 0%, #7C2150 100%);
  --gradient-hero-overlay: linear-gradient(160deg, rgba(61,26,91,0.88) 0%, rgba(124,33,80,0.82) 100%);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(61, 26, 91, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(61, 26, 91, 0.16);
  --shadow-glow: 0 0 30px rgba(236, 0, 140, 0.25);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* ---------- Inline SVG icons ---------- */
.icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-inline {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

/* Context sizing / colours */
.social-link { color: #fff; }
.social-link .icon { width: 18px; height: 18px; }

.fab .icon { width: 24px; height: 24px; }

.footer-action .icon { width: 22px; height: 22px; }

.mcta-icon .icon { width: 22px; height: 22px; }

.contact-detail-icon { color: #fff; }
.contact-detail-icon .icon { width: 20px; height: 20px; }

.drawer-cta-btn .icon { width: 20px; height: 20px; }

.footer-contact-item .icon { width: 16px; height: 16px; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--purple);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

/* Gradient text fill */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section heading */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-brand);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-heading p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section--soft {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--gradient-dark);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* Gradient divider between sections */
.section-divider {
  height: 3px;
  background: var(--gradient-brand);
  border: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(61, 26, 91, 0.08);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

/* Real logo image (replaces the old CSS-built mark) */
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

/* White logo over the transparent hero; full-colour once the nav frosts white */
.nav-logo .logo-color { display: none; }
.navbar.scrolled .nav-logo .logo-white { display: none; }
.navbar.scrolled .nav-logo .logo-color { display: block; }

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo .nav-logo-img { height: 52px; }
.drawer-logo .nav-logo-img { height: 34px; }

.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.nav-logo-text .new { color: var(--purple); }
.nav-logo-text .thane { color: var(--magenta); }
.nav-logo-text .developers { color: var(--wine); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; }

/* Nav on transparent hero */
.navbar:not(.scrolled) .nav-logo-text .new,
.navbar:not(.scrolled) .nav-logo-text .developers {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-links a {
  color: var(--purple);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition-medium);
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--magenta);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--magenta);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-medium);
}

.navbar.scrolled .hamburger span {
  background: var(--purple);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #fff;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: #fff;
}

/* ---------- Mobile slide-in drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 40, 0.5);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background: var(--gradient-dark);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-logo .nav-logo-icon {
  width: 38px;
  height: 38px;
  font-size: 17px;
}

.drawer-logo .nav-logo-text { font-size: 0.95rem; }
.drawer-logo .nav-logo-text .new,
.drawer-logo .nav-logo-text .developers { color: #fff; }
.drawer-logo .nav-logo-text .thane { color: var(--magenta); }

.drawer-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.drawer-close:hover { background: rgba(255, 255, 255, 0.22); }

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.drawer-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.drawer-links a:hover,
.drawer-links a:active,
.drawer-links a.active {
  color: var(--magenta);
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--magenta);
}

.drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-cta-btn {
  width: 100%;
}

.drawer-cta-wa {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes kenBurnsSoft {
  0% { transform: scale(1); }
  100% { transform: scale(1.035); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content h1 .word.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-subtitle span {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  margin: 4px 6px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-cta-group {
  position: absolute;
  left: 48px;
  bottom: 56px;
  z-index: 3;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Hero slide text rotator */
.hero-text-rotator {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
}

/* Stack every slide in the same grid cell so the rotator sizes itself to the
   tallest content and the active slide can never overlap the CTA buttons. */
.hero-text-slide {
  grid-area: 1 / 1;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.8s;
  width: 100%;
}

.hero-text-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  animation: scrollBounce 2s infinite;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  min-height: 44px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(236, 0, 140, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 0, 140, 0.45);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline-dark:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--gradient-brand);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.marquee-track span::after {
  content: '·';
  font-size: 1.4rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stats-strip {
  padding: 56px 0;
  background: var(--bg-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;
  padding: 28px 18px;
  background: var(--bg);
  border: 1px solid rgba(61, 26, 91, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 0, 140, 0.09);
  color: var(--magenta);
}

.stat-icon .icon {
  width: 26px;
  height: 26px;
}

/* number + suffix on one line, continuous gradient */
.stat-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-height: 46px;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-value--iso {
  align-items: center;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.about-image picture {
  display: contents;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.about-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 22px 0 26px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--purple);
}

.about-highlights li span {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================================
   PROJECT SPECIALITY (DARK BAND)
   ============================================================ */
.speciality-band {
  padding: 80px 0;
  text-align: center;
}

.speciality-band h2 {
  margin-bottom: 30px;
}

.speciality-band p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.9;
}

/* ============================================================
   PROJECT CARDS (Plots & Flats)
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.projects-grid.flats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: 1;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-card-image img {
  transform: scale(1.1);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.project-card-body {
  padding: 24px;
}

.project-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.project-card-body p {
  font-size: 0.92rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-body .btn {
  padding: 10px 28px;
  font-size: 0.85rem;
}

/* Swipe-carousel dot indicators (mobile only) */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8cfe0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  width: 22px;
  border-radius: 5px;
  background: var(--gradient-brand);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: transform var(--transition-medium);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.why-card p {
  font-size: 0.9rem;
}

.legal-band {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(61, 26, 91, 0.08);
}

.legal-band h3 {
  margin-bottom: 16px;
  color: var(--wine);
}

/* ============================================================
   BRAND AMBASSADOR
   ============================================================ */
.ambassador-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.ambassador-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 6px;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-card-hover);
  max-width: 460px;
}

.ambassador-frame picture {
  display: contents;
}

.ambassador-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 6px);
  background: var(--bg-soft);
}

.ambassador-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}

.ambassador-text h2 {
  margin-bottom: 20px;
}

.ambassador-text p {
  margin-bottom: 26px;
  font-size: 1.05rem;
}

/* Hero spokesperson cut-out (large desktop only) */
.hero-ambassador {
  display: none;
}

.project-card-image picture {
  display: contents;
}

/* ============================================================
   CONNECTIVITY
   ============================================================ */
.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.connectivity-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  background: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  border-left: 4px solid transparent;
  border-image: var(--gradient-brand) 1;
}

.connectivity-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-card-hover);
}

.connectivity-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.connectivity-icon picture {
  display: contents;
}

.connectivity-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.connectivity-card h4 {
  font-size: 1.05rem;
  color: var(--purple);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* Tighter vertical rhythm — no dead space above the cards */
#testimonials {
  padding: 64px 0;
}

.testimonial-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

/* 3-up scroll-snap track (2 on tablet, 1 on mobile) */
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 14px 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(61, 26, 91, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 28px 26px;
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

/* thin brand-gradient top border on hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.tcard-stars {
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  width: max-content;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 6px;
  right: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(236, 0, 140, 0.10);
  pointer-events: none;
  z-index: 0;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
}

.author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--purple);
  font-size: 0.95rem;
}

.author-loc {
  font-size: 0.8rem;
  color: #8a8a8a;
  font-weight: 500;
}

/* Devanagari (Marathi / Hindi) reviews render in a proper script font */
.testimonial-card blockquote:lang(mr),
.testimonial-card blockquote:lang(hi) {
  font-family: 'Noto Sans Devanagari', var(--font-body);
  font-style: normal;
  line-height: 1.7;
  -webkit-line-clamp: 7;
}

/* Subtle staggered fade-in when the carousel scrolls into view */
.testimonial-carousel.visible .testimonial-card {
  animation: tcardFade 0.5s ease both;
}
.testimonial-carousel.visible .testimonial-card:nth-child(1) { animation-delay: 0.05s; }
.testimonial-carousel.visible .testimonial-card:nth-child(2) { animation-delay: 0.11s; }
.testimonial-carousel.visible .testimonial-card:nth-child(3) { animation-delay: 0.17s; }
.testimonial-carousel.visible .testimonial-card:nth-child(4) { animation-delay: 0.23s; }
.testimonial-carousel.visible .testimonial-card:nth-child(5) { animation-delay: 0.29s; }
.testimonial-carousel.visible .testimonial-card:nth-child(6) { animation-delay: 0.35s; }

@keyframes tcardFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Controls: arrows + dots */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.tcarousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(61, 26, 91, 0.18);
  background: #fff;
  color: var(--purple);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
  flex-shrink: 0;
}

.tcarousel-arrow:hover {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.tcarousel-arrow:active {
  transform: scale(0.94);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8cfe0;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  width: 26px;
  border-radius: 5px;
  background: var(--gradient-brand);
}

/* Tablet: 2 cards */
@media (max-width: 1023px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* Mobile: 1 card, swipeable with a small peek */
@media (max-width: 767px) {
  .testimonial-card {
    flex: 0 0 88%;
  }
  .testimonial-controls {
    gap: 14px;
  }
}

/* ============================================================
   VIDEO GALLERY
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: all var(--transition-medium);
  z-index: 2;
  pointer-events: none;
}

.video-play-btn::after {
  content: '▶';
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: transform var(--transition-medium);
  padding-left: 4px;
}

.video-card:hover .video-play-btn::after {
  transform: scale(1.15);
}

/* Photo gallery masonry placeholder */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.gallery-masonry h3 {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  border: 2px dashed #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   CONTACT / ENQUIRY
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  color: #fff;
}

.contact-info h3 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--magenta);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-detail a {
  color: rgba(255, 255, 255, 0.85);
}

.contact-detail a:hover {
  color: var(--magenta);
}

/* Enquiry form */
.enquiry-form {
  padding: 40px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.enquiry-form h3 {
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e4ee;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all var(--transition-fast);
  background: var(--bg);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233D1A5B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gradient-dark);
  padding: 80px 0 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .nav-logo-text {
  margin-bottom: 20px;
}

.footer-brand .nav-logo-text .new { color: #fff; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gradient-brand);
  transform: translateY(-3px);
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--magenta);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item span:first-child {
  font-size: 1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--magenta);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* One-line address + big action buttons — shown on mobile only */
.footer-mini-address { display: none; }

.footer-actions {
  display: none;
  gap: 10px;
  margin: 4px 0 20px;
}

.footer-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 56px;
  padding: 10px 6px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition-fast);
}

.footer-action span { font-size: 0.78rem; }
.footer-action:active { background: rgba(255, 255, 255, 0.18); }

/* Accordion chevron — hidden on desktop, shown on mobile */
.footer-col-title::before {
  display: none;
}

/* ============================================================
   STICKY MOBILE CONVERSION BAR (phones only — hidden by default)
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1003;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -4px 20px rgba(61, 26, 91, 0.12);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}

.mcta {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  color: #fff;
}

.mcta-icon { font-size: 1.15rem; line-height: 1; }
.mcta-label { line-height: 1; }
.mcta:active { transform: scale(0.97); }

.mcta-call { background: var(--purple); }
.mcta-wa { background: #25D366; }
.mcta-enquire { background: var(--gradient-brand); }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: none;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fab-call {
  background: var(--purple);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-enquiry {
  background: var(--gradient-brand);
}

/* Tooltip */
.fab::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.fab:hover::before {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="slide-left"] {
  transform: translateX(-60px);
}

[data-animate="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="slide-right"] {
  transform: translateX(60px);
}

[data-animate="slide-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="scale-up"] {
  transform: scale(0.9);
}

[data-animate="scale-up"].visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children [data-animate] {
  transition-delay: calc(var(--stagger-index, 0) * 0.12s);
}

/* ============================================================
   REGISTRATION & BOOKING MOMENTS — auto-scroll photo wall
   ============================================================ */
.moments-section {
  padding: 64px 0;
  overflow: hidden;
}

/* Booking / Registration tabs */
.moments-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.moments-tab {
  padding: 12px 34px;
  min-height: 46px;
  border-radius: 100px;
  border: 2px solid rgba(61, 26, 91, 0.15);
  background: var(--bg);
  color: var(--purple);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.moments-tab:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.moments-tab.active {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(236, 0, 140, 0.3);
}

/* Photo grid */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.moments-grid[hidden] {
  display: none;
}

/* More button */
.moments-more {
  text-align: center;
  margin-top: 34px;
}

.moment-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.moment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.moment-card picture {
  display: contents;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moment-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.moment-card:not(.placeholder)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 16, 40, 0.35), transparent 45%);
}

/* Placeholder tiles (until real photos are added) */
.moment-card.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed rgba(61, 26, 91, 0.15);
  box-shadow: none;
  color: #b1a3c4;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: default;
}

.moment-card.placeholder .icon {
  width: 34px;
  height: 34px;
}

/* Lightbox */
.moments-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 16, 40, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 20px;
}

.moments-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.ml-image {
  max-width: min(920px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.moments-lightbox.active .ml-image {
  transform: scale(1);
}

.ml-close,
.ml-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.ml-close:hover,
.ml-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.ml-close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
}

.ml-close .icon {
  width: 22px;
  height: 22px;
}

.ml-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
  font-family: var(--font-heading);
}

.ml-prev { left: 16px; }
.ml-next { right: 16px; }

/* ============================================================
   WELCOME ENQUIRY POPUP
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.entry-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(26, 16, 40, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.entry-overlay.active {
  opacity: 1;
  visibility: visible;
}

.entry-modal {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: var(--bg);
  border-radius: 20px;
  padding: 34px 28px 26px;
  box-shadow: 0 30px 70px rgba(26, 16, 40, 0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  margin: auto;
}

.entry-overlay.active .entry-modal {
  transform: translateY(0) scale(1);
}

/* brand gradient strip on top */
.entry-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-brand);
}

.entry-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(61, 26, 91, 0.07);
  color: var(--purple);
  cursor: pointer;
  transition: background var(--transition-fast);
  z-index: 2;
}

.entry-close:hover {
  background: rgba(61, 26, 91, 0.15);
}

.entry-close .icon {
  width: 20px;
  height: 20px;
}

.entry-head {
  text-align: center;
  margin-bottom: 22px;
}

.entry-logo {
  height: 42px;
  width: auto;
  margin: 0 auto 14px;
  display: block;
}

.entry-head h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.entry-head p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.55;
}

.entry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.entry-field {
  display: flex;
  flex-direction: column;
}

.entry-form input,
.entry-form select {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 2px solid #e8e4ee;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: all var(--transition-fast);
}

.entry-form input:focus,
.entry-form select:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.1);
}

.entry-form input.invalid {
  border-color: var(--crimson);
}

.entry-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233D1A5B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.entry-error {
  font-size: 0.78rem;
  color: var(--crimson);
  margin-top: 5px;
  min-height: 0;
}

.entry-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px;
  font-size: 1rem;
}

.entry-or {
  position: relative;
  text-align: center;
  margin: 20px 0 14px;
}

.entry-or::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(61, 26, 91, 0.12);
}

.entry-or span {
  position: relative;
  background: var(--bg);
  padding: 0 12px;
  font-size: 0.78rem;
  color: #999;
  font-family: var(--font-heading);
}

.entry-quick {
  display: flex;
  gap: 10px;
}

.entry-quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  transition: transform var(--transition-fast);
}

.entry-quick-btn:active { transform: scale(0.97); }
.entry-quick-btn .icon { width: 18px; height: 18px; }
.entry-call { background: var(--purple); }
.entry-wa { background: #25D366; }

/* Success state */
.entry-success {
  display: none;
  text-align: center;
  padding: 18px 0 8px;
}

.entry-success.show { display: block; }

.entry-check {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.entry-success h3 { margin-bottom: 8px; }
.entry-success p { color: #666; font-size: 0.95rem; }

/* Mobile — near full-width sheet */
@media (max-width: 600px) {
  .entry-overlay { padding: 14px; align-items: flex-end; }
  .entry-modal {
    max-width: 100%;
    padding: 30px 20px 22px;
    border-radius: 20px;
    transform: translateY(40px);
  }
  .entry-head h3 { font-size: 1.3rem; }
  .entry-head p { font-size: 0.87rem; }
  .entry-logo { height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .entry-modal { transform: none !important; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .projects-grid,
  .projects-grid.flats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .connectivity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px 0;
    --container-padding: 0 20px;
  }

  /* Leave room for the fixed conversion bar */
  body {
    padding-bottom: 70px;
  }

  /* ---- Slim sticky header ---- */
  .navbar {
    padding: 10px 0;
  }
  .navbar.scrolled {
    padding: 8px 0;
  }
  .navbar .nav-logo-img {
    height: 34px;
  }
  .footer-logo .nav-logo-img {
    height: 46px;
  }
  .hamburger {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    box-sizing: border-box;
  }

  /* ---- Hero: single centered column, CTA in flow ---- */
  .hero {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 80px 0 36px;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-content h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
  }
  .hero-subtitle span {
    font-size: 0.8rem;
    margin: 3px 4px;
  }
  .hero-cta-group {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 20px;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
  .hero-cta-group .btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 20px;
  }
  /* Gentler Ken Burns on phones */
  .hero-slide img {
    animation: kenBurnsSoft 26s ease-in-out infinite alternate;
  }
  /* Hide the decorative scroll cue so it can't sit under the conversion bar */
  .scroll-cue {
    display: none;
  }

  /* ---- Stat strip: 2 columns ---- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stats-grid .stat-item:last-child {
    grid-column: 1 / -1;
  }

  /* ---- Stack everything to one column ---- */
  .why-grid,
  .connectivity-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* ---- Plots & Flats: horizontal swipe carousel ---- */
  .projects-grid,
  .projects-grid.flats-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 6px 20px 10px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .projects-grid::-webkit-scrollbar {
    display: none;
  }
  .project-card {
    flex: 0 0 84%;
    min-width: 84%;
    scroll-snap-align: center;
  }
  .carousel-dots {
    display: flex;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .testimonial-card {
    padding: 32px 20px;
  }

  .contact-info,
  .enquiry-form {
    padding: 28px 20px;
  }

  .about-image img {
    min-height: 240px !important;
  }

  /* Brand ambassador → single column, photo on top */
  .ambassador-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .ambassador-text {
    text-align: center;
  }
  .ambassador-frame {
    margin: 0 auto;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---- Bigger, zoom-safe form fields ---- */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 14px 16px;
  }
  .form-group textarea {
    min-height: 110px;
  }

  /* ---- Larger tap targets in footer link lists ---- */
  .footer-links a {
    display: inline-block;
    padding: 8px 0;
  }

  /* ---- Lighter, faster scroll reveals ---- */
  [data-animate] {
    transform: translateY(20px);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
  [data-animate="slide-left"],
  [data-animate="slide-right"],
  [data-animate="scale-up"] {
    transform: translateY(20px);
  }
  .stagger-children [data-animate] {
    transition-delay: calc(var(--stagger-index, 0) * 0.06s);
  }

  /* Slow the marquee slightly */
  .marquee-track {
    animation-duration: 50s;
  }

  /* Moments — 2-column grid + tighter tabs on phones */
  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .moments-tabs {
    gap: 10px;
    margin-bottom: 24px;
  }
  .moments-tab {
    flex: 1;
    max-width: 180px;
    padding: 11px 20px;
    font-size: 0.9rem;
  }
  .ml-nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
  .ml-prev { left: 8px; }
  .ml-next { right: 8px; }

  /* ---- Conversion bar on, floating cluster off (no duplication) ---- */
  .mobile-cta-bar {
    display: flex;
  }
  .floating-actions {
    display: none;
  }

  /* ============================================================
     FOOTER — compact collapsible accordions
     ============================================================ */
  .footer {
    padding-top: 44px;
  }
  .footer-desc {
    display: none;
  }
  .footer-mini-address {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .footer-actions {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 20px;
  }
  .footer-brand {
    margin-bottom: 12px;
  }
  .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-col-title {
    margin: 0;
    padding: 16px 2px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  /* Replace the underline accent with a rotating chevron */
  .footer .footer-col-title::after {
    content: '';
    position: static;
    width: 9px;
    height: 9px;
    margin: 0 4px 0 0;
    background: none;
    border-right: 2px solid rgba(255, 255, 255, 0.75);
    border-bottom: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 0;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }
  .footer .footer-col.open .footer-col-title::after {
    transform: rotate(-135deg);
  }
  .footer-col-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .footer-col.open .footer-col-body {
    max-height: 460px;
    padding-bottom: 14px;
  }
}

@media (max-width: 400px) {
  .hero-cta-group .btn {
    font-size: 0.85rem;
    padding: 13px 14px;
  }
  .mcta-label {
    font-size: 0.68rem;
  }
  .stat-value {
    font-size: 1.9rem;
  }
}

/* ============================================================
   HERO SPOKESPERSON ACCENT (large desktop only)
   ============================================================ */
@media (min-width: 1200px) {
  .hero-ambassador {
    display: block;
    position: absolute;
    right: 1.5%;
    bottom: 0;
    z-index: 2;
    width: min(33vw, 500px);
    pointer-events: none;
    filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.4));
  }
  .hero-ambassador img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .hero-slide img {
    animation: none;
  }

  .marquee-track {
    animation: none;
  }

  .photo-wall-track {
    animation: none;
  }
}
