/* ============================================
   ZENURA REALTY — REFINED PROFESSIONAL PALETTE
   Inspired by: Sotheby's, Knight Frank, Compass
   Rule: Gold leads. Dark base. Green sparingly.
   ============================================ */

:root {
  /* ── BASE BACKGROUNDS (3 distinct levels, not 5 near-identical ones) ── */
  --bg-deep: #0A111F;
  /* Sophisticated Midnight Navy — hero, footer, contact */
  --bg-mid: #101929;
  /* Mid — about, values-left, nav scrolled */
  --bg-surface: #151F33;
  /* Surface — services, impact, values-right */

  /* ── BRAND ACCENTS ── */
  --gold: #C9A84C;
  /* Primary accent — used only in key moments */
  --gold-light: #E8C97A;
  /* Hover / glow states */
  --gold-dim: rgba(201, 168, 76, 0.12);

  /* ── TEXT ── */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.35);

  /* ── SERVICE CARD (light section) ── */
  --card-bg: #F4F1EC;
  /* Warm ivory — luxurious, not clinical */
  --card-head: #1C1C1C;
  /* Near-black heading — clear contrast */
  --card-body: #5A5A5A;
  /* Mid-gray body — readable */

  /* ── BORDERS ── */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 168, 76, 0.25);

  /* ── TYPOGRAPHY ── */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
}

body {
  background: #FFFFFF;
  color: #111827;
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════
   CUSTOM CURSOR (desktop only)
══════════════════════════════════════════ */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform .1s, background .2s, border .2s;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, .45);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all .12s ease;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 17, 31, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .6s cubic-bezier(.19, 1, .22, 1);
}

#nav.scrolled {
  padding: 1.2rem 4%;
  background: rgba(10, 17, 31, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

#nav.scrolled .nav-center a {
  color: var(--text-secondary);
}

#nav.scrolled .nav-center a:hover {
  color: var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 90px;
  width: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(.19, 1, .22, 1);
}

#nav.scrolled .nav-logo img {
  height: 68px;
  width: 68px;
}

.footer-logo {
  height: 84px;
  width: 84px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
  display: block;
}

.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 2rem;
}

.nav-center a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .3s;
}

.nav-center a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border-gold);
  padding: .6rem 1.8rem;
  border-radius: 50px;
  transition: .3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ══════════════════════════════════════════
   HAMBURGER & MOBILE MENU
══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  background: rgba(10, 17, 31, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  width: 100%;
}

.mobile-menu .mob-link {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mob-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mob-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mob-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mob-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mob-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mob-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mob-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open .mob-link:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu .mob-link:hover {
  color: var(--gold);
}

.mobile-menu .mob-wa {
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-size: 1.4rem;
  margin-top: 1rem;
}

.mobile-menu .mob-wa:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

@media (max-width: 992px) {
  .nav-center, .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem 4% 6rem;
}

/* ── VIDEO BACKGROUND ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

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


.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      rgba(7, 9, 14, .96) 0%,
      rgba(7, 9, 14, .45) 50%,
      rgba(7, 9, 14, .2) 100%);
}

.hero-text {
  position: relative;
  z-index: 3;
}

.hero-tagline {
  font-size: .75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -2px;
  color: #FFFFFF;
}

.hero-headline em {
  color: var(--gold);
  font-style: italic;
}

.hero-bottom {
  position: absolute;
  bottom: 3rem;
  left: 4%;
  right: 4%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  font-size: .65rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}

.scroll-bar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* ── HERO SLIDE DOTS ── */
.hero-dots {
  display: flex;
  align-items: center;
  gap: .6rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  transition: background .4s ease, width .4s ease;
  padding: 0;
}

.hero-dot:hover {
  background: rgba(201, 168, 76, 0.7);
}

.hero-dot.active {
  width: 52px;
  background: var(--gold);
}


.hero-slide-counter {
  font-size: .8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  font-family: var(--serif);
}

#slideNum {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   STRIP — Fixed marquee with proper overflow
══════════════════════════════════════════ */
.strip-wrapper {
  background: var(--gold);
  overflow: hidden;
  padding: .85rem 0;
}

.strip {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-deep);
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.strip .dot {
  opacity: .35;
}

/* ══════════════════════════════════════════
   SHARED TYPOGRAPHY
══════════════════════════════════════════ */
.section-tag {
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-tag.light {
  color: rgba(201, 168, 76, .8);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 2rem;
  color: #111827;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  background: #FFFFFF;
  min-height: 100vh;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-img-wrap {
  position: relative;
  overflow: visible;
  padding: 4rem 2rem 4rem 4%;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  filter: brightness(1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  transition: transform .6s ease;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.02);
}

.about-img-badge {
  display: none;
  /* Badge is already built into the zenurareality.png image */
}

.badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--bg-deep);
}

.badge-label {
  font-size: .6rem;
  letter-spacing: 1px;
  line-height: 1.3;
  color: var(--bg-deep);
}

.about-content {
  background: #FFFFFF;
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-para {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 0;
  border-top: none;
}

.astat {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fdfdfd;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.astat:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
}

/* Decorative Corner Accents (The "Frame Design") */
.astat::before,
.astat::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  transition: all 0.4s ease;
}

/* Top Left */
.astat::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

/* Bottom Right */
.astat::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

.astat:hover::before,
.astat:hover::after {
  width: 40px;
  height: 40px;
}

.astat-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.astat-unit {
  font-size: 1.4rem;
  color: var(--gold);
  margin-left: 2px;
}

.astat p {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B7280;
  margin-top: 0.8rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  padding: 10rem 6%;
  background: #F8F7F4;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.services-header {
  margin-bottom: 5rem;
  max-width: 700px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
}

.svc-card {
  background: var(--card-bg);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
  min-height: 240px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.svc-card:nth-child(even) {
  flex-direction: row-reverse;
}

.svc-img-box {
  width: 55%;
  height: auto;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  flex-shrink: 0;
}

.svc-card:nth-child(even) .svc-img-box {
  border-radius: 0 16px 16px 0;
}

.svc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Make sure the "G" in Growth Advisory isn't cropped */
.svc-card:nth-child(4) .svc-img-box img {
  object-position: 15% center;
}

.svc-content {
  width: 45%;
  padding: 1.5rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

/* Gold underline grows on hover */
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .5);
}

.svc-card:hover .svc-img-box img {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

/* Service number hover */
.svc-card:hover .svc-num {
  color: var(--gold);
}

/* We removed the full-card dark background hover to keep it cleaner, 
   but let's keep the arrow highlight */
.svc-card:hover .svc-arrow {
  opacity: 1;
  transform: rotate(-45deg) scale(1.2);
  color: var(--gold);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

/* We've removed featured card unique colors to keep all cards consistent as requested */
.svc-card.featured .svc-content {
  background: var(--card-bg);
}

.svc-card.featured .svc-num {
  color: rgba(0, 0, 0, .08);
}

.svc-card.featured h3 {
  color: var(--text-primary);
}

.svc-card.featured p {
  color: var(--text-secondary);
}

.svc-card.featured::before {
  transform: scaleX(1);
}

.svc-num {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: rgba(0, 0, 0, .12);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: .35s;
}

.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--card-head);
  margin-bottom: 0.6rem;
  line-height: 1.2;
  transition: color .35s;
}

.svc-card p {
  font-size: 1.12rem;
  color: var(--card-body);
  line-height: 1.6;
  transition: color .35s;
}

.svc-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  opacity: .15;
  transition: .4s;
  color: var(--card-head);
}

/* ══════════════════════════════════════════
   VALUES — PREMIUM REDESIGN
══════════════════════════════════════════ */
.values {
  position: relative;
  padding: 10rem 6%;
  background: #FFFFFF;
  overflow: hidden;
}

.values-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(201, 168, 76, .05) 0%, transparent 70%),
    radial-gradient(circle at 0% 100%, rgba(201, 168, 76, .02) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(201, 168, 76, .02) 0%, transparent 40%);
}

.values-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
  display: flex;
  flex-direction: column;
  alignment-baseline: center;
}

.values-header .section-tag {
  justify-content: center;
}

.values .section-heading {
  color: #111827;
}

.values-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4B5563;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.val-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .03);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform .4s cubic-bezier(0.2, 1, 0.3, 1), border-color .4s, background .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}

.val-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 168, 76, .08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.val-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .06), 0 0 20px rgba(201, 168, 76, .1);
}

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

.val-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.val-number {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  opacity: 1;
  letter-spacing: 2px;
}

.val-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, .2));
  transition: transform .4s;
}

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

.val-card-body h4 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.val-card-body p {
  font-size: .95rem;
  line-height: 1.7;
  color: #4B5563;
}

.val-card-bottom {
  margin-top: auto;
  padding-top: 1rem;
}

.val-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .3;
  transition: transform .4s, box-shadow .4s, opacity .4s;
}

.val-card:hover .val-dot {
  transform: scale(1.5);
  box-shadow: 0 0 10px var(--gold);
  opacity: 1;
}

/* Specific item height for the odd one out if 7 items */
.values-grid>.val-card:nth-child(7) {
  grid-column: span 1;
}

@media (min-width: 1024px) {

  /* Give slightly more prominence to first few */
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values {
    padding: 6rem 5%;
  }

  .val-card {
    padding: 2.5rem 2rem;
  }

  .val-card-body h4 {
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════════
   NRI — PREMIUM REDESIGN
══════════════════════════════════════════ */
.nri {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #FFFFFF;
  border-top: 3px solid var(--gold);
}

.nri-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(201, 168, 76, .04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(201, 168, 76, .02) 0%, transparent 60%),
    #FFFFFF;
}

/* ── HERO: Headline + Form ── */
.nri-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: center;
  gap: 0;
}

.nri-hero-left {
  padding: 8rem 5rem 8rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.nri-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 2.5rem;
  color: #111827;
}

.nri-headline em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.nri-subhead {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #4B5563;
  max-width: 480px;
  margin-bottom: 3.5rem;
}

.nri-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.nri-trust-item {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.nri-trust-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.nri-trust-label {
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9CA3AF;
}

.nri-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

/* ── ENQUIRY FORM ── */
.nri-form-wrap {
  background: #F9F8F5;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.nri-form-header {
  margin-bottom: 2.5rem;
}

.nri-form-tag {
  font-size: .68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.nri-form-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.nri-form-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: #111827;
  margin-bottom: .6rem;
  line-height: 1.1;
}

.nri-form-sub {
  font-size: .85rem;
  color: #9CA3AF;
}

.nri-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nri-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.nri-field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.nri-field label {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6B7280;
}

.nri-field input,
.nri-field select,
.nri-field textarea {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  color: #111827;
  font-size: .9rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color .25s, background .25s;
  width: 100%;
}

.nri-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.nri-field select option {
  background: #FFFFFF;
  color: #111827;
}

.nri-field input::placeholder,
.nri-field textarea::placeholder {
  color: #9CA3AF;
}

.nri-field input:focus,
.nri-field select:focus,
.nri-field textarea:focus {
  border-color: var(--gold);
  background: #FFFDF5;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .08);
}

.nri-field textarea {
  resize: vertical;
}

/* Checkbox interest grid */
.nri-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.nri-check {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.nri-check:hover {
  border-color: var(--gold);
  background: #FFFDF5;
}

.nri-check input {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.nri-check span {
  font-size: .82rem;
  color: #374151;
}

/* Submit button */
.nri-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1.2rem 2rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background .3s, color .3s, transform .2s;
  font-family: var(--sans);
}

.nri-submit-btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.nri-form-privacy {
  font-size: .72rem;
  color: #9CA3AF;
  text-align: center;
  margin-top: -.2rem;
}

/* WhatsApp button for NRI */
.nri-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #25D366;
  width: fit-content;
  transition: .3s;
}

.nri-wa-btn:hover {
  background: transparent;
  color: #25D366;
}


/* ══════════════════════════════════════════
   NRI RESPONSIVE
══════════════════════════════════════════ */
@media (max-width:1200px) {
  .nri-hero-left {
    padding: 6rem 4rem 6rem 5%;
  }

  .nri-form-wrap {
    padding: 4rem 3rem;
  }
}

@media (max-width:1024px) {
  .nri-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nri-hero-left {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 6rem 5%;
  }

  .nri-form-wrap {
    border-left: none;
    min-height: auto;
    padding: 4rem 5%;
  }
}

@media (max-width:768px) {
  .nri-hero-left {
    padding: 5rem 5%;
  }

  .nri-headline {
    letter-spacing: -1px;
  }

  .nri-trust-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nri-field-row {
    grid-template-columns: 1fr;
  }

  .nri-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .nri-form-wrap {
    padding: 3rem 5%;
  }

  .nri-why-left {
    padding: 0 5% 3rem;
  }

  .nri-form-title {
    font-size: 2rem;
  }
}

/* Shared buttons */
.btn-gold {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: .3s;
  cursor: pointer;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-gold.full-width {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 1.4rem;
}

.btn-outline {
  display: inline-block;
  padding: 1.1rem 3rem;
  border: 2px solid rgba(255, 255, 255, .25);
  color: var(--text-primary);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: .3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════
   IMPACT
══════════════════════════════════════════ */
.impact {
  background: #FFFFFF;
  color: #111827;
  padding: 8rem 6%;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.impact-big {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.impact-big.new-style {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.25;
  color: #fff;
  text-wrap: balance;
  background: linear-gradient(135deg, #fff 0%, #E8C97A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-big sup {
  font-size: .4em;
  color: var(--gold);
  vertical-align: baseline;
  margin-left: 0.4rem;
}

.impact-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: transparent;
}

.ig-item {
  background: var(--bg-deep);
  /* Unified card base */
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}

.ig-num {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.ig-item sup {
  font-size: 1.2rem;
  color: var(--gold);
}

.ig-item p {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-top: .5rem;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #FFFFFF;
  border-top: 3px solid var(--gold);
}

.contact-left {
  padding: 8rem 5rem 8rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.contact-info-list {
  margin-top: 3rem;
}

.ci {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ci span {
  font-size: 1.3rem;
}

.ci p {
  color: #374151;
  font-size: .95rem;
}

.contact-right {
  padding: 8rem 6% 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: #F9FAFB;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  color: #111827;
  font-size: .95rem;
  font-family: var(--sans);
  transition: .3s;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9CA3AF;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: #FFFDF5;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

.form-field textarea {
  resize: vertical;
}

/* ══════════════════════════════════════════
   IMPROVED FOOTER WITH ELEGANT BACKGROUND LOGO
══════════════════════════════════════════ */

/* ──────────────────────────────────────────
   OPTION 1: SUBTLE WATERMARK (RECOMMENDED)
   Elegant, professional, doesn't overpower content
────────────────────────────────────────── */
footer {
  background: #ffffff;
  /* User requested full background white */
  padding: 3rem 6%;
  /* Reduced footer size */
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  /* Dark subtle border */
  position: relative;
  overflow: hidden;
  color: #333333;
  /* Dark default text for readability */
}

.footer-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  /* Reduced logo size */
  height: 250px;
  background-image: url('assets/logo.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  /* Fully opaque original color */
  filter: none;
  mix-blend-mode: normal;
  /* Since the footer is white and logo has a white background, they blend perfectly naturally */
  z-index: 0;
  pointer-events: none;
}

/* Remove glow effect since the mask now blends it beautifully */


.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  /* Dark border */
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  /* Ensures content stays above the watermark */
}

.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: #0A111F;
  /* Dark navy to match Zenura */
  letter-spacing: 2px;
  margin-bottom: .5rem;
}

.footer-brand p {
  color: #555555;
  font-size: .85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns to perfectly balance the middle logo space */
  gap: 3rem;
}

.footer-links>div:first-child {
  padding-left: 25rem;
}

.footer-links h5 {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0A111F;
  /* Dark navy for contrast */
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  font-size: .95rem;
  color: #5A5A5A;
  text-decoration: none;
  margin-bottom: .8rem;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  /* Ensures content stays above the watermark */
}

.footer-bottom p {
  font-size: .8rem;
  color: #777777;
}

/* ══════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════ */
.wa-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .3);
  z-index: 9999;
  text-decoration: none;
  transition: .3s;
}

.wa-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, .45);
}

/* ══════════════════════════════════════════
   AI CHATBOT WIDGET
══════════════════════════════════════════ */
.zn-chat {
  position: fixed;
  bottom: 7.5rem;
  right: 2.5rem;
  z-index: 10000;
  font-family: var(--sans);
}

.zn-chat-btn {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #1A2C6E, #0B1630);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  box-shadow: 0 8px 30px rgba(10, 20, 60, .4);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.zn-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .3);
}

.zn-icon-close {
  display: none;
}

.zn-chat.open .zn-icon-chat {
  display: none;
}

.zn-chat.open .zn-icon-close {
  display: block;
}

.zn-notif-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 11px;
  height: 11px;
  background: #EF4444;
  border-radius: 50%;
  border: 2px solid var(--bg-deep);
  animation: blink 1.5s ease infinite;
}

.zn-chat.open .zn-notif-dot {
  display: none;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.zn-chat-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  background: #0F1626;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.22, 1, .36, 1);
}

.zn-chat.open .zn-chat-window {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.zn-chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, #1A2C6E 0%, #091535 100%);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.zn-chat-avatar {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}

.zn-chat-name {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
}

.zn-chat-status {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .1rem;
}

.zn-online-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  display: inline-block;
}

.zn-chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .4);
  font-size: 1rem;
  cursor: pointer;
  padding: .2rem .4rem;
  border-radius: 4px;
  transition: color .2s;
}

.zn-chat-close:hover {
  color: #fff;
}

.zn-chat-body {
  flex: 1;
  padding: 1.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-height: 320px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, .2) transparent;
}

.zn-msg {
  max-width: 84%;
  padding: .75rem 1rem;
  border-radius: 16px;
  font-size: .85rem;
  line-height: 1.55;
  animation: msgIn .3s ease;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.zn-msg.bot {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.zn-msg.user {
  background: linear-gradient(135deg, var(--gold), #B8922A);
  color: var(--bg-deep);
  font-weight: 500;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.zn-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: 60px;
}

.zn-typing span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  animation: typingDot 1.2s ease infinite;
}

.zn-typing span:nth-child(2) {
  animation-delay: .2s;
}

.zn-typing span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: .4
  }

  30% {
    transform: translateY(-5px);
    opacity: 1
  }
}

.zn-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .6rem 1.2rem;
  border-top: 1px solid var(--border-subtle);
}

.zn-qr {
  font-size: .73rem;
  padding: .4rem .9rem;
  background: rgba(201, 168, 76, .1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  border-radius: 50px;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
  font-family: var(--sans);
}

.zn-qr:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.zn-chat-input-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.2rem;
  border-top: 1px solid var(--border-subtle);
  background: #0A101E;
}

.zn-chat-input {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: .6rem 1rem;
  color: #fff;
  font-size: .85rem;
  outline: none;
  font-family: var(--sans);
  transition: border-color .2s;
}

.zn-chat-input:focus {
  border-color: rgba(201, 168, 76, .5);
}

.zn-chat-input::placeholder {
  color: var(--text-muted);
}

.zn-send-btn {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--bg-deep);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
  flex-shrink: 0;
}

.zn-send-btn:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

/* AI loading indicator */
.zn-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .65rem;
  color: var(--gold);
  opacity: .7;
  padding: .2rem .6rem;
  background: rgba(201, 168, 76, .1);
  border-radius: 20px;
  margin-top: .4rem;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.19, 1, .22, 1), transform .9s cubic-bezier(.19, 1, .22, 1);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   MOBILE NAVIGATION
══════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 9, 14, .97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mob-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}

.mob-link:hover {
  color: var(--gold);
}

.mob-wa {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #25D366 !important;
  border: 1px solid rgba(37, 211, 102, .3);
  padding: .8rem 2rem;
  border-radius: 50px;
  margin-top: 1rem;
}

.mob-wa:hover {
  background: rgba(37, 211, 102, .1);
}

/* ══════════════════════════════════════════
   HIDE CURSOR ON TOUCH DEVICES
══════════════════════════════════════════ */
@media (hover:none) {

  .cursor,
  .cursor-follower {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — LAPTOP (≤ 1280px)
══════════════════════════════════════════ */
@media (max-width:1280px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    padding: 6rem 4rem;
  }

  .contact-left {
    padding: 6rem 4rem 6rem 5%;
  }

  .contact-right {
    padding: 6rem 5% 6rem 4rem;
  }

  .footer-top {
    gap: 4rem;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width:1024px) {
  .slide {
    background-size: cover;
    background-position: center;
  }

  .nav-center {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  #nav {
    padding: 1.5rem 5%;
  }

  .hero {
    padding: 3rem 5% 8rem;
  }

  .about {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-img-wrap {
    height: 55vw;
  }

  .about-content {
    padding: 5rem 5%;
  }

  .services {
    padding: 6rem 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    background: none;
    gap: 1.5rem;
  }

  .svc-card {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
  }

  .values {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .values-left {
    padding: 5rem 5%;
  }

  .values-right {
    padding: 3rem 5% 5rem;
  }

  .nri {
    padding: 7rem 5%;
  }

  .nri-cards {
    grid-template-columns: 1fr 1fr;
  }

  .impact {
    padding: 6rem 5%;
  }

  .impact-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .contact-left {
    padding: 5rem 5%;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .contact-right {
    padding: 5rem 5%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT (≤ 768px)
══════════════════════════════════════════ */
@media (max-width:768px) {
  html {
    font-size: 15px;
  }

  #nav {
    padding: 0.8rem 5%;
  }

  .nav-logo img {
    height: 60px !important;
    width: 60px !important;
    padding: 3px !important;
  }

  #nav.scrolled .nav-logo img {
    height: 48px !important;
    width: 48px !important;
  }

  .hero {
    padding: 2rem 5% 6rem;
    align-items: flex-end;
  }

  .slide {
    background-size: cover;
    background-position: center;
  }

  .slide:first-child {
    background-position: 70% center;
    /* Focuses the crop on the right side building/sign */
  }

  .hero-headline {
    letter-spacing: -1px;
  }

  .hero-bottom {
    bottom: 1.5rem;
  }

  .scroll-bar {
    height: 35px;
  }

  .about-img-wrap {
    height: auto;
  }

  .about-img-badge {
    width: 110px;
    height: 110px;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 1.2rem;
  }

  .badge-num {
    font-size: 2rem;
  }

  .badge-label {
    font-size: 0.7rem;
  }

  .about-content {
    padding: 4rem 5%;
  }

  .about-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .services {
    padding: 5rem 5%;
  }

  .services-header {
    margin-bottom: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .svc-card,
  .svc-card:nth-child(even) {
    flex-direction: column;
    padding: 0;
    height: auto; /* Reset strict height so text flows naturally */
  }

  .svc-img-box,
  .svc-card:nth-child(even) .svc-img-box {
    width: 100%;
    height: 120px;
    min-height: 120px;
    border-radius: 14px 14px 0 0;
  }

  .svc-content {
    width: 100%;
    padding: 1rem 0.8rem;
  }

  .svc-num {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .svc-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }

  .svc-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .svc-arrow {
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
  }

  .values-left {
    padding: 4rem 5%;
  }

  .values-right {
    padding: 2rem 5% 4rem;
  }

  .val-row {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .nri {
    padding: 5rem 5%;
  }

  .nri-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nri-card {
    padding: 2rem;
  }

  .nri-desc {
    font-size: 1rem;
  }

  .nri-actions {
    flex-direction: column;
  }

  .btn-gold,
  .btn-outline {
    text-align: center;
    padding: 1rem 2rem;
  }

  .impact {
    padding: 5rem 5%;
  }

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

  .contact-left {
    padding: 4rem 5%;
  }

  .contact-right {
    padding: 4rem 5%;
  }

  .section-heading {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }

  footer {
    padding: 4rem 5%;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    text-align: left;
  }

  /* Reset the desktop right-push for Company column on mobile */
  .footer-links>div:first-child {
    padding-left: 0;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
  }

  .footer-logo {
    height: 64px;
    width: 64px;
    margin: 0 auto 1.5rem;
  }

  .footer-brand h3 {
    font-size: 1.4rem;
  }

  .wa-btn {
    bottom: 2rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .zn-chat {
    bottom: 6rem;
    /* Move chat button up a bit so they don't block each other */
    right: 1.5rem;
  }

  .zn-chat-btn {
    width: 50px;
    height: 50px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE PORTRAIT (≤ 480px)
══════════════════════════════════════════ */
@media (max-width:480px) {
  html {
    font-size: 14px;
  }

  #nav {
    padding: 0.6rem 5%;
  }

  .nav-logo img {
    height: 50px !important;
    width: 50px !important;
    padding: 2px !important;
  }

  #nav.scrolled .nav-logo img {
    height: 42px !important;
    width: 42px !important;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 1.5rem 5% 4rem;
    height: 100svh;
  }

  .hero-tagline {
    font-size: .6rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 9vw, 3.2rem);
    /* Slightly smaller max size */
    line-height: 1.15;
    margin-bottom: 2.5rem;
  }

  .hero-bottom {
    bottom: 1rem;
  }

  .hero-slide-counter {
    display: none;
  }

  .about-img-wrap {
    height: auto;
  }

  .about-img-badge {
    width: 105px;
    height: 105px;
    padding: 1rem;
  }

  .badge-num {
    font-size: 1.8rem;
  }

  .badge-label {
    font-size: 0.65rem;
  }

  .about-content {
    padding: 3rem 5%;
  }

  .about-para {
    font-size: 1rem;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .astat {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .astat-num {
    font-size: 2.2rem;
  }

  .services {
    padding: 4rem 5%;
  }

  .services-header {
    margin-bottom: 2rem;
  }

  /* Services Grid is already handled by 768px rule above, 
     but we can refine padding here for very small screens */
  .services {
    padding: 4rem 5%;
  }

  .services-header {
    margin-bottom: 2rem;
  }

  .svc-card {
    padding: 0;
    flex-direction: column !important;
    min-height: auto;
  }

  .svc-img-box {
    width: 100% !important;
    min-height: 200px;
    border-radius: 16px 16px 0 0 !important;
  }

  .svc-content {
    width: 100% !important;
    padding: 1.2rem 1.4rem 1.6rem;
  }

  .svc-num {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .svc-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }

  .svc-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .values-left {
    padding: 3rem 5%;
  }

  .values-right {
    padding: 1rem 5% 3rem;
  }

  .val-row h4 {
    font-size: 1.1rem;
  }

  .val-row p {
    font-size: .9rem;
    line-height: 1.4;
  }

  .val-row {
    gap: 1rem;
    padding: 1rem 0;
  }

  .val-n {
    font-size: .8rem;
  }

  .nri {
    padding: 4rem 5%;
  }

  .nri-card {
    padding: 1.5rem;
  }

  .impact {
    padding: 4rem 5%;
  }

  .ig-num {
    font-size: 2.2rem;
    /* Reduce size to prevent horizontal scroll */
  }

  .impact-big {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .contact-left {
    padding: 3rem 5%;
  }

  .contact-right {
    padding: 3rem 5%;
  }

  .ci {
    gap: 1rem;
  }

  .form-field input,
  .form-field textarea {
    padding: 1rem 5.5rem 1rem 1.2rem !important;
    font-size: .9rem;
  }

  /* Hero dots spacing on small screens */
  .hero-dot {
    width: 20px;
  }
  .hero-dot.active {
    width: 38px;
  }

  footer {
    padding: 3rem 5%;
  }

  .footer-top {
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  /* Reset the desktop right-push on smallest screens too */
  .footer-links>div:first-child {
    padding-left: 0;
  }

  .footer-links>div {
    margin: 0 auto;
  }

  .footer-links h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom p {
    font-size: .72rem;
  }

  .wa-btn {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
  }

  .wa-btn svg {
    width: 24px;
    height: 24px;
  }

  .zn-chat {
    bottom: 6rem;
    right: 1rem;
  }

  .zn-chat-window {
    width: calc(100vw - 2rem);
    right: 0;
  }
}

/* ──────────────────────────────────────────
   MOBILE RESPONSIVE ADJUSTMENTS (FOOTER LOGO)
────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-bg-logo {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .footer-bg-logo {
    width: 220px;
    height: 220px;
    opacity: 0.05;
  }
}