/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-main);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.4s ease, color 0.4s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── TOKENS ─── */
:root {
  --primary: #0F5BAA;
  --primary-light: #3884d6;
  --primary-dark: #083d78;
  --primary-dim: rgba(15, 91, 170, 0.12);
  --primary-glow: rgba(15, 91, 170, 0.25);
  --gold: #D4AF37;
  --gold-dim: rgba(212, 175, 55, 0.08);
  --gold-glow: rgba(212, 175, 55, 0.22);
  --bg-main: #ffffff;
  --bg-alt: #f4f7fb;
  --bg-card: #ffffff;
  --bg-input: #eef2f8;
  --border: rgba(15, 91, 170, 0.18);
  --text: #0f172a;
  --text-muted: #475569;
  --shadow-card: 0 4px 24px rgba(15, 91, 170, 0.08);
  --shadow-hover: 0 12px 40px rgba(15, 91, 170, 0.18);
  --radius: 14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --map-filter: none;
}

/* ─── DARK MODE TOKENS ─── */
[data-theme="dark"] {
  --primary: #4fa3ff;
  --primary-light: #7dc0ff;
  --primary-dark: #1a6fd4;
  --primary-dim: rgba(79, 163, 255, 0.12);
  --primary-glow: rgba(79, 163, 255, 0.2);
  --gold: #D4AF37;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.3);
  --bg-main: #0c1220;
  --bg-alt: #111827;
  --bg-card: #1a2440;
  --bg-input: #1e2d4a;
  --border: rgba(79, 163, 255, 0.18);
  --text: #e8f0fe;
  --text-muted: #94a3b8;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 12px 40px rgba(79, 163, 255, 0.2);
  --map-filter: invert(90%) hue-rotate(180deg) brightness(85%);
}

/* ─── UTILITIES ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
  scroll-margin-top: 100px;
}

.primary-text {
  color: var(--primary);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-heading {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 400; /* League Gothic is bold by default */
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}

.section-heading .primary-text {
  color: var(--gold);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b38f2a);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.6s ease;
  z-index: 1;
  border-radius: 50px;
}

.btn-primary:hover::after {
  background-position: 100% 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--gold-glow);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 13px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
  box-shadow: 0 4px 16px var(--primary-glow);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── DARK MODE TOGGLE ─── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--primary-dim);
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
}

.theme-toggle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--primary-glow);
  transform: scale(1.08);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 91, 170, 0.1);
  box-shadow: 0 1px 16px rgba(15, 91, 170, 0.05);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] #navbar {
  background: rgba(12, 18, 32, 0.94);
  border-bottom: 1px solid rgba(79, 163, 255, 0.12);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

#navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 28px rgba(15, 91, 170, 0.1);
}

[data-theme="dark"] #navbar.scrolled {
  background: rgba(12, 18, 32, 0.98);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}


.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

/* ─── DROPDOWN MENU ─── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  min-width: 180px;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.dropdown-link:hover {
  color: var(--primary);
  background: var(--primary-dim);
}

.nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

.nav-link.nav-cta {
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 8px 22px;
  border-radius: 50px;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 2px 10px var(--primary-glow);
}

.nav-link.nav-cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff !important;
  box-shadow: 0 4px 18px var(--primary-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .mobile-menu {
  background: rgba(12, 18, 32, 0.97);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mob-link {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.mob-link:hover {
  color: var(--primary);
}

/* ─── MOBILE DROPDOWN ─── */
.mob-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mob-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--primary-dim);
  padding: 16px 32px;
  border-radius: 12px;
  width: 100%;
}

.mob-sublink {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.mob-sublink:hover {
  color: var(--primary);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

/* ─── HERO: STATIC LUXURY HERO ─── */
.hero-static {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  background: 
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(15, 91, 170, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(15, 91, 170, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f9 50%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

[data-theme="dark"] .hero-static {
  background: 
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79, 163, 255, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(79, 163, 255, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #060b13 0%, #0a111e 50%, #0d1728 100%);
}

.hero-ambient-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90vw);
  height: 380px;
  background: radial-gradient(circle, rgba(15, 91, 170, 0.14) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .hero-ambient-glow {
  background: radial-gradient(circle, rgba(79, 163, 255, 0.18) 0%, transparent 70%);
}

.hero-static-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Badge */
.hero-badge-wrap {
  margin-bottom: 22px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  background: var(--primary-dim);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  box-shadow: 0 2px 14px var(--primary-glow);
}

/* Headline */
.hero-headline {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Gradient accent */
.hero-gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

[data-theme="dark"] .hero-gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 38px;
  line-height: 1.7;
  font-weight: 400;
}

/* Action buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-ghost-hero {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost-hero:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
  box-shadow: 0 6px 20px var(--primary-glow);
}

/* Stats container card */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-stats:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.stat-item {
  text-align: center;
  position: relative;
  min-width: 140px;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-sym {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--gold);
  font-weight: 700;
  margin-left: 2px;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }
  .stat-item {
    min-width: 120px;
  }
}

/* Trust pills bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color var(--transition), color var(--transition);
}

.trust-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pill-dot {
  color: var(--gold);
  font-size: 0.7rem;
}





/* ─── ABOUT ─── */
.about-section {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-para {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1.02rem;
  font-weight: 400;
}

.about-para strong {
  color: var(--gold);
  font-weight: 600;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--gold-dim);
  transition: var(--transition);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.value-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.value-icon {
  color: var(--gold);
}

/* ─── ABOUT CARD STACK — ANIMATIONS ─── */
.about-card-stack {
  position: relative;
  height: 400px;
  perspective: 900px;
  transform-style: preserve-3d;
  /* JS will set --rx and --ry for mouse tilt */
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.08s linear;
  will-change: transform;
}

/* Keyframe definitions */
@keyframes floatA {

  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0px) rotate(1.5deg);
  }

  50% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

@keyframes floatC {

  0%,
  100% {
    transform: translateY(0px) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0px rgba(15, 91, 170, 0.0), 0 4px 20px rgba(15, 91, 170, 0.25);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(15, 91, 170, 0.06), 0 8px 36px rgba(15, 91, 170, 0.45);
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes glowPing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 0;
  }
}

.about-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  will-change: transform;
}

.ac-1 {
  top: 0;
  left: 0;
  width: 175px;
  animation: floatA 5.2s ease-in-out infinite;
  animation-delay: 0s;
  z-index: 3;
}

.ac-2 {
  top: 70px;
  right: 0;
  width: 175px;
  animation: floatB 4.5s ease-in-out infinite;
  animation-delay: -1.5s;
  z-index: 3;
}

.ac-3 {
  bottom: 10px;
  left: 20px;
  width: 210px;
  animation: floatC 6s ease-in-out infinite;
  animation-delay: -3s;
  z-index: 3;
}

/* Gold shimmer on numbers */
.ac-num {
  font-family: 'League Gothic', sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg,
      var(--gold) 0%,
      #fcebb3 30%,
      #ffffff 50%,
      #fcebb3 70%,
      var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}

.ac-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Floating badge — minimal ring style */
.about-floating-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: badgePulse 4s ease-in-out infinite;
  z-index: 10;
  cursor: default;
}

/* Ping ring behind badge */
.about-floating-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  animation: glowPing 3s ease-out infinite;
  pointer-events: none;
}

.about-floating-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  animation: glowPing 3s ease-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}

.badge-logo {
  width: 50px;
  height: 80px;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
  opacity: 0.92;
}

.about-floating-badge span {
  display: none;
}

/* Thin gold connecting lines (decorative) */
.about-card-stack .stack-line {
  position: absolute;
  background: linear-gradient(to right, transparent, rgba(15, 91, 170, 0.2), transparent);
  height: 1px;
  width: 60%;
  left: 20%;
  top: 50%;
  z-index: 1;
  animation: floatB 5s ease-in-out infinite;
}


/* ─── SERVICES ─── */
.services-section {
  background: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--bg-card), rgba(212, 175, 55, 0.02));
}

.svc-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.svc-icon-wrap {
  margin-bottom: 20px;
}

.svc-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.svc-title {
  font-family: 'League Gothic', sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 12px;
}

.svc-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-list {
  margin-bottom: 24px;
}

.svc-list li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-left: 16px;
  position: relative;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.svc-cta {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.svc-cta:hover {
  letter-spacing: 0.05em;
}

/* ─── TRUST ─── */
.trust-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.trust-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}

.trust-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.trust-card:hover .trust-icon {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.trust-card h4 {
  font-family: 'League Gothic', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ─── PROPERTIES ─── */
.properties-section {
  background: var(--bg-main);
}

.prop-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.prop-tab {
  padding: 8px 20px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.prop-tab::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.prop-tab.active {
  color: var(--text);
  font-weight: 600;
}

.prop-tab.active::after {
  transform: scaleX(1);
}

.prop-tab:hover:not(.active) {
  color: var(--gold);
}

.prop-cta-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.prop-cta-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.prop-cta-block h3 {
  font-family: 'League Gothic', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.prop-cta-block p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ─── PROPERTY CARDS ─── */
.prop-listings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.prop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.prop-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.08);
}

.prop-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--bg-card), rgba(212, 175, 55, 0.015));
}

.prop-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 20px 0;
}

.prop-tag--primary {
  color: var(--gold);
}

.prop-card-icon {
  font-size: 2.4rem;
  padding: 10px 20px 0;
}

.prop-card-body {
  padding: 12px 20px 16px;
  flex: 1;
}

.prop-card-title {
  font-family: 'League Gothic', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 6px;
}

.prop-card-loc {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.prop-card-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.prop-card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.prop-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prop-spec-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prop-spec-val {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.prop-card-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border);
}

.prop-enquire-btn {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.prop-enquire-btn:hover {
  letter-spacing: 0.06em;
}

.prop-bottom-cta {
  text-align: center;
  padding: 32px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.prop-bottom-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── FOOTER SOCIAL ─── */
.footer-social {
  margin-top: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}



/* ─── CONTACT ─── */
.contact-section {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.contact-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item-val {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-item-val:hover {
  color: var(--primary);
}

/* ─── INQUIRY FORM ─── */
.inquiry-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-steps {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.form-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.form-step.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.form-step.done {
  border-color: var(--primary);
  color: var(--primary);
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.form-panel-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group select option {
  background: var(--bg-input);
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.radio-opt:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.radio-opt input {
  accent-color: var(--primary);
}

.radio-opt:has(input:checked) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}

.form-btn-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 8px;
}

.form-next {
  width: 100%;
}

.success-wrap {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), #0a3d72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  margin: 0 auto 20px;
  font-weight: 700;
}

.success-wrap h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.success-wrap p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-links-col h5 {
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a,
.footer-links-col span {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-tagline {
  color: var(--primary) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-card-stack {
    height: 280px;
  }
}

/* ─── ABOUT SUBPAGE STYLES ─── */
.about-page-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at 60% 0%, rgba(15, 91, 170, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 80%, rgba(15, 91, 170, 0.1) 0%, transparent 60%),
    linear-gradient(160deg, #f0f4f8 0%, #e2e8f0 50%, #cbd5e1 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.about-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-hero-headline {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}

.about-hero-headline span {
  color: var(--gold);
}

.about-hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mission-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.08);
}

.m-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.m-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.mission-card:hover .m-icon {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.mission-card h3 {
  font-family: 'League Gothic', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.mission-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding-left: 40px;
}

.timeline-section {
  background: var(--bg-alt);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.t-dot {
  position: absolute;
  left: -40px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--bg-main);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold-glow);
}

.t-year {
  font-family: 'League Gothic', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.t-content h4 {
  font-family: 'League Gothic', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 10px;
}

.t-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    padding: 120px 0 60px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-pad {
    padding: 70px 0;
  }

  .prop-listings-grid {
    grid-template-columns: 1fr;
  }

  .prop-bottom-cta {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .inquiry-form-wrap {
    padding: 24px 20px;
  }

  .form-btn-row {
    flex-direction: column-reverse;
  }
}


/* ═══════════════════════════════════════════════════════
   ─── CALCULATOR PAGE ───
═══════════════════════════════════════════════════════ */
.calc-page-wrap {
  padding: 140px 0 80px;
  background: var(--bg-alt);
  min-height: 100vh;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.card-shadow {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px;
  border: 1px solid var(--border);
}

.calc-group {
  margin-bottom: 28px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.calc-label span {
  color: var(--primary);
  font-size: 1.1rem;
}

.calc-tabs {
  display: flex;
  background: var(--bg-input);
  border-radius: 50px;
  padding: 6px;
  gap: 6px;
}

.calc-tab {
  flex: 1;
  padding: 12px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.calc-tab.active {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.calc-inputs select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.calc-inputs select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.calc-slider {
  width: 100%;
  height: 8px;
  background: var(--bg-input);
  border-radius: 8px;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 8px var(--gold-glow);
  transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.calc-output {
  background: linear-gradient(145deg, #111827, #070b13);
  color: #fff;
  position: sticky;
  top: 120px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
}

.output-inner {
  text-align: center;
}

#result-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.95;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-main {
  font-family: 'League Gothic', sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.result-main .rupee {
  font-size: 2rem;
  opacity: 0.8;
  font-weight: 400;
}

.result-sub {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 32px;
}

.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.r-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.r-stat-lbl {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.r-stat-val {
  font-size: 1.1rem;
  font-weight: 600;
}

.text-green {
  color: #a7f3d0;
}

.disclaimer {
  font-size: 0.7rem;
  opacity: 0.6;
  line-height: 1.5;
  text-align: left;
}

.calc-output .btn-primary {
  background: #fff;
  color: var(--primary);
}

.calc-output .btn-primary:hover {
  background: var(--bg-alt);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .calc-output {
    position: static;
  }
}

/* ═══════════════════════════════════════════════════════
   ─── ENHANCEMENTS & DARK MODE OVERRIDES ───
═══════════════════════════════════════════════════════ */

/* ─── NAV LINK ANIMATED UNDERLINE ─── */
.nav-link:not(.nav-cta) {
  position: relative;
}

.nav-link:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:not(.nav-cta):hover::after,
.nav-link:not(.nav-cta).active::after {
  width: 100%;
}

/* ─── SECTION DIVIDER GRADIENT LINE ─── */
.section-pad+.section-pad {
  border-top: 1px solid var(--border);
}

/* ─── TRUST CARDS ENHANCED ─── */
.trust-card {
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.trust-card:hover {
  box-shadow: var(--shadow-hover);
}

/* ─── PROPERTY CARDS ENHANCED ─── */
.prop-card {
  box-shadow: var(--shadow-card);
}

.prop-card:hover {
  box-shadow: var(--shadow-hover);
}

/* ─── ABOUT CARDS ENHANCED ─── */
.about-card {
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* ─── HERO BADGE PULSE ─── */
.hero-badge {
  animation: heroBadgePulse 3s ease-in-out infinite;
}

@keyframes heroBadgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--primary-glow);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(15, 91, 170, 0);
  }
}

[data-theme="dark"] .hero-badge {
  animation: heroBadgePulseDark 3s ease-in-out infinite;
}

@keyframes heroBadgePulseDark {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 163, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(79, 163, 255, 0);
  }
}

/* ─── HERO HEADLINE TEXT IN DARK MODE ─── */
[data-theme="dark"] .hero-headline {
  text-shadow: 0 4px 40px rgba(79, 163, 255, 0.15);
}

/* ─── SECTION LABEL ACCENT BAR ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── ABOUT SECTION DARK MODE ─── */
[data-theme="dark"] .about-section {
  background: var(--bg-alt);
}

[data-theme="dark"] .about-card {
  background: rgba(13, 20, 35, 0.65);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .about-floating-badge {
  background: rgba(12, 18, 32, 0.85);
  border-color: var(--gold);
}

/* ─── SERVICES SECTION DARK MODE ─── */
[data-theme="dark"] .services-section {
  background: var(--bg-main);
}

[data-theme="dark"] .service-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .service-card--featured {
  background: linear-gradient(160deg, var(--bg-card), rgba(212, 175, 55, 0.03));
  border-color: var(--gold);
}

[data-theme="dark"] .svc-list li {
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

/* ─── TRUST SECTION DARK MODE ─── */
[data-theme="dark"] .trust-section {
  background: var(--bg-alt);
}

[data-theme="dark"] .trust-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ─── PROPERTIES SECTION DARK MODE ─── */
[data-theme="dark"] .properties-section {
  background: var(--bg-main);
}

[data-theme="dark"] .prop-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .prop-card--featured {
  background: linear-gradient(160deg, var(--bg-card), rgba(212, 175, 55, 0.02));
  border-color: var(--gold);
}

[data-theme="dark"] .prop-card-specs {
  border-top-color: rgba(212, 175, 55, 0.15);
}

[data-theme="dark"] .prop-bottom-cta {
  border-color: rgba(212, 175, 55, 0.2);
}

/* ─── CONTACT SECTION DARK MODE ─── */
[data-theme="dark"] .contact-section {
  background: var(--bg-alt);
}

[data-theme="dark"] .inquiry-form-wrap {
  background: var(--bg-card);
  border-color: rgba(212, 175, 55, 0.25);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--bg-input);
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.2);
}

[data-theme="dark"] .form-group select option {
  background: var(--bg-input);
  color: var(--text);
}

[data-theme="dark"] .radio-opt {
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
}

/* ─── FOOTER DARK MODE ─── */
[data-theme="dark"] .footer {
  background: #080e1a;
  border-top-color: rgba(212, 175, 55, 0.15);
}

[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(212, 175, 55, 0.1);
}

[data-theme="dark"] .social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── ABOUT PAGE HERO DARK MODE ─── */
[data-theme="dark"] .about-page-hero {
  background:
    radial-gradient(ellipse at 60% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0c1220 0%, #0e1830 50%, #091428 100%);
  border-bottom-color: rgba(212, 175, 55, 0.15);
}

/* ─── ABOUT PAGE MISSION/TIMELINE DARK MODE ─── */
[data-theme="dark"] .mission-card {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .timeline-section {
  background: var(--bg-alt);
}

[data-theme="dark"] .t-dot {
  background: var(--bg-main);
}

[data-theme="dark"] .trust-bg-pattern {
  opacity: 0.04;
}

/* .stat-num gradient handled directly in hero styles */


/* ─── ENHANCED CONTACT ITEM ICON ─── */
.contact-item-icon {
  transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  transform: scale(1.08);
}

/* ─── FORM FOCUS GLOW ─── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px var(--gold-dim);
}

/* ─── PROP TAB ENHANCED ─── */
.prop-tab.active {
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* ─── SMOOTH THEME TRANSITION FOR ALL ELEMENTS ─── */
*,
*::before,
*::after {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* Override: keep transform transitions snappy */
.reveal-up,
.reveal-left,
.reveal-right,
.service-card,
.trust-card,
.prop-card,
.btn-primary,
.btn-ghost,
.theme-toggle,
.nav-link,
.social-link,
.value-pill,
.contact-item-icon,
.prop-tab,
.mission-card,
.about-card {
  transition: var(--transition);
}

.btn-primary {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.6s ease;
}

/* ─── TOAST NOTIFICATION ─── */
#toast {
  visibility: hidden;
  min-width: 280px;
  background-color: var(--bg-card);
  color: var(--text);
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 3000;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.3s, bottom 0.3s, visibility 0.3s;
  font-weight: 500;
  font-size: 0.95rem;
}

#toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

/* ─── RESPONSIVE: MOBILE ─── */
@media (max-width: 768px) {
  /* Hero */
  .hero-scroll-container {
    height: 350vh;
  }
  .hero-headline {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-num {
    font-size: 2.2rem;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  .hero-particles {
    display: none; /* performance on mobile */
  }
  .hero-progress-track {
    width: 140px;
  }

  /* Navigation */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .theme-toggle { margin-right: 8px; }

  /* About grid */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-card-stack { max-width: 360px; margin: 0 auto; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; }

  /* Properties */
  .prop-listings-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 220px; text-align: center; }
  .hero-badge { font-size: 0.62rem; letter-spacing: 0.18em; padding: 6px 18px; }
}

/* ─── HIDE NETLIFY BADGE & DRAWER ─── */
#nl-hud-frame,
#nl-badge-frame,
iframe[id^="nl-"],
iframe[src*="netlify"],
[data-netlify-badge],
.netlify-hud,
netlify-drawer {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}
