/* ============================================================
   DURGA REALITY — Premium Redesign
   Design: Deep charcoal + ivory + saffron gold palette
   Type: Playfair Display (display) + DM Sans (body)
   Signature: Animated land-survey grid SVG on hero
============================================================ */

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

:root {
  --black: #0A0A0A;
  --charcoal: #141414;
  --dark: #1A1A1A;
  --dark2: #222222;
  --ivory: #F7F3ED;
  --ivory2: #EFE9E0;
  --white: #FFFFFF;
  --gold: #F5892A;
  --gold2: #E07A1E;
  --crimson: #C8281A;
  --sage: #8B9A7B;
  --text-body: #4A4A4A;
  --text-muted: #777;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.1);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --sh-gold: 0 8px 40px rgba(245,137,42,0.25);
  --sh-dark: 0 20px 60px rgba(0,0,0,0.4);

  --ease-out: cubic-bezier(0.22,1,0.36,1);
  --ease-in-out: cubic-bezier(0.65,0,0.35,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--text-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Cursor ── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  transition: transform 0.1s, background 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(245,137,42,0.6);
  transition: transform 0.15s var(--ease-out), width 0.2s, height 0.2s, border-color 0.2s;
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Scroll bar ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9998;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  width: 0%; transition: width 0.1s;
}

/* ── Wrap ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .wrap { padding: 0 20px; } }

/* ── Sections ── */
.section { padding: 110px 0; }

/* ── Eyebrow tag ── */
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); background: rgba(245,137,42,0.1);
  border: 1px solid rgba(245,137,42,0.25);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow-tag.light { color: var(--gold); background: rgba(245,137,42,0.15); border-color: rgba(245,137,42,0.3); }

/* ── Section headings ── */
.section-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 20px;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-h2.light { color: var(--ivory); }
.section-h2.light em { color: var(--gold); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }
.lead.light { color: rgba(247,243,237,0.7); }
.body-p { font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 18px; }
.body-p strong { color: var(--charcoal); font-weight: 600; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--white); font-weight: 600; font-size: 0.9rem;
  padding: 14px 28px; border-radius: var(--r-md);
  border: none; cursor: pointer;
  box-shadow: var(--sh-gold);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 12px 48px rgba(245,137,42,0.4); }
.btn-primary:active { transform: translateY(0); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(247,243,237,0.85); font-weight: 500; font-size: 0.95rem;
  transition: gap 0.2s, color 0.2s;
}
.btn-text:hover { color: var(--white); gap: 14px; }
.btn-text .btn-arrow { transition: transform 0.2s; }
.btn-text:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid rgba(247,243,237,0.3);
  color: var(--ivory); padding: 14px 28px; border-radius: var(--r-md);
  font-weight: 500; font-size: 0.9rem; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover { background: rgba(247,243,237,0.08); border-color: rgba(247,243,237,0.5); }

/* ── Reveal animations ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  padding: 0;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  height: 74px; display: flex; align-items: center; justify-content: space-between;
}
@media(max-width:768px){ .nav-inner { padding: 0 20px; height: 64px; } }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 900; color: var(--white);
  letter-spacing: 0.08em; line-height: 1;
}
.logo-sub {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }
@media(max-width:900px){ .nav-links { display: none; } }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  background: var(--gold); color: var(--white);
  font-size: 0.82rem; font-weight: 600; padding: 9px 20px;
  border-radius: var(--r-sm); letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }
@media(max-width:640px){ .nav-cta { display: none; } }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transform-origin: center; transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.hamburger.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:last-child { transform: rotate(-45deg) translate(5px, -5px); }
@media(max-width:900px){ .hamburger { display: flex; } }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
  padding: 24px 48px 32px; border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.mobile-menu.open { display: flex; max-height: 600px; }
@media(max-width:768px){ .mobile-menu { padding: 24px 20px 32px; } }

.mm-link {
  font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.8);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mm-link:hover { color: var(--white); }
.mm-link.mm-cta {
  background: var(--gold); color: var(--white);
  border-radius: var(--r-sm); padding: 14px 20px;
  text-align: center; margin-top: 16px; border: none; font-weight: 600;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; height: 100svh; min-height: 680px;
  display: flex; align-items: flex-end; overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { object-fit: cover; transform-origin: center; animation: heroZoom 12s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.04); } }

.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.7) 75%,
    rgba(10,10,10,0.92) 100%
  );
}

/* Survey grid SVG */
.survey-grid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}
.s-line {
  stroke: rgba(245,137,42,0.15); stroke-width: 0.5;
  stroke-dasharray: 8 6;
  animation: dashMove 20s linear infinite;
}
@keyframes dashMove { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -100; } }

.s-plot {
  fill: rgba(245,137,42,0.04);
  stroke: rgba(245,137,42,0.5); stroke-width: 1.5;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawPlot 2s 0.8s var(--ease-out) forwards;
}
@keyframes drawPlot { to { stroke-dashoffset: 0; } }

.s-dot {
  fill: var(--gold); opacity: 0;
  animation: dotPop 0.3s ease forwards;
}
.s-dot:nth-child(1) { animation-delay: 2.5s; }
.s-dot:nth-child(2) { animation-delay: 2.7s; }
.s-dot:nth-child(3) { animation-delay: 2.9s; }
.s-dot:nth-child(4) { animation-delay: 3.1s; }
@keyframes dotPop { from { opacity:0; transform: scale(0); } to { opacity:1; transform: scale(1); } }

.s-label {
  font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 500;
  fill: rgba(245,137,42,0.9); text-anchor: middle;
  opacity: 0; animation: fadeIn 0.5s 3.2s ease forwards;
}
.s-label-sm {
  font-family: 'DM Mono', monospace; font-size: 10px;
  fill: rgba(245,137,42,0.6); text-anchor: middle;
  opacity: 0; animation: fadeIn 0.5s 3.4s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  padding-bottom: 140px; width: 100%;
}
@media(max-width:768px){ .hero-content { padding: 0 20px 120px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 0.7rem;
  color: rgba(247,243,237,0.7); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px; opacity: 0; animation: slideUp 0.6s 0.2s var(--ease-out) forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }

.hero-h1 {
  display: flex; flex-direction: column; gap: 4px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; color: var(--white); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.h1-line {
  display: block; opacity: 0; transform: translateY(30px);
  animation: slideUp 0.7s var(--ease-out) forwards;
}
.h1-line[data-delay="0"] { animation-delay: 0.4s; }
.h1-line[data-delay="1"] { animation-delay: 0.55s; }
.h1-line[data-delay="2"] { animation-delay: 0.7s; }
.h1-line em { font-style: italic; color: var(--gold); }
.h1-accent { color: var(--gold); }

@keyframes slideUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}

.hero-p {
  max-width: 540px; font-size: 1.05rem; color: rgba(247,243,237,0.8);
  line-height: 1.75; margin-bottom: 36px;
  opacity: 0; animation: slideUp 0.7s 0.85s var(--ease-out) forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  opacity: 0; animation: slideUp 0.7s 1s var(--ease-out) forwards;
}

/* Hero metrics bar */
.hero-metrics {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: center; align-items: center; gap: 0;
  opacity: 0; animation: slideUp 0.7s 1.2s var(--ease-out) forwards;
}
.metric {
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 44px; text-align: center;
}
@media(max-width:768px){ .metric { padding: 18px 18px; } }
.metric-n {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.metric-unit { font-size: 1.2rem; color: var(--gold); font-weight: 700; display: inline; }
.metric-l { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; margin-top: 6px; text-transform: uppercase; }
.metric-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 74px; right: 48px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 0.7s 1.5s ease forwards;
}
.scroll-track {
  width: 1px; height: 60px; background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: 0; left: 0; right: 0;
  height: 20px; background: var(--gold);
  animation: scrollThumb 2s ease-in-out infinite;
}
@keyframes scrollThumb {
  0% { top: -20px; } 50% { top: 20px; } 100% { top: 60px; }
}
@media(max-width:768px){ .scroll-cue { display: none; } }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--charcoal); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-track {
  display: flex; align-items: center; gap: 0; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-strip:hover .trust-track { animation-play-state: paused; }

.t-item {
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em; padding: 0 28px;
}
.t-sep { color: var(--gold); opacity: 0.4; }

/* ============================================================
   ABOUT
============================================================ */
.about-section { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media(max-width:900px){ .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-visual { position: relative; }
.about-img-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; }
.about-img { transition: transform 0.6s var(--ease-out); }
.about-img-frame:hover .about-img { transform: scale(1.04); }

.img-accent-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
}

.about-stat-float {
  position: absolute; bottom: 32px; right: -24px;
  background: var(--charcoal); color: var(--white);
  padding: 20px 24px; border-radius: var(--r-lg);
  box-shadow: var(--sh-dark); text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.asf-num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.asf-num span { font-size: 1.2rem; }
.asf-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 6px; line-height: 1.4; }

.about-cert {
  position: absolute; top: 24px; left: -16px;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  color: var(--white); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 8px 16px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(245,137,42,0.4);
}
.cert-icon { margin-right: 6px; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.pillar-title { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; }
.pillar-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
@media(max-width:480px){ .about-pillars { grid-template-columns: 1fr; } }

/* ============================================================
   WHY US
============================================================ */
.why-section { background: var(--charcoal); }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-xl); overflow: hidden;
}
@media(max-width:900px){ .why-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: rgba(255,255,255,0.03); padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
  transition-delay: var(--delay);
}
.why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-out);
}
.why-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.why-card:hover::before { transform: scaleX(1); }

.wc-num {
  font-family: 'DM Mono', monospace; font-size: 0.7rem;
  color: rgba(255,255,255,0.2); letter-spacing: 0.1em; margin-bottom: 16px;
}
.wc-icon { font-size: 1.8rem; margin-bottom: 18px; }
.wc-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.wc-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.wc-line { width: 32px; height: 2px; background: var(--gold); margin-top: 20px; opacity: 0.4; }

/* ============================================================
   PROCESS
============================================================ */
.process-section { background: var(--ivory); }

.process-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; margin-bottom: 56px;
}
@media(max-width:900px){ .process-track { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .process-track { grid-template-columns: 1fr; } }

.process-connector {
  position: absolute; top: 44px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, var(--gold), var(--crimson), var(--gold));
  opacity: 0.25; z-index: 0;
  pointer-events: none;
}
@media(max-width:900px){ .process-connector { display: none; } }

.process-step { position: relative; z-index: 1; transition-delay: var(--delay); }

.ps-bubble {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal), var(--dark2));
  border: 2px solid rgba(245,137,42,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.ps-bubble:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(245,137,42,0.25); transform: scale(1.05); }

.ps-num {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  color: var(--gold); letter-spacing: 0.1em; line-height: 1;
}
.ps-icon { font-size: 1.4rem; margin-top: 2px; }

.ps-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.ps-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.process-cta { text-align: center; }

/* ============================================================
   SOLUTIONS
============================================================ */
.solutions-section { background: var(--charcoal); padding-bottom: 110px; }
.solutions-section .section-head { margin-bottom: 52px; }

.sol-scroll-wrap { overflow-x: auto; padding: 8px 0 20px; cursor: grab; }
.sol-scroll-wrap:active { cursor: grabbing; }
.sol-scroll-wrap::-webkit-scrollbar { height: 4px; }
.sol-scroll-wrap::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.sol-scroll-wrap::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.sol-track {
  display: flex; gap: 24px; padding: 0 max(48px, calc((100vw - 1200px) / 2));
  width: max-content;
}

.sol-card {
  width: 340px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; transition: transform 0.3s var(--ease-out), border-color 0.3s;
  transition-delay: var(--delay);
}
.sol-card:hover { transform: translateY(-8px); border-color: rgba(245,137,42,0.35); }

.sol-img-wrap { position: relative; height: 220px; overflow: hidden; }
.sol-img { transition: transform 0.5s var(--ease-out); }
.sol-card:hover .sol-img { transform: scale(1.06); }
.sol-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
}
.sol-tag-pill {
  position: absolute; top: 16px; left: 16px;
  background: rgba(245,137,42,0.9); color: var(--white);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.sol-idx {
  position: absolute; bottom: 16px; right: 16px;
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.1); line-height: 1; letter-spacing: -0.04em;
}

.sol-body { padding: 28px 28px 32px; }
.sol-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.sol-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 18px; }

.sol-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.sol-features span {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--gold); background: rgba(245,137,42,0.1);
  border: 1px solid rgba(245,137,42,0.25);
  padding: 4px 10px; border-radius: 100px;
}

.sol-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 600; color: var(--gold);
  transition: gap 0.2s;
}
.sol-cta:hover { gap: 10px; }

/* ============================================================
   VISION
============================================================ */
.vision-section { position: relative; padding: 110px 0; overflow: hidden; }
.vision-bg { position: absolute; inset: 0; z-index: 0; }
.vision-img { object-fit: cover; }
.vision-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%);
}

.vision-content {
  position: relative; z-index: 1;
  max-width: 680px;
}
.vision-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900;
  color: var(--white); line-height: 1.2; margin-bottom: 24px;
}
.vision-h2 em { font-style: italic; color: var(--gold); }

.vision-p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 28px; }

.vision-quote {
  border-left: 3px solid var(--gold); padding-left: 20px;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  margin-bottom: 40px; line-height: 1.7;
}

.vision-stats {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 40px; background: rgba(255,255,255,0.05);
  border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden; width: fit-content;
}
.vs-item { padding: 20px 32px; text-align: center; }
.vs-n { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--gold); line-height: 1; }
.vs-l { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 5px; }
.vs-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-section { background: var(--ivory); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
@media(max-width:768px){ .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--white); padding: 36px;
  border-radius: var(--r-xl); border: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  transition-delay: var(--delay);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.tc-stars { font-size: 0.85rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.tc-text { font-size: 0.93rem; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.tc-name { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.tc-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.google-rating {
  display: flex; justify-content: center;
}
.gr-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); padding: 20px 36px; border-radius: var(--r-lg);
  border: 1px solid var(--border-light); box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.gr-g {
  width: 42px; height: 42px; border-radius: 50%;
  background: #4285F4; color: var(--white);
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gr-score { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); }
.gr-count { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.ci-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.ci-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; }

.ci-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.ci-item { display: flex; gap: 16px; }
.ci-icon { font-size: 1.2rem; width: 36px; text-align: center; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 4px; font-family: 'DM Mono', monospace; }
.ci-val { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.ci-val a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.ci-val a:hover { color: var(--gold); }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; height: 200px; border: 1px solid rgba(255,255,255,0.1); }

/* Form */
.form-panel {
  background: rgba(255,255,255,0.04); padding: 44px;
  border-radius: var(--r-xl); border: 1px solid rgba(255,255,255,0.07);
}
@media(max-width:560px){ .form-panel { padding: 28px 20px; } }

.fp-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.fp-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 32px; }

.cf { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:560px){ .cf-row { grid-template-columns: 1fr; } }

.cf-group { display: flex; flex-direction: column; gap: 8px; }
.cf-group label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.req { color: var(--gold); }

.cf-group input, .cf-group select, .cf-group textarea {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  padding: 12px 16px; border-radius: var(--r-sm); outline: none; width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.cf-group input::placeholder, .cf-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.cf-group select option { background: var(--charcoal); color: var(--white); }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: var(--gold); background: rgba(245,137,42,0.06);
}
.cf-group textarea { resize: vertical; min-height: 100px; }
.char-count { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-align: right; }

.submit-btn { width: 100%; justify-content: center; margin-top: 4px; }

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.visible { display: block; }
.fs-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  color: var(--white); font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.form-success p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ============================================================
   CTA STRIP
============================================================ */
.cta-strip {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  padding: 72px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.cta-p { font-size: 0.95rem; color: rgba(255,255,255,0.55); }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--black); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { margin-bottom: 18px; display: inline-flex; }
.logo-name.light { color: var(--white); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 24px; }

.social-row { display: flex; gap: 10px; }
.s-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.s-btn:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.footer-col h5 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9); font-weight: 600; margin-bottom: 20px;
  font-family: 'DM Mono', monospace;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0; text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.rera { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ============================================================
   FLOATING ELEMENTS
============================================================ */
/* WhatsApp */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse { 0%,100%{ transform:scale(1);opacity:0.7; } 50%{ transform:scale(1.2);opacity:0; } }

/* Back to top */
.btt {
  position: fixed; bottom: 92px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20,20,20,0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  font-size: 1rem; cursor: pointer;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.btt.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.btt:hover { background: var(--gold); color: var(--white); border-color: transparent; }

/* Scroll bar */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9998;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  width: 0; transition: width 0.1s linear;
}

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