
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --saffron: #D4732A;
  --cream: #FAF6EE;
  --cream-dark: #F0E8D8;
  --earth: #2C1A0E;
  --earth-mid: #4A2E1A;
  --earth-light: #7A5535;
  --white: #FFFDF8;
  --text-primary: #1A0F06;
  --text-secondary: #5C3D1E;
  --text-muted: #9A7A5A;
  --border: rgba(201,169,110,0.25);
  --border-strong: rgba(201,169,110,0.5);
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-deva: 'Noto Sans Devanagari', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── PAGE SYSTEM ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--earth);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 7px 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.top-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.marquee-wrap { overflow: hidden; flex: 1; mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent); }
.marquee-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span { color: var(--gold); font-family: var(--font-body); font-weight: 300; letter-spacing: 0.12em; font-size: 11px; text-transform: uppercase; }
.marquee-track span::before { content: '✦ '; color: var(--saffron); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.top-contacts { display: flex; gap: 24px; align-items: center; flex-shrink: 0; }
.top-contacts a { color: var(--gold-light); text-decoration: none; font-size: 12px; opacity: 0.85; transition: opacity 0.2s; }
.top-contacts a:hover { opacity: 1; }

/* ─── NAV ─── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
  background: rgba(255,253,248,0.96);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-wrap { display: flex; flex-direction: column; cursor: pointer; text-decoration: none; }
.logo-text { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--earth); letter-spacing: 0.02em; line-height: 1; }
.logo-sub { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--earth); }
.nav-link::after { content: ''; position: absolute; bottom: -1px; left: 14px; right: 14px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--earth);
  color: var(--gold-light) !important;
  padding: 10px 22px !important;
  border-radius: 3px;
  letter-spacing: 0.1em;
  font-size: 12px !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--saffron) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  min-width: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 20px 60px rgba(44,26,14,0.12);
}
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-col h6 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.dropdown-col a { display: block; font-size: 13px; color: var(--text-secondary); text-decoration: none; padding: 5px 0; transition: color 0.2s; cursor: pointer; }
.dropdown-col a:hover { color: var(--earth); }
.dropdown-col a .badge { font-size: 9px; background: var(--saffron); color: #fff; padding: 2px 6px; border-radius: 2px; margin-left: 6px; letter-spacing: 0.08em; vertical-align: middle; }

/* ─── MOBILE NAV ─── */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.mobile-menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--earth); transition: var(--transition); }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--earth); z-index: 300; padding: 80px 40px 40px; overflow-y: auto; }
.mobile-nav.open { display: flex; flex-direction: column; gap: 24px; }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--gold); font-size: 28px; cursor: pointer; }
.mobile-nav a { color: var(--gold-light); text-decoration: none; font-family: var(--font-display); font-size: 26px; font-weight: 300; letter-spacing: 0.03em; transition: color 0.2s; cursor: pointer; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-sub { font-family: var(--font-body); font-size: 14px; color: var(--gold); opacity: 0.7; margin-left: 16px; margin-top: 4px; display: block; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 94vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: zoomSlide 8s ease forwards;
}
.hero-slide.active .hero-slide-bg { animation: zoomSlide 8s ease forwards; }
@keyframes zoomSlide { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,26,14,0.75) 0%, rgba(44,26,14,0.35) 60%, rgba(44,26,14,0.1) 100%); }
.hero-content { position: relative; z-index: 10; max-width: 1300px; margin: 0 auto; padding: 0 40px; width: 100%; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(48px, 7vw, 90px); font-weight: 300; color: var(--white); line-height: 1.08; margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 16px; color: rgba(255,253,248,0.75); max-width: 520px; line-height: 1.75; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold);
  color: var(--earth);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 36px;
  border: 1px solid rgba(255,253,248,0.5);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 40px;
  display: flex;
  gap: 48px;
  z-index: 10;
}
.hero-stat { text-align: right; }
.hero-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 11px; color: rgba(255,253,248,0.65); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.slide-dots { position: absolute; bottom: 48px; left: 40px; display: flex; gap: 8px; z-index: 10; }
.slide-dot { width: 24px; height: 2px; background: rgba(255,253,248,0.3); cursor: pointer; transition: background 0.3s, width 0.3s; border: none; }
.slide-dot.active { background: var(--gold); width: 48px; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,253,248,0.5); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; z-index: 10; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ─── SECTIONS ─── */
section { padding: 100px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(34px, 4vw, 58px); font-weight: 300; color: var(--earth); line-height: 1.15; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--saffron); }
.section-body { font-size: 16px; color: var(--text-secondary); line-height: 1.8; max-width: 620px; font-weight: 300; }
.divider-gold { width: 60px; height: 1px; background: var(--gold); margin: 24px 0; }

/* ─── INTRO ─── */
.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-image-wrap { position: relative; }
.intro-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.intro-image-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #C9A96E22 0%, #D4732A22 50%, #2C1A0E22 100%);
}
.intro-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gold); opacity: 0.35; font-size: 80px; }
.intro-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  background: var(--earth);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-align: center;
}
.intro-badge-num { font-family: var(--font-display); font-size: 36px; font-weight: 300; line-height: 1; }
.intro-badge-label { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; opacity: 0.7; }
.intro-quote { font-family: var(--font-display); font-size: 22px; font-style: italic; color: var(--earth); line-height: 1.5; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 32px 0; }
.intro-quote cite { font-style: normal; font-family: var(--font-body); font-size: 12px; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; display: block; margin-top: 12px; }
.value-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.value-pill { padding: 8px 16px; border: 1px solid var(--border-strong); font-size: 12px; color: var(--text-secondary); letter-spacing: 0.06em; display: flex; align-items: center; gap: 8px; }
.value-pill::before { content: '✦'; color: var(--gold); font-size: 10px; }

/* ─── PROJECTS GRID ─── */
.projects-section { background: var(--cream); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(44,26,14,0.12); }
.project-card-image {
  height: 260px;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}
.project-card-image-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.3;
}
.project-card:hover .project-card-image-inner { transform: scale(1.05); }
.project-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,26,14,0.7) 0%, transparent 50%); }
.project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  color: var(--earth);
}
.status-selling { background: var(--gold); }
.status-ready { background: #E8F5E9; color: #2E7D32 !important; }
.status-flagship { background: var(--cream); color: var(--earth) !important; }
.project-card-body { padding: 24px; }
.project-card-location { font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.project-card-name { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--earth); margin-bottom: 12px; line-height: 1.2; }
.project-card-specs { display: flex; gap: 20px; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.spec-item { flex: 1; }
.spec-val { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--earth); }
.spec-label { font-size: 10px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.project-card-link { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; display: flex; align-items: center; gap: 8px; text-decoration: none; transition: gap 0.2s; cursor: pointer; background: none; border: none; }
.project-card-link:hover { gap: 14px; }

/* ─── FEATURED PROJECT ─── */
.featured-section { background: var(--earth); overflow: hidden; padding: 0; }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.featured-image { position: relative; overflow: hidden; min-height: 500px; }
.featured-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C9A96E33, #D4732A22, #2C1A0E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.2;
}
.featured-image-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.featured-content { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.featured-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 16px; }
.featured-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 54px); color: var(--gold-light); font-weight: 300; line-height: 1.1; margin-bottom: 8px; }
.featured-subtitle { font-family: var(--font-deva); font-size: 20px; color: var(--gold); margin-bottom: 20px; }
.featured-desc { font-size: 15px; color: rgba(255,253,248,0.65); line-height: 1.8; font-weight: 300; margin-bottom: 36px; }
.featured-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.featured-metric { padding: 16px; border: 1px solid rgba(201,169,110,0.2); }
.featured-metric-val { font-family: var(--font-display); font-size: 28px; color: var(--gold); font-weight: 300; }
.featured-metric-label { font-size: 11px; color: rgba(255,253,248,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* ─── AMENITIES ─── */
.amenities-section { background: var(--white); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; background: var(--border); }
.amenity-card { background: var(--white); padding: 36px 28px; transition: background var(--transition); }
.amenity-card:hover { background: var(--cream); }
.amenity-icon { width: 48px; height: 48px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; color: var(--gold); }
.amenity-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--earth); margin-bottom: 8px; }
.amenity-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 60px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); padding: 36px; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--font-display); font-size: 80px; color: var(--gold); opacity: 0.2; position: absolute; top: 16px; left: 24px; line-height: 1; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--earth); line-height: 1.6; margin-bottom: 24px; position: relative; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dark); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; color: var(--earth); font-weight: 500; }
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--earth); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ─── INVESTMENT SECTION ─── */
.investment-section { background: var(--cream-dark); }
.investment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.investment-reasons { list-style: none; margin-top: 32px; }
.investment-reason { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.investment-reason:last-child { border-bottom: none; }
.reason-num { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--gold); opacity: 0.5; line-height: 1; min-width: 40px; }
.reason-content h4 { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--earth); margin-bottom: 6px; }
.reason-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.investment-form-card { background: var(--white); border: 1px solid var(--border); padding: 40px; }
.investment-form-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--earth); margin-bottom: 6px; }
.investment-form-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  background: var(--cream);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  background: var(--earth);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 8px;
}
.btn-submit:hover { background: var(--saffron); }

/* ─── WHY AAROHI ─── */
.why-section { background: var(--earth); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; background: rgba(201,169,110,0.15); }
.why-card { background: var(--earth); padding: 40px 28px; transition: background 0.3s; }
.why-card:hover { background: var(--earth-mid); }
.why-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--gold); opacity: 0.25; line-height: 1; margin-bottom: 16px; }
.why-title { font-family: var(--font-display); font-size: 20px; color: var(--gold-light); font-weight: 400; margin-bottom: 10px; }
.why-desc { font-size: 13px; color: rgba(255,253,248,0.5); line-height: 1.7; }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--gold); padding: 50px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(44,26,14,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 52px; font-weight: 300; color: var(--earth); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--earth-mid); margin-top: 6px; font-weight: 500; }

/* ─── TIMELINE ─── */
.timeline-section { background: var(--white); }
.timeline { position: relative; margin-top: 60px; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--border-strong); transform: translateX(-50%); }
.timeline-item { display: flex; gap: 60px; margin-bottom: 60px; position: relative; align-items: flex-start; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item:nth-child(even) .timeline-content { text-align: right; }
.timeline-dot { position: absolute; left: 50%; top: 8px; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; transform: translateX(-50%); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.timeline-content { flex: 1; padding: 0 40px; }
.timeline-year { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.timeline-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--earth); margin-bottom: 8px; }
.timeline-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── PAYMENT PLANS ─── */
.payment-section { background: var(--cream); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.plan-card { background: var(--white); border: 1px solid var(--border); padding: 36px; text-align: center; position: relative; transition: transform var(--transition); cursor: pointer; }
.plan-card:hover { transform: translateY(-4px); }
.plan-card.popular { border-color: var(--gold); }
.plan-card.popular::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--earth); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; }
.plan-duration { font-family: var(--font-display); font-size: 64px; font-weight: 300; color: var(--earth); line-height: 1; }
.plan-unit { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.plan-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }
.plan-steps { list-style: none; margin-bottom: 28px; text-align: left; }
.plan-steps li { font-size: 13px; color: var(--text-secondary); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; }
.plan-steps li::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; margin-top: 3px; }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.service-card { background: var(--white); border: 1px solid var(--border); padding: 40px 32px; }
.service-icon { width: 60px; height: 60px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 28px; }
.service-name { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--earth); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; }

/* ─── HOW IT WORKS ─── */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 32px; left: 60px; right: 60px; height: 1px; background: var(--border-strong); z-index: 0; }
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num-wrap { width: 64px; height: 64px; background: var(--white); border: 1px solid var(--border-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-num { font-family: var(--font-display); font-size: 24px; font-weight: 300; color: var(--gold); }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--earth); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── CRM PAGE ─── */
.crm-hero { background: var(--earth); padding: 120px 0 80px; }
.crm-dashboard { background: rgba(255,253,248,0.05); border: 1px solid rgba(201,169,110,0.2); border-radius: 4px; padding: 28px; margin-top: 60px; }
.crm-dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.crm-metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.crm-metric { background: rgba(255,253,248,0.05); border: 1px solid rgba(201,169,110,0.15); padding: 20px; }
.crm-metric-label { font-size: 11px; letter-spacing: 0.1em; color: rgba(255,253,248,0.5); text-transform: uppercase; margin-bottom: 8px; }
.crm-metric-val { font-family: var(--font-display); font-size: 36px; color: var(--gold); font-weight: 300; }
.crm-metric-change { font-size: 12px; color: #4CAF50; margin-top: 4px; }
.crm-features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 60px; }
.crm-feature { background: rgba(255,253,248,0.04); border: 1px solid rgba(201,169,110,0.1); padding: 28px 20px; transition: background 0.2s; }
.crm-feature:hover { background: rgba(201,169,110,0.08); }
.crm-feature-icon { font-size: 28px; margin-bottom: 14px; }
.crm-feature-name { font-family: var(--font-display); font-size: 16px; color: var(--gold-light); font-weight: 400; margin-bottom: 8px; }
.crm-feature-desc { font-size: 12px; color: rgba(255,253,248,0.45); line-height: 1.6; }
.crm-industries { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.industry-tag { padding: 8px 18px; border: 1px solid rgba(201,169,110,0.2); font-size: 13px; color: rgba(255,253,248,0.6); transition: border-color 0.2s, color 0.2s; cursor: default; }
.industry-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PARTNER PAGE ─── */
.partner-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.partner-tier { background: var(--white); border: 1px solid var(--border); padding: 40px 32px; text-align: center; }
.tier-icon { font-size: 40px; margin-bottom: 20px; }
.tier-name { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--earth); margin-bottom: 10px; }
.tier-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.tier-perks { list-style: none; text-align: left; }
.tier-perks li { font-size: 13px; color: var(--text-secondary); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.tier-perks li::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; margin-top: 3px; }

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 60px; }
.gallery-item { aspect-ratio: 4/3; background: var(--cream-dark); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2; }
.gallery-item-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--gold); opacity: 0.25; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-item-inner { transform: scale(1.05); opacity: 0.4; }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(44,26,14,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { background: rgba(44,26,14,0.3); }
.gallery-item-label { color: var(--white); font-family: var(--font-display); font-size: 18px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-label { opacity: 1; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.contact-info h3 { font-family: var(--font-display); font-size: 30px; font-weight: 300; color: var(--earth); margin-bottom: 30px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--cream-dark); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-val { font-size: 15px; color: var(--earth); font-weight: 400; }
.contact-detail a { color: var(--earth); text-decoration: none; }
.map-placeholder { height: 240px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; border: 1px solid var(--border); margin-top: 28px; position: relative; }
.map-pin { font-size: 36px; display: block; margin-bottom: 8px; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn { width: 44px; height: 44px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: background 0.2s, border-color 0.2s; text-decoration: none; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); }

/* ─── CAREERS ─── */
.careers-roles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.role-card { background: var(--white); border: 1px solid var(--border); padding: 32px; display: flex; gap: 20px; align-items: flex-start; cursor: pointer; transition: border-color 0.2s; }
.role-card:hover { border-color: var(--gold); }
.role-icon { font-size: 28px; flex-shrink: 0; }
.role-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--earth); margin-bottom: 6px; }
.role-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.role-meta { display: flex; gap: 12px; margin-top: 12px; }
.role-tag { font-size: 10px; padding: 3px 10px; background: var(--cream-dark); color: var(--text-muted); letter-spacing: 0.06em; }

/* ─── INSIGHTS/BLOG ─── */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.insight-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; cursor: pointer; transition: transform 0.3s; }
.insight-card:hover { transform: translateY(-4px); }
.insight-card-image { height: 200px; background: var(--cream-dark); position: relative; display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--gold); opacity: 0.3; }
.insight-card-body { padding: 24px; }
.insight-cat { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.insight-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--earth); margin-bottom: 10px; line-height: 1.3; }
.insight-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.insight-meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; }

/* ─── CTA SECTION ─── */
.cta-section { background: var(--earth); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 300; color: var(--gold-light); line-height: 1.1; margin-bottom: 16px; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 16px; color: rgba(255,253,248,0.55); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; font-weight: 300; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa { background: #25D366; color: #fff; font-family: var(--font-body); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 16px 36px; border: none; cursor: pointer; transition: background var(--transition); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-wa:hover { background: #1DA851; }

/* ─── FOOTER ─── */
footer { background: #150C04; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 14px; color: rgba(255,253,248,0.4); line-height: 1.75; margin-top: 16px; max-width: 280px; font-weight: 300; }
.footer-col h6 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,169,110,0.15); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,253,248,0.45); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 13px; color: rgba(255,253,248,0.45); }
.footer-contact-item a { color: rgba(255,253,248,0.45); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(201,169,110,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-bottom p { font-size: 12px; color: rgba(255,253,248,0.25); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,253,248,0.25); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-deva { font-family: var(--font-deva); font-size: 22px; color: var(--gold); margin-top: 4px; letter-spacing: 0.05em; }

/* ─── FLOATING ELEMENTS ─── */
.float-bar {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  z-index: 500;
  box-shadow: 0 8px 40px rgba(44,26,14,0.25);
}
.float-btn {
  background: var(--earth);
  color: var(--gold-light);
  border: none;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(201,169,110,0.15);
  text-decoration: none;
}
.float-btn:last-child { border-right: none; }
.float-btn:hover { background: var(--saffron); }
.float-btn.wa { background: #25D366; }
.float-btn.wa:hover { background: #1DA851; }

/* ─── ENQUIRY MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,26,14,0.7);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { background: var(--earth); padding: 28px 36px; display: flex; justify-content: space-between; align-items: flex-start; }
.modal-title { font-family: var(--font-display); font-size: 26px; font-weight: 300; color: var(--gold-light); }
.modal-sub { font-size: 13px; color: rgba(255,253,248,0.5); margin-top: 4px; }
.modal-close { background: none; border: none; color: var(--gold); font-size: 24px; cursor: pointer; line-height: 1; margin-left: 20px; flex-shrink: 0; }
.modal-tabs { display: flex; border-bottom: 1px solid var(--border); }
.modal-tab { flex: 1; padding: 14px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--font-body); font-weight: 500; }
.modal-tab.active { color: var(--earth); border-bottom-color: var(--gold); }
.modal-body { padding: 32px 36px; }
.modal-form { display: none; }
.modal-form.active { display: block; }
.success-msg { background: var(--cream); border: 1px solid var(--gold); padding: 20px; text-align: center; color: var(--earth); font-family: var(--font-display); font-size: 18px; display: none; margin-top: 16px; }

/* ─── PAGE HEROES ─── */
.page-hero { background: var(--earth); padding: 100px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.06) 0%, transparent 60%); }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { font-size: 12px; color: rgba(255,253,248,0.35); letter-spacing: 0.08em; margin-bottom: 20px; display: flex; gap: 8px; align-items: center; }
.breadcrumb span { color: var(--gold); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 70px); font-weight: 300; color: var(--gold-light); line-height: 1.1; margin-bottom: 14px; }
.page-hero-sub { font-size: 16px; color: rgba(255,253,248,0.5); max-width: 560px; line-height: 1.7; font-weight: 300; }

/* ─── PROJECT DETAIL ─── */
.project-detail-hero { position: relative; height: 70vh; min-height: 500px; display: flex; align-items: flex-end; overflow: hidden; }
.project-detail-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 160px; color: var(--gold); opacity: 0.08; }
.project-detail-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,26,14,0.9) 0%, rgba(44,26,14,0.2) 60%, transparent 100%); }
.project-detail-content { position: relative; z-index: 2; padding: 0 0 60px; }
.project-detail-content .container { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.project-detail-specs { display: flex; gap: 32px; }
.project-detail-spec { color: rgba(255,253,248,0.6); }
.project-detail-spec-val { font-family: var(--font-display); font-size: 26px; color: var(--gold); font-weight: 300; }
.project-detail-spec-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

/* ─── ABOUT VALUES ─── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.value-card { border: 1px solid var(--border); padding: 32px 24px; text-align: center; transition: border-color 0.2s; }
.value-card:hover { border-color: var(--gold); }
.value-num { font-family: var(--font-display); font-size: 52px; font-weight: 300; color: var(--gold); opacity: 0.3; margin-bottom: 12px; }
.value-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--earth); margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── NOTIFICATION TOAST ─── */
.toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--earth); color: var(--gold-light); padding: 14px 28px; font-size: 13px; z-index: 900; opacity: 0; transition: opacity 0.3s, transform 0.3s; pointer-events: none; border-left: 3px solid var(--gold); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .intro-grid, .investment-grid, .contact-grid, .featured-inner { grid-template-columns: 1fr; }
  .projects-grid, .why-grid, .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .crm-features-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-stats { display: none; }
  section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .projects-grid, .testimonials-grid, .plans-grid, .partner-tiers, .services-grid, .careers-roles, .insights-grid, .values-grid { grid-template-columns: 1fr; }
  .amenities-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .crm-features-grid { grid-template-columns: repeat(2, 1fr); }
  .dropdown-menu { min-width: 90vw; }
  .top-contacts { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column !important; }
  .timeline-item .timeline-content { text-align: left !important; padding: 0 0 0 48px; }
  .timeline-dot { left: 20px; }
  .featured-content { padding: 48px 32px; }
  .project-detail-content .container { flex-direction: column; align-items: flex-start; }
}

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   ENHANCEMENTS — injected
══════════════════════════════════════ */

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--saffron));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Nav scroll shadow */
nav.scrolled {
  box-shadow: 0 4px 24px rgba(44,26,14,0.10);
}

/* Hero SVG background patterns */
.hero-slide-bg {
  background-size: cover !important;
  background-position: center !important;
}
.hero-slide:nth-child(1) .hero-slide-bg { background-color: #3A2410 !important; }
.hero-slide:nth-child(2) .hero-slide-bg { background-color: #2C2010 !important; }
.hero-slide:nth-child(3) .hero-slide-bg { background-color: #1A140C !important; }

/* Floating particles canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* Hero content z-index fix */
.hero-content { z-index: 11 !important; }
.hero-stats { z-index: 11 !important; }
.slide-dots { z-index: 11 !important; }
.scroll-indicator { z-index: 11 !important; }

/* Lotus mandala decoration */
.hero-mandala {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(260px, 35vw, 480px);
  height: clamp(260px, 35vw, 480px);
  opacity: 0.07;
  z-index: 6;
  pointer-events: none;
  animation: mandalaRotate 60s linear infinite;
}
@keyframes mandalaRotate { to { transform: translateY(-50%) rotate(360deg); } }

/* Enhanced hero eyebrow with dot animation */
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  display: inline-block;
  animation: dotPulse 2s ease-in-out infinite;
  margin-right: 8px;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }

/* Smooth hero text entrance */
.hero-slide.active .hero-eyebrow { animation: slideUp 0.7s 0.2s both ease-out; }
.hero-slide.active .hero-title { animation: slideUp 0.7s 0.35s both ease-out; }
.hero-slide.active .hero-sub { animation: slideUp 0.7s 0.5s both ease-out; }
.hero-slide.active .hero-actions { animation: slideUp 0.7s 0.65s both ease-out; }
@keyframes slideUp { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:translateY(0);} }

/* Enhanced project cards */
.project-card {
  overflow: hidden;
}
.project-card-image {
  background: linear-gradient(160deg, var(--cream-dark) 0%, #e8d8c0 100%) !important;
  position: relative;
  overflow: hidden;
}
.project-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
}
.project-card-image-inner { z-index: 3; position: relative; }
.project-card-overlay { z-index: 4; }
.project-status { z-index: 5; }

/* Project card hover glow */
.project-card:hover {
  box-shadow: 0 24px 60px rgba(44,26,14,0.15), 0 0 0 1px rgba(201,169,110,0.3) !important;
}

/* Stats bar enhanced */
.stats-bar {
  background: linear-gradient(135deg, #C9A96E 0%, #B8935A 50%, #C9A96E 100%) !important;
  background-size: 200% 100% !important;
  animation: statsShimmer 4s ease infinite;
}
@keyframes statsShimmer { 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }

/* Testimonial card hover */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44,26,14,0.10);
}

/* Enhanced amenity cards */
.amenity-icon {
  transition: background var(--transition), border-color var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* CTA section pattern */
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), var(--saffron), var(--gold), transparent);
}

/* Enhanced footer brand */
.footer-brand .logo-text-footer {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Floating chat button */
.whatsapp-bubble {
  position: fixed;
  right: 28px;
  bottom: 96px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 499;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  text-decoration: none;
  animation: waBounce 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-bubble svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waBounce { 0%,100%{transform:translateY(0);} 30%{transform:translateY(-6px);} 60%{transform:translateY(-3px);} }

/* Plot Price Calculator */
.calc-section {
  background: var(--earth);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='0.03'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v-2h-2zm-2 0v-2l2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.calc-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media(max-width:768px){.calc-inner{grid-template-columns:1fr;gap:40px;}}
.calc-box {
  background: rgba(255,253,248,0.05);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 48px;
}
@media(max-width:768px){.calc-box{padding:32px 24px;}}
.calc-title { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--gold-light); margin-bottom: 8px; }
.calc-sub { font-size: 13px; color: rgba(255,253,248,0.45); margin-bottom: 32px; }
.calc-row { margin-bottom: 24px; }
.calc-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,253,248,0.5); margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.calc-label span { font-family: var(--font-display); font-size: 18px; color: var(--gold); letter-spacing: 0; text-transform: none; }
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(201,169,110,0.25);
  outline: none;
  border-radius: 1px;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--earth);
  box-shadow: 0 2px 8px rgba(201,169,110,0.4);
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-select {
  width: 100%;
  background: rgba(255,253,248,0.06);
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold-light);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  outline: none;
}
.calc-select option { background: var(--earth); }
.calc-result {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 28px 32px;
  margin-top: 8px;
}
.calc-result-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,253,248,0.45); margin-bottom: 8px; }
.calc-result-amount { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 6px; transition: all 0.3s ease; }
.calc-result-breakdown { font-size: 12px; color: rgba(255,253,248,0.4); line-height: 1.8; }
.calc-cta-row { display: flex; gap: 12px; margin-top: 24px; }

/* Enhanced form inputs */
.form-group input, .form-group select, .form-group textarea {
  background: var(--cream);
  border: 1px solid var(--border);
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px){.form-row{grid-template-columns:1fr;}}

/* Gallery item patterns */
.gallery-item { background: linear-gradient(135deg, var(--cream-dark), #d8c8a8) !important; }
.gallery-item:nth-child(2n) { background: linear-gradient(135deg, #d0c0a0, var(--cream-dark)) !important; }
.gallery-item:nth-child(3n) { background: linear-gradient(135deg, #c8b890, #e0d0b8) !important; }

/* Page transition fade */
.page { animation: none; }
.page.active { animation: pageFadeIn 0.4s ease forwards; }
@keyframes pageFadeIn { from{opacity:0;} to{opacity:1;} }

/* Counter enhanced */
.stat-num {
  background: linear-gradient(135deg, var(--earth), var(--earth-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Back to top button */
#back-top {
  position: fixed;
  right: 28px;
  bottom: 164px;
  width: 44px;
  height: 44px;
  background: var(--earth);
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 498;
  font-size: 18px;
  transition: background 0.2s;
}
#back-top:hover { background: var(--saffron); color: #fff; }
#back-top.visible { display: flex; }

/* Refined value pills */
.value-pill {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}
.value-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--earth);
}
.value-pill:hover::before { color: var(--earth); }

/* Insight card image patterns */
.insight-card-image {
  background: linear-gradient(135deg, var(--cream-dark), #dac8a0) !important;
  overflow: hidden;
}

/* Enhanced mobile nav */
.mobile-nav {
  background: linear-gradient(160deg, #1A0F06 0%, #2C1A0E 50%, #1A0F06 100%) !important;
}

/* Service card hover */
.service-card {
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--saffron));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover {
  border-color: var(--gold) !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44,26,14,0.1);
}
.service-card:hover::after { transform: scaleX(1); }

/* Enhanced CTA decorative text */
.cta-section .section-eyebrow { 
  letter-spacing: 0.4em;
}

/* Sticky nav active state tracking */
.nav-link.current-page { color: var(--earth) !important; }
.nav-link.current-page::after { transform: scaleX(1) !important; }

/* Intro image pattern */
.intro-image {
  background: linear-gradient(160deg, #d8c8a0 0%, var(--cream-dark) 60%, #c8b080 100%) !important;
}
.intro-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23C9A96E' stroke-width='0.5' opacity='0.15'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23C9A96E' stroke-width='0.5' opacity='0.12'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23C9A96E' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='10' y1='50' x2='90' y2='50' stroke='%23C9A96E' stroke-width='0.3' opacity='0.1'/%3E%3Cline x1='50' y1='10' x2='50' y2='90' stroke='%23C9A96E' stroke-width='0.3' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 1;
  pointer-events: none;
}
.intro-image-inner, .intro-image-placeholder { z-index: 2; position: relative; }

/* Delay animations fix */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* Plan card hover state */
.plan-card { cursor: pointer; }
.plan-card:hover .plan-duration { color: var(--saffron); }

/* Investment form enhanced */
.investment-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
}
.investment-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--saffron), var(--gold));
}
.investment-form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--earth);
  margin-bottom: 6px;
}
.investment-form-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Section eyebrow animation */
.section-eyebrow {
  position: relative;
  display: inline-block;
}

/* Highlight featured project's decorative border */
.featured-section {
  border-top: 1px solid rgba(201,169,110,0.2);
}

/* Role card enhanced */
.role-card {
  position: relative;
  overflow: hidden;
}
.role-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.role-card:hover::after { transform: scaleY(1); }

/* Timeline dot pulse animation */
.timeline-dot {
  animation: tlPulse 2.5s ease-in-out infinite;
}
@keyframes tlPulse {
  0%,100% { box-shadow: 0 0 0 2px var(--gold); }
  50% { box-shadow: 0 0 0 6px rgba(201,169,110,0.2), 0 0 0 2px var(--gold); }
}

/* Why cards hover glow */
.why-card:hover {
  background: var(--earth-mid) !important;
  box-shadow: inset 0 0 0 1px rgba(201,169,110,0.2);
}

/* Contact map placeholder with pattern */
.map-placeholder {
  background: linear-gradient(135deg, var(--cream-dark), #e8d8c0) !important;
  cursor: pointer;
  transition: opacity 0.2s;
}
.map-placeholder:hover { opacity: 0.85; }


/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--earth);
  gap: 16px;
}
.faq-q:hover { color: var(--saffron); }
.faq-icon {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
  font-weight: 300;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
}
.faq-a.open { display: block; }


/* Gallery item themed backgrounds */
.gallery-item:nth-child(1) { background: linear-gradient(160deg, #3A2410 0%, #2C1A0E 100%) !important; }
.gallery-item:nth-child(2) { background: linear-gradient(160deg, #2A3020 0%, #1A2010 100%) !important; }
.gallery-item:nth-child(3) { background: linear-gradient(160deg, #302018 0%, #2C1A0E 100%) !important; }
.gallery-item:nth-child(4) { background: linear-gradient(160deg, #2C2810 0%, #1C1808 100%) !important; }
.gallery-item:nth-child(5) { background: linear-gradient(160deg, #3A2810 0%, #2C1A0E 100%) !important; }
.gallery-item:nth-child(6) { background: linear-gradient(160deg, #241C14 0%, #1A1008 100%) !important; }
.gallery-item .gallery-item-inner { font-size: 52px; }


/* ═══ FINAL POLISH ═══ */

/* Smoother hero transition */
.hero-slide { transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1) !important; }

/* Gold shimmer on logo */
.logo-text {
  background: linear-gradient(120deg, var(--earth) 0%, #7A5535 40%, var(--earth) 60%, var(--earth) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoShimmer 6s linear infinite;
}
@keyframes logoShimmer { to { background-position: 200% center; } }

/* Refined selection color */
::selection { background: rgba(201,169,110,0.3); color: var(--earth); }

/* Smooth focus ring */
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Better scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Insight card image overlay text */
.insight-card-image { position: relative; }
.insight-card-image-emoji {
  font-size: 52px;
  opacity: 0.25;
  transition: transform 0.4s, opacity 0.4s;
}
.insight-card:hover .insight-card-image-emoji {
  transform: scale(1.1);
  opacity: 0.35;
}

/* Better float bar */
.float-bar {
  border-radius: 3px;
  overflow: hidden;
}

/* Improved breadcrumb */
.breadcrumb a { cursor: pointer; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }

/* Gallery grid on mobile */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr !important; }
  .gallery-item:nth-child(4) { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
  .calc-box { padding: 28px 20px !important; }
  .featured-content { padding: 48px 28px !important; }
}

/* Comparison table mobile */
@media (max-width: 768px) {
  table { font-size: 12px !important; }
  th, td { padding: 10px 8px !important; }
}

/* Better CTA section decoration */
.cta-title { letter-spacing: -0.01em; }

/* Hover state for footer links */
.footer-col ul li a { 
  position: relative; 
  padding-left: 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover { 
  padding-left: 6px;
  color: var(--gold) !important;
}

/* Enhanced form group spacing */
.form-group { margin-bottom: 16px; }

/* Modal entrance animation */
.modal-overlay.open .modal-box {
  animation: modalSlide 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes modalSlide {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Value cards hover */
.value-card:hover {
  background: var(--gold);
  border-color: var(--gold) !important;
}
.value-card:hover .value-title { color: var(--earth); }
.value-card:hover .value-desc { color: var(--earth-mid); }
.value-card:hover .value-num { color: var(--earth); opacity: 0.2; }

/* Role card hover expand */
.role-card {
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.role-card:hover { transform: translateX(4px); }

/* Partner tier highlight middle */
.partner-tier:nth-child(2) {
  border-color: var(--gold) !important;
  position: relative;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.15);
}
.partner-tier:nth-child(2)::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--earth);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
}

/* Testimonial quote marks enhancement */
.testimonial-card::before {
  font-size: 100px !important;
  top: 8px !important;
  left: 20px !important;
  line-height: 0.8 !important;
}


<!-- ════════════════════════════════════════════
     ADMIN PORTAL STYLES
════════════════════════════════════════════ -->


/* ═══ LUXURY LAYER ═══ */

/* ═══════════════════════════════════════════════════════════
   LUXURY ENHANCEMENT LAYER
   Texture · light · motion — refining the Braj gold identity
═══════════════════════════════════════════════════════════ */

/* ── Atmosphere: silk-paper grain over everything ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 12000;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--earth); }

html { scrollbar-color: var(--gold-dark) var(--cream-dark); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-dark)); border-radius: 6px; border: 2px solid var(--cream-dark); }

/* ── Page transitions ── */
@keyframes luxPageIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.page.active { animation: luxPageIn 0.55s cubic-bezier(0.22,1,0.36,1) both; }

/* ── Navigation: jewel-case refinement ── */
nav { transition: box-shadow 0.4s ease, background 0.4s ease; }
nav.lux-scrolled { box-shadow: 0 10px 40px rgba(44,26,14,0.10), 0 1px 0 var(--border-strong); background: rgba(255,253,248,0.92); }
.nav-links a, .nav-links .nav-link { position: relative; }
.nav-links a::after, .nav-links .nav-link::after {
  content: ''; position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  transform: translateX(-50%); transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover::after, .nav-links .nav-link:hover::after { width: 70%; }

/* ── Hero: living light ── */
.hero-slide-bg { animation: luxKenBurns 22s ease-in-out infinite alternate; will-change: transform; }
@keyframes luxKenBurns { from { transform: scale(1) translateY(0); } to { transform: scale(1.08) translateY(-1.5%); } }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(0,0,0,0.45) 0%, transparent 55%),
    radial-gradient(140% 100% at 50% -20%, rgba(0,0,0,0.35) 0%, transparent 50%);
}
.hero-content { z-index: 5; }
.hero-mandala { animation: luxMandalaSpin 160s linear infinite; opacity: 0.16; filter: drop-shadow(0 0 30px rgba(201,169,110,0.25)); }
@keyframes luxMandalaSpin { to { transform: rotate(360deg); } }
.hero-title { text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero-title em {
  background: linear-gradient(110deg, var(--gold-dark) 0%, var(--gold) 25%, #F4E3B8 50%, var(--gold) 75%, var(--gold-dark) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
  animation: luxShimmer 6.5s ease-in-out infinite;
}
@keyframes luxShimmer { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-stat-num {
  background: linear-gradient(180deg, #F0DCAC, var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.slide-dot { border-radius: 2px; }

/* ── Buttons: gilded, with a passing light sweep ── */
.btn-gold {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #E8D5A3 0%, var(--gold) 55%, #B8924E 100%);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35), inset 0 1px 0 rgba(255,255,255,0.45);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-gold:hover { background: linear-gradient(135deg, #F0E0B4 0%, var(--gold-light) 55%, var(--gold) 100%); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(201,169,110,0.5), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn-gold:hover::after { left: 130%; }
.btn-gold:active { transform: translateY(0); }
.btn-outline { position: relative; backdrop-filter: blur(6px); transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.btn-outline:hover { box-shadow: 0 0 0 1px var(--gold) inset, 0 10px 30px rgba(201,169,110,0.18); transform: translateY(-2px); }

/* ── Headings & ornaments ── */
.section-title em { position: relative; white-space: nowrap; }
.section-title em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.08em;
  background: linear-gradient(90deg, transparent, rgba(212,115,42,0.45) 18%, rgba(212,115,42,0.45) 82%, transparent);
  border-radius: 50%/100% 100% 0 0;
}
.divider-gold { position: relative; overflow: visible; background: linear-gradient(90deg, var(--gold), rgba(201,169,110,0.25)); }
.divider-gold::after {
  content: '✦'; position: absolute; top: 50%; left: calc(100% + 8px);
  transform: translateY(-50%);
  color: var(--gold); font-size: 10px; line-height: 1;
  text-shadow: 0 0 12px rgba(201,169,110,0.8);
}
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-eyebrow::after  { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ── Cards: warm shadow, gold hairline awakening ── */
.project-card { position: relative; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease, border-color 0.45s ease; }
.project-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.project-card:hover { border-color: var(--border-strong); transform: translateY(-8px); box-shadow: 0 30px 70px rgba(44,26,14,0.16), 0 6px 18px rgba(139,105,20,0.10); }
.project-card:hover::before { transform: scaleX(1); }
.project-card:hover .project-card-image-inner { transform: scale(1.08); }
.project-card-image::after {
  content: ''; position: absolute; inset: 10px; border: 1px solid rgba(232,213,163,0.0);
  transition: border-color 0.45s ease; pointer-events: none; z-index: 2;
}
.project-card:hover .project-card-image::after { border-color: rgba(232,213,163,0.45); }

.testimonial-card { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.4s ease; }
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: 0 22px 50px rgba(44,26,14,0.10); }
.testimonial-card:hover::before { opacity: 0.45; transition: opacity 0.4s; }
.testimonial-avatar { box-shadow: 0 0 0 3px rgba(201,169,110,0.18); }

.service-card, .plan-card {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: 0 22px 50px rgba(44,26,14,0.10); }
.plan-card:hover { box-shadow: 0 24px 56px rgba(44,26,14,0.12); border-color: var(--border-strong); }
.plan-card.popular { box-shadow: 0 14px 40px rgba(201,169,110,0.22); }

.why-card { position: relative; }
.why-card::after {
  content: ''; position: absolute; inset: 8px; border: 1px solid rgba(201,169,110,0);
  transition: border-color 0.4s ease; pointer-events: none;
}
.why-card:hover::after { border-color: rgba(201,169,110,0.35); }

.value-pill { transition: background 0.3s, border-color 0.3s, transform 0.3s; cursor: default; }
.value-pill:hover { background: rgba(201,169,110,0.12); border-color: var(--gold); transform: translateY(-1px); }

/* ── Stats: gold-leaf numerals ── */
.stat-num {
  background: linear-gradient(180deg, var(--earth) 20%, var(--gold-dark) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Gallery: gilt frames ── */
.gallery-item { isolation: isolate; }
.gallery-item::after {
  content: ''; position: absolute; inset: 10px; z-index: 3;
  border: 1px solid rgba(232,213,163,0); pointer-events: none;
  transition: border-color 0.4s ease, inset 0.4s ease;
}
.gallery-item:hover::after { border-color: rgba(232,213,163,0.55); inset: 14px; }
.gallery-item img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.08); }

/* ── Forms: candle-glow focus ── */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(201,169,110,0.18), 0 4px 18px rgba(201,169,110,0.10);
  outline: none;
}
.form-group input, .form-group select, .form-group textarea { transition: border-color 0.25s, box-shadow 0.25s; }

/* ── Sub-page heroes: faint mandala watermark ── */
.page-hero::before {
  content: ''; position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px; pointer-events: none; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' fill='none' stroke='%23C9A96E' stroke-width='1'%3E%3Ccircle cx='200' cy='200' r='180'/%3E%3Ccircle cx='200' cy='200' r='140'/%3E%3Ccircle cx='200' cy='200' r='100'/%3E%3Ccircle cx='200' cy='200' r='60'/%3E%3Cg transform='translate(200,200)'%3E%3Cellipse rx='28' ry='62'/%3E%3Cellipse rx='28' ry='62' transform='rotate(30)'/%3E%3Cellipse rx='28' ry='62' transform='rotate(60)'/%3E%3Cellipse rx='28' ry='62' transform='rotate(90)'/%3E%3Cellipse rx='28' ry='62' transform='rotate(120)'/%3E%3Cellipse rx='28' ry='62' transform='rotate(150)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* ── Footer: temple-dusk finish ── */
footer { position: relative; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 20%, var(--gold) 50%, var(--gold-dark) 80%, transparent);
  opacity: 0.7;
}
footer::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 0%, rgba(201,169,110,0.06), transparent 70%);
}

/* ── Reveal motion: silkier easing ── */
.fade-in { transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1) !important; }

/* ── Back-to-top & admin trigger polish ── */
#back-top, #admin-trigger { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s, opacity 0.3s; }
#back-top:hover, #admin-trigger:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(201,169,110,0.35); }

/* ── Calm for those who prefer it ── */
@media (prefers-reduced-motion: reduce) {
  .hero-slide-bg, .hero-mandala, .hero-title em, .btn-gold::after { animation: none !important; }
  .page.active { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ── Dropdown: forgiving hover (bridge + grace period) ── */
.dropdown-menu::before {
  content: ''; position: absolute; top: -18px; left: -16px; right: -16px; height: 18px;
}
.dropdown .dropdown-menu { transition: opacity 0.25s ease 0.28s, transform 0.25s ease 0.28s; }
.dropdown:hover .dropdown-menu,
.dropdown.lux-open .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.dropdown.lux-open > .nav-link { color: var(--gold-dark); }

/* ── Blog article page ── */
.blog-post-hero { background: var(--earth); padding: 90px 0 56px; position: relative; overflow: hidden; }
.blog-post-hero .container { max-width: 860px; }
.blog-post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.blog-post-meta span:not(:first-child)::before { content: '✦'; margin-right: 14px; font-size: 8px; opacity: 0.7; }
.blog-post-title { font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px); font-weight: 300; color: var(--white); line-height: 1.12; }
.blog-post-author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.blog-post-author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--earth-mid); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--gold-light); font-size: 17px; }
.blog-post-author-name { font-size: 13px; color: rgba(255,253,248,0.85); font-weight: 500; }
.blog-post-author-role { font-size: 11px; color: rgba(255,253,248,0.45); letter-spacing: 0.06em; }
.blog-post-cover { max-width: 1000px; margin: -36px auto 0; padding: 0 40px; position: relative; z-index: 4; }
.blog-post-cover-frame { position: relative; box-shadow: 0 30px 70px rgba(44,26,14,0.22); }
.blog-post-cover-frame::after { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(232,213,163,0.5); pointer-events: none; }
.blog-post-cover img { width: 100%; max-height: 520px; object-fit: cover; display: block; }
.blog-post-body { max-width: 760px; margin: 0 auto; padding: 64px 40px 30px; }
.blog-post-content { font-size: 17px; line-height: 1.85; color: var(--text-primary); }
.blog-post-content > *:first-child::first-letter {
  font-family: var(--font-display); font-size: 3.4em; line-height: 0.85;
  float: left; padding: 6px 10px 0 0; color: var(--gold-dark);
}
.blog-post-content p { margin-bottom: 1.3em; }
.blog-post-content h1, .blog-post-content h2, .blog-post-content h3 {
  font-family: var(--font-display); font-weight: 400; color: var(--earth);
  line-height: 1.25; margin: 1.6em 0 0.6em;
}
.blog-post-content h1 { font-size: 32px; } .blog-post-content h2 { font-size: 28px; } .blog-post-content h3 { font-size: 23px; }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 1.3em 1.4em; }
.blog-post-content li { margin-bottom: 0.5em; }
.blog-post-content blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 21px; color: var(--earth-mid);
  border-left: 2px solid var(--gold); margin: 1.6em 0; padding: 6px 0 6px 24px;
}
.blog-post-content img { max-width: 100%; height: auto; margin: 1.4em 0; box-shadow: 0 14px 40px rgba(44,26,14,0.14); }
.blog-post-content a { color: var(--gold-dark); }
.blog-post-end { display: flex; align-items: center; gap: 14px; margin: 48px 0 0; color: var(--gold); font-size: 12px; letter-spacing: 0.2em; }
.blog-post-end::before, .blog-post-end::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong)); }
.blog-post-end::after { background: linear-gradient(90deg, var(--border-strong), transparent); }
.blog-post-nav { max-width: 760px; margin: 0 auto; padding: 0 40px 30px; display: flex; justify-content: space-between; gap: 16px; }
.blog-related { background: var(--cream-dark); padding: 70px 0 90px; }
.blog-related .insights-grid { margin-top: 36px; }

@media (max-width: 768px) {
  .blog-post-cover { padding: 0 20px; }
  .blog-post-body, .blog-post-nav { padding-left: 20px; padding-right: 20px; }
  .blog-post-content { font-size: 16px; }
}

/* ── Mobile guardrails ── */
@media (max-width: 768px) {
  .page-hero::before { width: 260px; height: 260px; right: -90px; }
  body::after { opacity: 0.04; }
}

/* ════════════════════════════════════════════════════════════════════
   ✦ RAMYA — DESIGN ENHANCEMENT LAYER (real photography · lightbox ·
     refined motion · blog & gallery polish).  Appended; overrides only.
   ════════════════════════════════════════════════════════════════════ */

/* ── Real-image gallery (replaces emoji placeholders) ─────────────── */
.gallery-grid { gap: 14px; }
.gallery-item { background: var(--earth) !important; box-shadow: 0 14px 38px rgba(44,26,14,0.10); }
.gallery-item .gallery-item-inner { display: none !important; }       /* kill emoji slot */
.gallery-item > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1), filter 0.7s ease;
}
.gallery-item:hover > img { transform: scale(1.07); filter: saturate(1.06) brightness(1.03); }
.gallery-item-overlay {
  background: linear-gradient(to top, rgba(20,11,4,0.78) 0%, rgba(20,11,4,0.05) 45%, rgba(20,11,4,0) 100%) !important;
  opacity: 0; align-items: flex-end !important; justify-content: flex-start !important;
  padding: 22px; transition: opacity 0.45s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; background: linear-gradient(to top, rgba(20,11,4,0.82), rgba(20,11,4,0.06) 55%, transparent) !important; }
.gallery-item-label {
  opacity: 1 !important; transform: translateY(10px); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  font-size: 17px; letter-spacing: 0.01em; text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.gallery-item:hover .gallery-item-label { transform: translateY(0); }
.gallery-item-label::before {
  content: ''; display: block; width: 26px; height: 2px; background: var(--gold);
  margin-bottom: 10px; transform: scaleX(0); transform-origin: left; transition: transform 0.5s 0.05s ease;
}
.gallery-item:hover .gallery-item-label::before { transform: scaleX(1); }
.gallery-item .gallery-zoom-cue {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  border: 1px solid rgba(232,213,163,0.65); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); background: rgba(20,11,4,0.28); backdrop-filter: blur(2px);
  opacity: 0; transform: scale(0.8); transition: opacity 0.4s, transform 0.4s; z-index: 3; pointer-events: none;
}
.gallery-item:hover .gallery-zoom-cue { opacity: 1; transform: scale(1); }
.gallery-item .gallery-zoom-cue svg { width: 16px; height: 16px; }
/* override the older flat gradient backgrounds so photos show */
#page-gallery .gallery-item:nth-child(n) { background: var(--earth) !important; }

/* ── Lightbox ─────────────────────────────────────────────────────── */
.rg-lightbox {
  position: fixed; inset: 0; z-index: 4000; display: flex; align-items: center; justify-content: center;
  background: rgba(16,8,2,0); backdrop-filter: blur(0px);
  opacity: 0; visibility: hidden; transition: opacity 0.45s ease, backdrop-filter 0.45s ease;
}
.rg-lightbox.open { opacity: 1; visibility: visible; background: rgba(16,8,2,0.93); backdrop-filter: blur(6px); }
.rg-lb-stage { position: relative; max-width: min(1100px, 92vw); max-height: 84vh; display: flex; flex-direction: column; align-items: center; }
.rg-lb-frame { position: relative; box-shadow: 0 40px 110px rgba(0,0,0,0.6); }
.rg-lb-frame::after { content: ''; position: absolute; inset: 14px; border: 1px solid rgba(232,213,163,0.45); pointer-events: none; }
.rg-lb-img {
  display: block; max-width: 100%; max-height: 76vh; object-fit: contain; background: #1a0f06;
  transform: scale(0.94); opacity: 0; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.5s;
}
.rg-lightbox.open .rg-lb-img.loaded { transform: scale(1); opacity: 1; }
.rg-lb-caption {
  margin-top: 18px; color: var(--gold-light); font-family: var(--font-display);
  font-size: 19px; letter-spacing: 0.02em; text-align: center; max-width: 80%;
}
.rg-lb-count { margin-top: 6px; color: rgba(255,253,248,0.45); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.rg-lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(232,213,163,0.35);
  background: rgba(20,11,4,0.4); color: var(--gold-light); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.rg-lb-btn:hover { background: var(--gold); color: var(--earth); border-color: var(--gold); transform: translateY(-50%) scale(1.06); }
.rg-lb-btn svg { width: 22px; height: 22px; }
.rg-lb-prev { left: -84px; } .rg-lb-next { right: -84px; }
.rg-lb-close {
  position: absolute; top: 24px; right: 26px; z-index: 5; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(232,213,163,0.3); background: rgba(20,11,4,0.45); color: var(--gold-light);
  font-size: 22px; cursor: pointer; transition: all 0.3s ease; line-height: 1;
}
.rg-lb-close:hover { background: var(--gold); color: var(--earth); transform: rotate(90deg); }
@media (max-width: 820px) {
  .rg-lb-prev { left: 8px; } .rg-lb-next { right: 8px; }
  .rg-lb-btn { width: 44px; height: 44px; background: rgba(20,11,4,0.6); }
  .rg-lb-caption { font-size: 16px; }
}

/* ── Real-image insight / blog cards (replaces emoji card images) ── */
.insight-card { box-shadow: 0 10px 30px rgba(44,26,14,0.06); transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease; }
.insight-card:hover { transform: translateY(-8px); box-shadow: 0 26px 56px rgba(44,26,14,0.16); }
.insight-card-image { overflow: hidden; }
.insight-card-image-emoji { display: none !important; }
.insight-card-image > img, .insight-card-image .rg-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); opacity: 1;
}
.insight-card:hover .insight-card-image > img, .insight-card:hover .insight-card-image .rg-card-img { transform: scale(1.08); }
.insight-card-image .rg-cat-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(20,11,4,0.55); backdrop-filter: blur(3px); color: var(--gold-light);
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 11px; border: 1px solid rgba(232,213,163,0.3);
}
.insight-card-image::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,11,4,0.35), transparent 55%);
}
.insight-cat { color: var(--gold-dark); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.insight-title { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--earth); line-height: 1.3; margin-bottom: 10px; transition: color 0.3s; }
.insight-card:hover .insight-title { color: var(--gold-dark); }
.insight-excerpt { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }
.insight-meta { margin-top: 16px; font-size: 11px; color: var(--gold-dark); letter-spacing: 0.06em; display: flex; align-items: center; gap: 8px; }
.insight-meta::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.rg-read-more { margin-top: 16px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.insight-card:hover .rg-read-more { gap: 14px; }

/* ── Homepage placeholders → real imagery ─────────────────────────── */
.intro-image-placeholder { display: none !important; }
.intro-image { position: relative; overflow: hidden; }
.intro-image .rg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(0.22,1,0.36,1); }
.intro-image-wrap:hover .rg-photo { transform: scale(1.05); }
.intro-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, transparent 40%, rgba(44,26,14,0.25)); pointer-events: none; }
.project-card-image-inner { display: none !important; }
.project-card-image { overflow: hidden; }
.project-card-image .rg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.project-card:hover .project-card-image .rg-photo { transform: scale(1.08); }
.rg-amenity-photo {
  width: 100%; height: 150px; object-fit: cover; margin-bottom: 20px; display: block;
  filter: saturate(0.96); transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.amenity-card { overflow: hidden; }
.amenity-card:hover .rg-amenity-photo { transform: scale(1.06); filter: saturate(1.05); }

/* ── Refined motion: staggered scroll reveals ─────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.delay-1 { transition-delay: 0.10s; }
.fade-in.delay-2 { transition-delay: 0.20s; }
.fade-in.delay-3 { transition-delay: 0.30s; }
.rg-reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.rg-reveal.visible { opacity: 1; transform: none; }

/* gentle ambient float for the page-hero glow */
@keyframes rgFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-14px,12px); } }
.page-hero::before { animation: rgFloat 16s ease-in-out infinite; }

/* ── Blog post: reading progress + share + cover ──────────────────── */
.rg-read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 250; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); transition: width 0.1s linear; }
.blog-post-cover-frame { overflow: hidden; }
.blog-post-cover img { transition: transform 1.4s cubic-bezier(0.22,1,0.36,1); }
.blog-post-cover:hover img { transform: scale(1.03); }
.rg-share { max-width: 760px; margin: 8px auto 0; padding: 0 40px; display: flex; align-items: center; gap: 14px; }
.rg-share span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); }
.rg-share button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-strong); background: transparent; color: var(--earth-mid); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.rg-share button:hover { background: var(--earth); color: var(--gold-light); border-color: var(--earth); transform: translateY(-2px); }
.rg-share button svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .rg-share { padding-left: 20px; padding-right: 20px; } }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .rg-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .page-hero::before { animation: none; }
  .rg-lb-img { transition: opacity 0.2s; transform: none; }
  *, *::before, *::after { scroll-behavior: auto !important; }
}

/* ════════════════════════════════════════════════════════════════════
   ✦ RAMYA — TYPE WARMTH + TIMELINE REBUILD + MOTION (pass 2)
   ════════════════════════════════════════════════════════════════════ */

/* ── Humanist type tuning (Fraunces display · Mulish body) ────────── */
body { font-optical-sizing: auto; letter-spacing: 0.005em; -webkit-font-smoothing: antialiased; }
.section-title, .page-hero-title, .hero-title, .timeline-title, .timeline-year,
.featured-title, .cta-title, .insight-title, .project-card-name, .blog-post-title { letter-spacing: -0.01em; }
.section-title em, .hero-title em, .cta-title em, .featured-title em, .blog-post-title em { font-style: italic; }
.section-body, .blog-post-content, p { line-height: 1.78; }

/* ── Timeline — clean mirrored zig-zag with cards ─────────────────── */
.timeline { margin-top: 64px; }
.timeline::before {
  width: 2px; background: linear-gradient(to bottom, transparent, var(--gold) 6%, var(--gold) 94%, transparent) !important;
  opacity: 0.55;
}
.timeline-item { gap: 0; margin-bottom: 64px; }
.timeline-item:nth-child(even) { flex-direction: row; }   /* real left/right alternation with cards */
.timeline-content { padding: 0 52px; }
.timeline-item:nth-child(odd) .timeline-content { text-align: right; }
.timeline-item:nth-child(even) .timeline-content { text-align: left; }

.timeline-content:not(:empty) {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 28px 32px;
  box-shadow: 0 14px 40px rgba(44,26,14,0.07);
  position: relative;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s ease, border-color 0.4s;
}
.timeline-content:not(:empty):hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(44,26,14,0.15);
  border-color: rgba(201,169,110,0.5);
}
/* connector pointing toward the spine */
.timeline-item:nth-child(odd) .timeline-content:not(:empty)::after {
  content: ''; position: absolute; top: 30px; right: -8px; width: 15px; height: 15px;
  background: var(--white); border-top: 1px solid var(--border); border-right: 1px solid var(--border);
  transform: rotate(45deg); transition: border-color 0.4s;
}
.timeline-item:nth-child(even) .timeline-content:not(:empty)::after {
  content: ''; position: absolute; top: 30px; left: -8px; width: 15px; height: 15px;
  background: var(--white); border-bottom: 1px solid var(--border); border-left: 1px solid var(--border);
  transform: rotate(45deg); transition: border-color 0.4s;
}
.timeline-content:not(:empty):hover::after { border-color: rgba(201,169,110,0.5); }

.timeline-year {
  font-size: 46px; font-weight: 300; line-height: 1; margin-bottom: 10px;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.timeline-title { font-size: 23px; font-weight: 500; }
.timeline-desc { font-size: 14px; line-height: 1.75; }

/* animated dot */
.timeline-dot {
  width: 14px; height: 14px; background: var(--gold) !important; z-index: 2;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(201,169,110,0.4) !important; border: none !important;
}
.timeline-dot::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50%; border: 1px solid var(--gold);
  animation: rgPulse 2.8s ease-out infinite;
}
@keyframes rgPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(3); opacity: 0; } }

/* direction-aware reveal: each entry slides in from its own side */
.timeline-item.fade-in { opacity: 0; }
.timeline-item:nth-child(odd).fade-in  { transform: translateX(-46px); }
.timeline-item:nth-child(even).fade-in { transform: translateX(46px); }
.timeline-item.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { text-align: left !important; }
  .timeline-content:empty { display: none; }
  .timeline-content:not(:empty)::after { display: none; }
  .timeline-content:not(:empty) { padding: 22px 24px; }
  .timeline-item:nth-child(odd).fade-in,
  .timeline-item:nth-child(even).fade-in { transform: translateY(28px); }
}

/* ── Page-hero entrance ───────────────────────────────────────────── */
.page-hero-inner .breadcrumb { animation: rgRise 0.8s cubic-bezier(0.22,1,0.36,1) both; }
.page-hero-title { animation: rgRise 1s 0.08s cubic-bezier(0.22,1,0.36,1) both; }
.page-hero-sub  { animation: rgRise 1s 0.2s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes rgRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ── Micro-interactions ───────────────────────────────────────────── */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn-gold:hover::after { animation: rgShine 0.85s ease; }
@keyframes rgShine { to { left: 150%; } }

.value-card { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s ease, background 0.4s; }
.value-card:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(44,26,14,0.13); }
.value-num { transition: color 0.45s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.value-card:hover .value-num { color: var(--gold); transform: translateY(-3px) scale(1.04); }

.project-card { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s ease; }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(44,26,14,0.16); }
.amenity-card { transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), background 0.4s ease, box-shadow 0.5s; }
.amenity-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(44,26,14,0.10); }

@media (prefers-reduced-motion: reduce) {
  .timeline-dot::after { animation: none; }
  .page-hero-inner .breadcrumb, .page-hero-title, .page-hero-sub { animation: none; }
  .btn-gold:hover::after { animation: none; }
  .timeline-item.fade-in { opacity: 1 !important; transform: none !important; }
}

/* ── Ramya Group content helpers (pills, dark outline button) ────── */
.pill {
  display: inline-block; padding: 9px 18px; border: 1px solid var(--border-strong);
  border-radius: 999px; font-size: 12px; letter-spacing: 0.03em; color: var(--earth-mid);
  background: rgba(201,169,110,0.06); transition: all 0.35s ease; white-space: nowrap;
}
.pill:hover { background: var(--gold); color: var(--earth); border-color: var(--gold); transform: translateY(-2px); }
.btn-outline-dark {
  display: inline-block; padding: 14px 30px; border: 1px solid var(--earth);
  background: transparent; color: var(--earth); font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; transition: all 0.35s ease; margin: 4px 6px 4px 0; border-radius: 2px;
}
.btn-outline-dark:hover { background: var(--earth); color: var(--gold-light); }

/* ════════════════════════════════════════════════════════════════════
   ✦ RAMYA — ENHANCEMENT PASS (content-unlock layer)
   New content sections reuse the design system above; this block only
   adds the few small helpers that system didn't already define.
   ════════════════════════════════════════════════════════════════════ */

/* Single-column "Explore" dropdown (Gallery / Why Ashtasakhi Homes) */
.dropdown-menu.single-col { min-width: 260px; grid-template-columns: 1fr; padding: 16px; }
.dropdown-menu.single-col .dropdown-col a { padding: 9px 4px; }

/* Circular photo avatars inside testimonial/leader-quote cards */
.testimonial-avatar.has-photo { overflow: hidden; padding: 0; }
.testimonial-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

/* Icon roundel for dark "why-card" trust bands (why-grid) */
.why-icon {
  width: 44px; height: 44px; border: 1px solid rgba(201,169,110,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  font-size: 18px; color: var(--gold); background: rgba(201,169,110,0.06);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), background 0.4s;
}
.why-card:hover .why-icon { transform: translateY(-3px) scale(1.05); background: rgba(201,169,110,0.14); }

/* Amenity icon roundel (light amenities-grid) */
.amenity-icon { border-radius: 50%; }

/* Devanagari accent used sparingly as a devotional flourish */
.deva-accent { font-family: var(--font-deva); color: var(--gold); opacity: 0.8; letter-spacing: 0.02em; }

/* Small stat strip (reuses hero-stat visual language on light sections) */
.stat-strip { display: flex; flex-wrap: wrap; gap: 48px; justify-content: center; margin-top: 12px; }
.stat-strip .hero-stat { text-align: center; }
.stat-strip .hero-stat-num { color: var(--gold-dark); }
.stat-strip .hero-stat-label { color: var(--text-secondary); }

/* FAQ section wrapper spacing when placed after a grid */
.faq-list { margin-top: 8px; max-width: 820px; }
.faq-list.two-col { max-width: none; column-count: 2; column-gap: 48px; }
.faq-list.two-col .faq-item { break-inside: avoid; }
@media (max-width: 860px) { .faq-list.two-col { column-count: 1; } }

/* Plan comparison cards spacing tweak for a 2-card layout */
.plans-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) { .plans-grid.cols-2 { grid-template-columns: 1fr; } }

/* Gallery caption chip already styled via .gallery-item-label; add a section note style */
.gallery-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 28px; }

/* ═══════════════════════════════════════════════════════════
   V2 DESIGN ENHANCEMENTS — typography, motion, new sections
   (purely presentational; no logic changes)
   ═══════════════════════════════════════════════════════════ */

:root {
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-caps: 'Marcellus', 'Fraunces', serif;
  --shadow-soft: 0 10px 40px rgba(44,26,14,0.08);
  --shadow-lift: 0 24px 60px rgba(44,26,14,0.16);
  --gold-grad: linear-gradient(120deg, #8B6914 0%, #C9A96E 45%, #E8D5A3 60%, #C9A96E 75%, #8B6914 100%);
}

/* ── Typography refinement ── */
.section-title { letter-spacing: -0.01em; text-wrap: balance; }
.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-dark), var(--saffron) 60%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-title {
  background: var(--gold-grad);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: goldSheen 7s ease-in-out infinite;
  letter-spacing: -0.015em;
}
@keyframes goldSheen { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero-sub { text-wrap: pretty; }
.section-eyebrow { font-family: var(--font-caps); letter-spacing: 0.22em; }
.section-eyebrow::before { content: '✦'; color: var(--saffron); margin-right: 10px; font-size: 10px; }
.page-hero-title { text-wrap: balance; }

/* ── Buttons: shimmer + press feel ── */
.btn-gold, .btn-outline, .btn-outline-dark, .btn-submit, .nav-cta, .float-btn {
  position: relative; overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, background 0.3s, color 0.3s;
}
.btn-gold:hover, .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(139,105,20,0.35); }
.btn-gold:active, .btn-submit:active { transform: translateY(0) scale(0.98); }
.btn-gold::after, .btn-submit::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-gold:hover::after, .btn-submit:hover::after { left: 130%; }
.btn-outline:hover, .btn-outline-dark:hover { transform: translateY(-2px); }

/* ── Cards: unified lift + gold top rule ── */
.value-card, .why-card, .amenity-card, .testimonial-card, .insight-card, .plan-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
}
.value-card::before, .amenity-card::before, .plan-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad); background-size: 200% auto;
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.value-card:hover, .amenity-card:hover, .testimonial-card:hover, .plan-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--border-strong);
}
.value-card:hover::before, .amenity-card:hover::before, .plan-card:hover::before { transform: scaleX(1); }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.insight-card img, .gallery-item img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.insight-card:hover img, .gallery-item:hover img { transform: scale(1.06); }
.amenity-icon, .why-icon { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); display: inline-block; }
.amenity-card:hover .amenity-icon, .why-card:hover .why-icon { transform: translateY(-4px) scale(1.12); }
.why-card:hover { transform: translateY(-6px); }

/* ── Pills ── */
.pill { transition: all 0.3s ease; cursor: default; }
.pill:hover { background: var(--earth); color: var(--gold-light); border-color: var(--earth); transform: translateY(-2px); }

/* ── Nav polish ── */
nav { transition: box-shadow 0.3s ease, height 0.3s ease; }
nav.nav-scrolled { box-shadow: 0 8px 30px rgba(44,26,14,0.1); }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ── Reveal variants (reuse .fade-in observer) ── */
.fade-in { transition-duration: 0.9s; }
.fade-in.rise { transform: translateY(36px); }
.fade-in.rise.visible { transform: translateY(0); }
.fade-in.zoom { transform: scale(0.94); }
.fade-in.zoom.visible { transform: scale(1); }

/* ── Launch offer banner ── */
.offer-banner {
  background: linear-gradient(120deg, #1A0F06, #2C1A0E 55%, #3A2010);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0; position: relative; overflow: hidden;
}
.offer-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(201,169,110,0.14), transparent 55%);
}
.offer-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  position: relative;
}
.offer-tag {
  font-family: var(--font-caps); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--earth); background: var(--gold-grad); background-size: 200% auto;
  padding: 7px 16px; animation: goldSheen 5s linear infinite; white-space: nowrap;
}
.offer-text { color: var(--gold-light); font-family: var(--font-display); font-size: 19px; flex: 1; min-width: 260px; }
.offer-text strong { color: #fff; }

/* ── Stat strip with counters ── */
.stat-strip { background: var(--earth); padding: 70px 0; position: relative; overflow: hidden; }
.stat-strip::after {
  content: 'राधे राधे'; position: absolute; right: -20px; bottom: -46px;
  font-family: var(--font-deva); font-size: 170px; color: rgba(201,169,110,0.05); line-height: 1; pointer-events: none;
}
.stat-strip-grid {
  max-width: 1300px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; position: relative;
}
.stat-cell { padding: 10px 18px; border-left: 1px solid rgba(201,169,110,0.18); }
.stat-cell:first-child { border-left: none; }
.stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 500; color: var(--gold-light); line-height: 1.1; }
.stat-suffix { font-size: 26px; color: var(--gold); }
.stat-label { margin-top: 8px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,253,248,0.5); }

/* ── Payment plan steps ── */
.pay-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; position: relative; }
.pay-steps::before { content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--border)); }
.pay-step { text-align: center; padding: 0 18px; position: relative; }
.pay-step-dot {
  width: 54px; height: 54px; margin: 0 auto; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 19px; color: var(--gold-dark); font-weight: 600;
  position: relative; z-index: 1; box-shadow: 0 0 0 8px var(--cream);
  transition: all 0.35s ease;
}
.pay-step:hover .pay-step-dot { background: var(--earth); color: var(--gold-light); border-color: var(--earth); transform: scale(1.1); }
.pay-step-title { margin-top: 18px; font-family: var(--font-display); font-size: 18px; color: var(--earth); }
.pay-step-desc { margin-top: 8px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Sacred strip ── */
.sacred-strip {
  background: linear-gradient(120deg, #FAF6EE, #F0E8D8);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 44px 0; text-align: center;
}
.sacred-strip .deva-big { font-family: var(--font-deva); font-size: 30px; color: var(--saffron); margin-bottom: 14px; }
.sacred-names { display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center; }
.sacred-names span { font-family: var(--font-accent); font-style: italic; font-size: 19px; color: var(--earth-light); position: relative; }
.sacred-names span::before { content: '✦'; font-style: normal; font-size: 10px; color: var(--gold); margin-right: 12px; vertical-align: middle; }

/* ── Dimension spec table ── */
.spec-table { width: 100%; border-collapse: collapse; margin-top: 40px; background: var(--white); box-shadow: var(--shadow-soft); }
.spec-table th {
  font-family: var(--font-caps); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--earth); color: var(--gold-light); padding: 16px 22px; text-align: left; font-weight: 400;
}
.spec-table td { padding: 15px 22px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); }
.spec-table tr:hover td { background: rgba(201,169,110,0.06); }
.spec-table td:first-child { font-weight: 600; color: var(--earth); }

/* ── Floating badge / scroll indicator motion ── */
.intro-badge { animation: floatY 5s ease-in-out infinite; box-shadow: var(--shadow-lift); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-mandala { animation: mandalaSpin 90s linear infinite; }
@keyframes mandalaSpin { to { transform: rotate(360deg); } }

/* ── FAQ smoothness ── */
.faq-q { transition: color 0.25s; }
.faq-q:hover { color: var(--gold-dark); }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Alignment & responsive fixes ── */
.values-grid, .amenities-grid, .why-grid, .insights-grid, .testimonials-grid { align-items: stretch; }
.value-card, .amenity-card, .why-card, .insight-card, .testimonial-card { height: 100%; display: flex; flex-direction: column; }
.insight-card-body { flex: 1; }
.testimonial-author { margin-top: auto; }
img { max-width: 100%; }

@media (max-width: 1024px) {
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat-cell { border-left: none; }
  .pay-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .pay-steps::before { display: none; }
}
@media (max-width: 640px) {
  .stat-strip-grid, .pay-steps { grid-template-columns: 1fr; }
  .offer-inner { justify-content: center; text-align: center; }
  .offer-text { font-size: 16px; }
  .stat-num { font-size: 38px; }
  .spec-table { display: block; overflow-x: auto; }
  .values-grid[style*="repeat(3"], .values-grid[style*="repeat(2"] { grid-template-columns: 1fr !important; }
  .gallery-grid[style*="repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.15s !important; }
}

/* ═══════════════════════════════════════════════════════════
   V3 FIX PACK — contrast, faded images, blur removal,
   alignment, preloader, contact map
   ═══════════════════════════════════════════════════════════ */

/* 1. FIX: faded/washed-out card images (opacity was on the container) */
.insight-card-image { opacity: 1 !important; color: transparent !important; }
.insight-card-image > img, .insight-card-image .rg-card-img { opacity: 1 !important; filter: none !important; }

/* 2. FIX: pale numbers — strong readable gold-bronze */
.value-num {
  opacity: 1 !important;
  color: transparent !important;
  background: linear-gradient(115deg, #8B6914 0%, #B8894A 45%, #C9A96E 100%);
  -webkit-background-clip: text; background-clip: text;
  font-weight: 500 !important;
}
.value-card:hover .value-num { opacity: 1 !important; }
.plan-duration { color: var(--earth) !important; }
.why-num, .reason-num { opacity: 0.55 !important; }

/* 3. Remove blurry effects site-wide */
nav { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: var(--white) !important; }
.modal-overlay { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: rgba(20,11,4,0.72) !important; }
.insight-card-image .rg-cat-tag { backdrop-filter: none !important; background: rgba(20,11,4,0.78) !important; }
.gallery-item:hover img { filter: none !important; }

/* 4. Amenities grid — consistent bordered cards, aligned icons */
.amenity-card {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px;
  padding: 34px 26px !important;
  text-align: left;
}
.amenity-card:hover { background: var(--white) !important; border-color: var(--border-strong) !important; }
.amenity-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.16), rgba(212,115,42,0.10));
  border: 1px solid var(--border-strong);
  display: flex !important; align-items: center; justify-content: center;
  font-size: 24px !important; margin-bottom: 18px;
}
.amenity-name { color: var(--earth); }
.amenity-desc { color: var(--text-secondary); }

/* 5. Booking value cards — centered & equal, richer surface */
.value-card {
  border: 1px solid var(--border) !important;
  border-radius: 6px;
  background: var(--white);
}
.value-card > .value-title { color: var(--earth); }
.value-card [class] { margin-left: auto; margin-right: auto; }
.value-card { align-items: center; text-align: center; justify-content: center; }
.value-card .value-desc { text-align: center; }

/* keep left-alignment where cards sit in editorial grids */
.intro-section .value-card, .amenities-section .value-card { align-items: flex-start; text-align: left; }
.intro-section .value-card [class] { margin-left: 0; margin-right: 0; }

/* 6. Stronger eyebrow + heading contrast */
.section-eyebrow { color: var(--gold-dark); }
.hero-stat-label, .stat-label { color: rgba(255,253,248,0.62); }

/* 7. Sticky-nav overlap fix for anchored headings */
section, .page-hero { scroll-margin-top: 90px; }

/* 8. Bottom float-bar clearance so content isn't hidden behind it */
footer { padding-bottom: 90px; }

/* ── PRELOADER: राधे राधे ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at 50% 40%, #2C1A0E 0%, #1A0F06 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-deva {
  font-family: var(--font-deva); font-size: 52px; color: var(--gold-light);
  background: var(--gold-grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: goldSheen 2.4s linear infinite, devaPulse 2.4s ease-in-out infinite;
}
@keyframes devaPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.preloader-brand { font-family: var(--font-caps); font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(232,213,163,0.55); }
.preloader-bar { width: 160px; height: 2px; background: rgba(201,169,110,0.18); overflow: hidden; border-radius: 2px; }
.preloader-bar::after { content: ''; display: block; height: 100%; width: 40%; background: var(--gold); animation: loadSlide 1.1s ease-in-out infinite; }
@keyframes loadSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }

/* ── CONTACT MAP ── */
.map-section { background: var(--cream-dark); padding: 90px 0; }
.map-frame {
  position: relative; border: 1px solid var(--border-strong); border-radius: 8px;
  overflow: hidden; box-shadow: var(--shadow-lift); background: var(--white);
}
.map-frame iframe { display: block; width: 100%; height: 440px; border: 0; filter: none; }
.map-card {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  background: var(--earth); color: var(--gold-light);
  padding: 20px 26px; max-width: 320px; border-left: 3px solid var(--gold);
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
}
.map-card h5 { font-family: var(--font-display); font-size: 18px; color: #fff; margin-bottom: 6px; }
.map-card p { font-size: 12.5px; line-height: 1.65; color: rgba(255,253,248,0.7); }
.map-card a { display: inline-block; margin-top: 12px; color: var(--gold); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }
@media (max-width: 640px) {
  .map-card { position: static; max-width: none; margin-top: -4px; border-radius: 0; }
  .map-frame iframe { height: 320px; }
  .preloader-deva { font-size: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   V4 FIX PACK — color contrast, gallery grid, title alignment,
   equal grids, footer social icons
   ═══════════════════════════════════════════════════════════ */

/* 1. Section eyebrow: full reset + clean redesign (removes the tan box + stray dash) */
.section-eyebrow, .section-eyebrow::before, .section-eyebrow::after {
  background: none !important; width: auto !important; height: auto !important;
}
.section-eyebrow {
  display: inline-flex !important; align-items: center; gap: 10px;
  font-family: var(--font-caps); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-dark); font-weight: 400;
  padding: 0 !important; border: none !important;
}
.section-eyebrow::before { content: '✦' !important; color: var(--saffron); font-size: 10px; margin: 0 !important; }
.section-eyebrow::after { content: '' !important; display: none !important; }
/* center the eyebrow whenever it's a centered section */
.section-eyebrow[style*="center"] { display: flex !important; justify-content: center !important; width: 100%; }

/* 2. Dark stat strip: bright, readable gold numerals (was inheriting a dark gradient) */
section.stat-strip .stat-num, .stat-strip-grid .stat-num {
  background: linear-gradient(180deg, #F3E6C4 0%, #E8D5A3 45%, #C9A96E 100%) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: var(--gold-light) !important;
}
.stat-strip-grid .stat-suffix { -webkit-text-fill-color: var(--gold); color: var(--gold); }
.stat-strip-grid .stat-label { color: rgba(255,253,248,0.65) !important; }
/* contact page dark stats (flex variant) */
.stat-strip .hero-stat-num { color: var(--gold-light) !important; }
.stat-strip .hero-stat-label { color: rgba(255,253,248,0.6) !important; }

/* 3. ₹3L / ₹5L plan price: solid, strong contrast */
.plan-duration {
  color: var(--earth) !important; font-weight: 500 !important;
  -webkit-text-fill-color: var(--earth) !important; background: none !important;
}
.plan-card:hover .plan-duration { color: var(--gold-dark) !important; -webkit-text-fill-color: var(--gold-dark) !important; }
.plan-unit { color: var(--gold-dark); }

/* 4. Gallery: uniform, perfectly aligned tiles (kills the oversized 4th tile) */
.gallery-item, .gallery-item:nth-child(4) {
  grid-column: auto !important; aspect-ratio: 4/3 !important;
  border-radius: 6px; overflow: hidden;
}
.gallery-grid [style*="aspect-ratio:1"] { aspect-ratio: 1 !important; }
.gallery-grid { gap: 16px !important; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 5. Equal grids: 6-item grids get 3 columns (3+3), never 4+2 */
.amenities-grid:has(> :nth-child(6):last-child),
.why-grid:has(> :nth-child(6):last-child),
.values-grid:has(> :nth-child(6):last-child) { grid-template-columns: repeat(3, 1fr) !important; }
.amenities-grid:has(> :nth-child(5):last-child) { grid-template-columns: repeat(3, 1fr) !important; }
.amenities-grid { gap: 16px !important; background: none !important; }
.why-grid { gap: 16px !important; background: none !important; }
.why-card { border: 1px solid rgba(201,169,110,0.22); border-radius: 6px; }

/* 6. Centered section headers: keep title + body centered together */
h2.section-title[style*="center"] + .section-body,
.section-eyebrow[style*="center"] + .section-title { margin-left: auto; margin-right: auto; }

/* 7. Footer social icons */
.social-row { display: flex; gap: 12px; align-items: center; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.35);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-light); text-decoration: none;
  transition: all 0.3s ease; background: rgba(201,169,110,0.06);
}
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-icon:hover { background: var(--gold); color: var(--earth); border-color: var(--gold); transform: translateY(-3px); }
.social-icon.wa:hover { background: #25D366; border-color: #25D366; color: #fff; }

@media (max-width: 900px) {
  .amenities-grid:has(> :nth-child(6):last-child),
  .why-grid:has(> :nth-child(6):last-child) { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .amenities-grid, .why-grid { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
