/* ══════════════════════════════════════════════════════
   VASTUTOTHEPOINT — STYLES.CSS
   Palette: #043915 bg · #FFFBF0 text · #F5C518 gold · #FF6B00 orange
══════════════════════════════════════════════════════ */

/* ── CSS VARS ── */
:root {
  --y: #F5C518;
  --o: #FF6B00;
  --ol: #FF9040;
  --w: #FFFBF0;
  --dark: #043915;
  --dark2: #12400d;
  /* aliases for readability */
  --yellow: #F5C518;
  --orange: #FF6B00;
  --orange-lt: #FF9040;
  --cream: #FFFBF0;
  --bg: #043915;
  --radius-card: 18px;
  --transition: 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── gradient text utility ── */
.text-gradient {
  background: linear-gradient(130deg, var(--y) 0%, var(--cream) 30%, var(--ol) 70%, var(--y) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradflow 8s ease infinite;
}

@keyframes gradflow {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}


/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(4, 57, 21, .96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .55);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.logo-vastu {
  color: var(--o);
}

.logo-ttp {
  color: var(--w);
}

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

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 251, 240, .6);
  transition: color .25s;
}

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

.nav-cta-link {
  padding: 10px 22px !important;
  border: 1.5px solid rgba(255, 107, 0, .55) !important;
  border-radius: 30px !important;
  color: var(--w) !important;
  background: linear-gradient(135deg, rgba(255, 107, 0, .22), rgba(245, 197, 24, .12));
  transition: all .3s ease !important;
}

.nav-cta-link:hover {
  background: linear-gradient(135deg, rgba(255, 107, 0, .45), rgba(245, 197, 24, .28)) !important;
  border-color: var(--ol) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, .3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

@media(max-width:900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 24px; /* Exact gap between items */
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(4, 57, 21, .98);
    backdrop-filter: blur(20px);
    padding: 30px 0 40px;
    align-items: center; /* Center everything */
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    padding: 10px 24px;
    font-size: .9rem;
    display: inline-block;
  }

  .nav-links .menu-item-cta {
    margin-top: 15px;
    padding: 0 24px;
  }

  .nav-links .nav-cta-link {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 44px;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #cc5500 0%, var(--o) 45%, var(--ol) 100%);
  border: 2px solid rgba(245, 197, 24, .35);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(255, 107, 0, .55);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 22px 60px rgba(255, 107, 0, .8);
}

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

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

.btn-icon {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.btn-primary span:last-child {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255, 251, 240, .07);
  border: 1.5px solid rgba(255, 251, 240, .32);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 107, 0, .18);
  border-color: rgba(255, 144, 64, .7);
  color: var(--w);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, .22);
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  font-family: 'Jost', sans-serif;
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% -10%, rgba(20, 100, 30, .95) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(8, 65, 18, .80) 0%, transparent 62%),
    radial-gradient(ellipse 90% 65% at 50% 115%, rgba(5, 50, 12, .90) 0%, transparent 55%),
    linear-gradient(175deg, #032e10 0%, var(--dark) 38%, #053d18 62%, #032e10 100%);
}

.hero-aurora {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: -55%;
  left: -18%;
  width: 136%;
  height: 78%;
  background: conic-gradient(from 200deg at 50% 60%,
      transparent 0deg, rgba(70, 200, 80, .09) 18deg,
      rgba(245, 197, 24, .10) 36deg, rgba(255, 107, 0, .08) 52deg,
      rgba(255, 224, 0, .09) 68deg, rgba(50, 180, 60, .07) 90deg, transparent 120deg);
  filter: blur(28px);
  border-radius: 50%;
  animation: aurora 22s ease-in-out infinite;
}

@keyframes aurora {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: .8
  }

  33% {
    transform: rotate(8deg) scale(1.06);
    opacity: 1
  }

  66% {
    transform: rotate(-5deg) scale(.97);
    opacity: .85
  }
}

.hero-stars,
.hero-nebula {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-nebula {
  z-index: 3;
  opacity: .45;
  mix-blend-mode: screen;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(4, 57, 21, .95));
}

.hero-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to top, transparent, rgba(4, 57, 21, .45));
}

.hero-fade-sides {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 52%, rgba(3, 40, 12, .65) 100%);
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 7;
  animation: pfloat ease-in-out infinite;
}

@keyframes pfloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0
  }

  12% {
    opacity: 1
  }

  88% {
    opacity: 1
  }

  100% {
    transform: translateY(-90px) scale(.5);
    opacity: 0
  }
}

.p1 {
  width: 3px;
  height: 3px;
  background: var(--w);
  left: 8%;
  bottom: 30%;
  animation-duration: 8s
}

.p2 {
  width: 2px;
  height: 2px;
  background: var(--y);
  left: 17%;
  bottom: 42%;
  animation-duration: 10s;
  animation-delay: -2.5s
}

.p3 {
  width: 4px;
  height: 4px;
  background: var(--ol);
  left: 26%;
  bottom: 22%;
  animation-duration: 12s;
  animation-delay: -5s
}

.p4 {
  width: 2px;
  height: 2px;
  background: var(--w);
  left: 38%;
  bottom: 38%;
  animation-duration: 9s;
  animation-delay: -1s
}

.p5 {
  width: 3px;
  height: 3px;
  background: var(--y);
  left: 50%;
  bottom: 28%;
  animation-duration: 11s;
  animation-delay: -3.5s
}

.p6 {
  width: 2px;
  height: 2px;
  background: #69f0ae;
  left: 63%;
  bottom: 48%;
  animation-duration: 7s;
  animation-delay: -4.5s
}

.p7 {
  width: 4px;
  height: 4px;
  background: var(--ol);
  left: 74%;
  bottom: 32%;
  animation-duration: 13s;
  animation-delay: -7s
}

.p8 {
  width: 2px;
  height: 2px;
  background: var(--w);
  left: 85%;
  bottom: 40%;
  animation-duration: 9s;
  animation-delay: -2s
}

.p9 {
  width: 3px;
  height: 3px;
  background: var(--y);
  left: 4%;
  bottom: 52%;
  animation-duration: 10s;
  animation-delay: -8s
}

.p10 {
  width: 2px;
  height: 2px;
  background: var(--ol);
  left: 91%;
  bottom: 58%;
  animation-duration: 8s;
  animation-delay: -1.5s
}

.p11 {
  width: 3px;
  height: 3px;
  background: #b9f6ca;
  left: 33%;
  bottom: 60%;
  animation-duration: 11s;
  animation-delay: -6s
}

.p12 {
  width: 2px;
  height: 2px;
  background: var(--w);
  left: 55%;
  bottom: 65%;
  animation-duration: 7s;
  animation-delay: -3s
}

/* Sparks */
.spark {
  position: absolute;
  pointer-events: none;
  z-index: 7;
  animation: sparkle ease-in-out infinite;
}

.spark-inner {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--o), var(--y));
}

@keyframes sparkle {

  0%,
  100% {
    opacity: .15;
    transform: scale(1) rotate(0)
  }

  50% {
    opacity: 1;
    transform: scale(1.7) rotate(180deg);
    box-shadow: 0 0 16px rgba(255, 107, 0, .95)
  }
}

.sk1 {
  top: 12%;
  left: 6%;
  animation-duration: 4.5s
}

.sk2 {
  top: 22%;
  right: 12%;
  animation-duration: 5.5s;
  animation-delay: -1.5s
}

.sk3 {
  top: 68%;
  left: 8%;
  animation-duration: 6s;
  animation-delay: -3s
}

.sk4 {
  top: 58%;
  right: 6%;
  animation-duration: 5s;
  animation-delay: -2s
}

.sk5 {
  top: 8%;
  left: 40%;
  animation-duration: 6.5s;
  animation-delay: -4s
}

.sk6 {
  top: 78%;
  left: 52%;
  animation-duration: 4s;
  animation-delay: -1s
}

/* Mandalas */
.mandala-left {
  position: absolute;
  left: -14%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(240px, 26vw, 420px);
  height: clamp(240px, 26vw, 420px);
  z-index: 6;
  pointer-events: none;
  opacity: .08;
  animation: spin 240s linear infinite reverse;
}

.mandala-right {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(400px, 48vw, 720px);
  height: clamp(400px, 48vw, 720px);
  z-index: 6;
  pointer-events: none;
}

.ml1,
.ml2,
.ml3,
.ml4 {
  position: absolute;
  inset: 0;
}

.ml1 svg,
.ml2 svg,
.ml3 svg,
.ml4 svg {
  width: 100%;
  height: 100%;
}

.ml1 {
  animation: spin 180s linear infinite;
}

.ml2 {
  inset: 10%;
  animation: spin 100s linear infinite reverse;
  opacity: .75;
}

.ml3 {
  inset: 28%;
  animation: spin 60s linear infinite;
  opacity: .9;
}

.ml4 {
  inset: 42%;
  animation: spin 35s linear infinite reverse;
}

.mglow {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, .18) 0%, rgba(255, 107, 0, .12) 45%, transparent 70%);
  animation: mglow 5s ease-in-out infinite;
}

@keyframes spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes mglow {

  0%,
  100% {
    opacity: .4;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.15)
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 120px;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 107, 0, .38);
  border-radius: 30px;
  padding: 7px 18px 7px 12px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadedown .9s cubic-bezier(.34, 1.56, .64, 1) .2s forwards;
  font-family: 'Cinzel', serif;
  font-size: .54rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(255, 251, 240, .9);
  font-weight: 600;
}

.hero-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--o);
  animation: livepulse 1.8s ease-out infinite;
}

@keyframes livepulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, .7)
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0)
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadedown .9s ease .4s forwards;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: rgba(255, 251, 240, .78);
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, .75));
}

.eyebrow-line-r {
  width: 40px;
  height: 1px;
  background: linear-gradient(270deg, transparent, rgba(245, 197, 24, .75));
}

.eyebrow-gem {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ol);
  box-shadow: 0 0 14px var(--o);
  animation: gemblink 2.2s ease-in-out infinite;
}

@keyframes gemblink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .35;
    transform: scale(.65)
  }
}

/* active nav utility */
.nav-links a.active-nav {
  color: var(--w) !important;
  opacity: 1 !important;
  font-weight: 700;
}

.nav-links a.active-nav::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ol);
  margin-top: 2px;
}

.hero-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: var(--w);
  text-shadow: 0 2px 40px rgba(0, 0, 0, .5);
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeup 1.1s cubic-bezier(.34, 1.56, .64, 1) .6s forwards;
}

.sub-hero .hero-heading {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}


.hero-heading-gradient {
  display: block;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(130deg, var(--y) 0%, var(--w) 28%, rgba(255, 251, 240, .9) 50%, var(--ol) 72%, var(--y) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradflow 8s ease infinite;
}

.hero-services-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 251, 240, .5);
  letter-spacing: .06em;
  margin-top: 10px;
  opacity: 0;
  animation: fadeup .9s ease .85s forwards;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px auto;
  opacity: 0;
  animation: fadeup .8s ease .95s forwards;
}

.rule-line {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, .55));
}

.rule-line-r {
  width: 90px;
  height: 1px;
  background: linear-gradient(270deg, transparent, rgba(245, 197, 24, .55));
}

.rule-diamond {
  width: 9px;
  height: 9px;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--o), var(--y));
  transform: rotate(45deg);
  box-shadow: 0 0 16px var(--ol);
  animation: diamondpulse 3s ease-in-out infinite;
}

@keyframes diamondpulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 107, 0, .6);
    transform: rotate(45deg) scale(1)
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 107, 0, 1);
    transform: rotate(45deg) scale(1.4)
  }
}

.hero-body {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 251, 240, .88);
  max-width: 640px;
  margin: 0 auto 10px;
  opacity: 0;
  animation: fadeup .9s ease 1.05s forwards;
}

.hero-body strong {
  color: var(--w);
  font-weight: 700;
}

.hero-body em {
  font-style: italic;
  color: var(--y);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 197, 24, .6);
  letter-spacing: .08em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeup .9s ease 1.15s forwards;
}

.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeup .9s ease 1.25s forwards;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 251, 240, .07);
  border: 1px solid rgba(255, 251, 240, .22);
  font-size: clamp(.78rem, 1.4vw, .88rem);
  font-weight: 600;
  color: rgba(255, 251, 240, .82);
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, color .3s, transform var(--transition), box-shadow .3s;
}

.pill:hover {
  background: rgba(255, 107, 0, .2);
  border-color: rgba(255, 144, 64, .65);
  color: var(--w);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 28px rgba(255, 107, 0, .25);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeup .9s ease 1.38s forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  opacity: 0;
  animation: fadeup .9s ease 1.55s forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(.72rem, 1.2vw, .8rem);
  color: rgba(255, 251, 240, .5);
}

.trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(245, 197, 24, .5);
}

/* Ribbon */
.hero-ribbon {
  position: absolute;
  bottom: 88px;
  left: 0;
  right: 0;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  animation: fadeup .8s ease 2s forwards;
}

.ribbon-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 251, 240, .28);
  white-space: nowrap;
  padding: 0 12px;
}

.ribbon-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(245, 197, 24, .45);
  flex-shrink: 0;
}

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

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

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeup .8s ease 2.4s forwards;
}

.mouse-frame {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(245, 197, 24, .35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 7px;
}

.mouse-ball {
  width: 4px;
  height: 10px;
  border-radius: 2px;
  background: rgba(245, 197, 24, .7);
  animation: ballscroll 2s ease-in-out infinite;
}

@keyframes ballscroll {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  60% {
    transform: translateY(12px);
    opacity: .2
  }

  100% {
    transform: translateY(0);
    opacity: 1
  }
}

.scroll-label {
  font-family: 'Cinzel', serif;
  font-size: .44rem;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: rgba(245, 197, 24, .35);
}

/* Entry animations */
@keyframes fadedown {
  from {
    opacity: 0;
    transform: translateY(-18px)
  }

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

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

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


/* ════════════════════════════════════════
   SECTIONS SHARED
════════════════════════════════════════ */
.section {
   padding:25px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(245, 197, 24, .8);
}

.ey-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, .7));
}

.ey-line-r {
  width: 36px;
  height: 1px;
  background: linear-gradient(270deg, transparent, rgba(245, 197, 24, .7));
}

.ey-gem {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ol);
  box-shadow: 0 0 10px var(--o);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: var(--w);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 251, 240, .72);
  max-width: 600px;
  margin: 0 auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-section {
  background: linear-gradient(180deg, #043915 0%, #042e11 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: rgba(255, 251, 240, .05);
  border: 1px solid rgba(255, 251, 240, .14);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color .35s, box-shadow .35s;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 24, .5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(255, 107, 0, .12);
}

.service-card:hover .card-bg-glow {
  opacity: 1;
}

.card-bg-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 107, 0, .08), transparent);
  transition: opacity .4s;
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 107, 0, .2), rgba(245, 197, 24, .12));
  border: 1px solid rgba(245, 197, 24, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 1.8rem;
}

.card-tag {
  font-family: 'Cinzel', serif;
  font-size: .52rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ol);
  margin-bottom: 10px;
  font-weight: 600;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--w);
  margin-bottom: 14px;
}

.card-body {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 251, 240, .78);
  margin-bottom: 18px;
}

.card-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.card-list li {
  font-size: .82rem;
  color: rgba(255, 251, 240, .68);
  padding-left: 16px;
  position: relative;
}

.card-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: .5rem;
  color: var(--y);
  top: 3px;
}

.card-cta {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ol);
  transition: color .25s, letter-spacing .25s;
}

.card-cta:hover {
  color: var(--y);
  letter-spacing: .3em;
}


/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
.why-section {
  background: linear-gradient(160deg, #042e11 0%, #043915 100%);
}

.why-bg-mandala {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 32vw, 500px);
  height: clamp(300px, 32vw, 500px);
  opacity: .12;
  pointer-events: none;
  animation: spin 120s linear infinite;
}

.why-bg-mandala svg {
  width: 100%;
  height: 100%;
}

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}

.stat-box {
  background: rgba(255, 251, 240, .05);
  border: 1px solid rgba(245, 197, 24, .25);
  border-radius: 16px;
  padding: 28px 40px;
  text-align: center;
  min-width: 160px;
  transition: transform var(--transition), border-color .35s;
}

.stat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, .65);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--y), var(--ol));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 251, 240, .65);
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: rgba(255, 251, 240, .04);
  border: 1px solid rgba(255, 251, 240, .10);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  transition: transform var(--transition), border-color .35s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, .4);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--w);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 251, 240, .72);
}


/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
.process-section {
  background: linear-gradient(180deg, #043915 0%, #042e11 100%);
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 20px;
}

.timeline-line {
  position: absolute;
  left: 50px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(245, 197, 24, .4), rgba(255, 144, 64, .5), rgba(245, 197, 24, .4), transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  align-items: center;
  gap: 28px;
}

.step-num {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(245, 197, 24, .35), rgba(255, 107, 0, .35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--w);
  margin-bottom: 8px;
}

.step-body {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 251, 240, .72);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 0, .2), rgba(245, 197, 24, .12));
  border: 1px solid rgba(245, 197, 24, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 30px rgba(255, 107, 0, .14);
}

@media(max-width:640px) {
  .process-step {
    grid-template-columns: 60px 1fr;
  }

  .step-icon {
    display: none;
  }

  .timeline-line {
    left: 30px;
  }

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


/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(160deg, #042e11 0%, #043915 100%);
}

.testi-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testi-track {
  --per-view: 3;
  display: flex;
  gap: 28px;
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

.testi-card {
  background: rgba(255, 251, 240, .05);
  border: 1px solid rgba(255, 251, 240, .12);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  width: calc((100% - (var(--per-view) - 1) * 28px) / var(--per-view));
  flex: 0 0 auto;
  transition: border-color .35s;
}

.testi-card:hover {
  border-color: rgba(245, 197, 24, .4);
}

.testi-stars {
  font-size: 1.1rem;
  color: var(--y);
  margin-bottom: 16px;
  letter-spacing: .1em;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 251, 240, .88);
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--o), var(--y));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--w);
}

.testi-loc {
  font-size: .75rem;
  color: rgba(255, 251, 240, .6);
  margin-top: 2px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 251, 240, .06);
  border: 1px solid rgba(255, 251, 240, .2);
  color: var(--w);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: rgba(255, 107, 0, .28);
  border-color: rgba(245, 197, 24, .6);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 251, 240, .22);
  cursor: pointer;
  transition: all .3s;
}

.testi-dot.active {
  background: var(--ol);
  transform: scale(1.3);
}

@media(max-width:900px) {
  .testi-card {
    min-width: calc(50% - 14px);
  }
}

@media(max-width:580px) {
  .testi-card {
    min-width: 100%;
  }
}


/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-section {
  background: linear-gradient(180deg, #043915 0%, #042e11 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-mandala-wrap {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  animation: spin 80s linear infinite;
}

.about-mandala-svg {
  width: 100%;
  height: 100%;
}

.about-badge-exp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  background: rgba(4, 57, 21, .92);
  border: 1.5px solid rgba(245, 197, 24, .5);
  border-radius: 16px;
  padding: 20px 28px;
  backdrop-filter: blur(12px);
}

.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--y), var(--ol));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.badge-label {
  margin-top: 6px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 251, 240, .65);
}

.about-body {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255, 251, 240, .78);
  margin-bottom: 18px;
}

.about-body strong {
  color: var(--w);
  font-weight: 700;
}

.about-body em {
  color: var(--y);
  font-style: italic;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255, 251, 240, .8);
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--y);
  flex-shrink: 0;
}

@media(max-width:860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 380px;
    margin: 0 auto;
  }
}


/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-section {
  background: #042e11;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 197, 24, .08), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
}

.contact-sub {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 251, 240, .7);
  margin: 16px 0 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 251, 240, .05);
  border: 1px solid rgba(255, 251, 240, .12);
  transition: border-color .3s, transform var(--transition);
}

.channel-item:hover {
  border-color: rgba(245, 197, 24, .45);
  transform: translateY(-3px);
}

.channel-icon {
  font-size: 1.4rem;
	 
}

.channel-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 251, 240, .55);
}

.channel-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--w);
  margin-top: 2px;
}

.contact-form-wrap {
  background: rgba(255, 251, 240, .04);
  border: 1px solid rgba(255, 251, 240, .12);
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 251, 240, .6);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 251, 240, .07);
  border: 1px solid rgba(255, 251, 240, .18);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--w);
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 251, 240, .32);
}

.form-group select option {
  background: #043915;
  color: var(--w);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245, 197, 24, .65);
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.form-note {
  font-size: .75rem;
  text-align: center;
  color: rgba(255, 251, 240, .32);
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(245, 197, 24, .1);
  border: 1px solid rgba(245, 197, 24, .35);
  border-radius: 10px;
  font-size: .92rem;
  color: rgba(245, 197, 24, .95);
}

@media(max-width:860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 251, 240, .08);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ol);
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--w);
}

.footer-tagline {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 251, 240, .55);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 251, 240, .06);
  border: 1px solid rgba(255, 251, 240, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255, 251, 240, .55);
  transition: all .3s;
}

.social-btn:hover {
  background: rgba(255, 107, 0, .28);
  border-color: rgba(245, 197, 24, .5);
  color: var(--w);
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ol);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a,
.footer-links li span {
  font-size: .88rem;
  color: rgba(255, 251, 240, .48);
  transition: color .25s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 251, 240, .07);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255, 251, 240, .35);
}

.footer-bottom-inner a {
  color: rgba(245, 197, 24, .6);
}

.footer-bottom-inner a:hover {
  color: var(--y);
}

@media(max-width:860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════════
   TRUST BAR (hero)
════════════════════════════════════════ */
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--y);
}

.trust-label {
  font-size: .7rem;
  letter-spacing: .06em;
  color: rgba(255, 251, 240, .5);
}

/* ════════════════════════════════════════
   RESPONSIVE HERO
════════════════════════════════════════ */
@media(max-width:768px) {
  .hero-content {
    padding: 120px 18px 100px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media(max-width:520px) {
  .hero-trust {
    gap: 8px 14px;
  }

  .trust-sep {
    display: none;
  }
}

/* ════════════════════════════════════════
   EXPERT PROFILE & CONSULTATION BLOCKS
════════════════════════════════════════ */

.consultation-block {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(245, 197, 24, 0.08));
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.consultation-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.05) 0%, transparent 60%);
  animation: mglow 10s ease-in-out infinite;
  pointer-events: none;
}

.consultation-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--w);
  margin-bottom: 12px;
}

.consultation-sub {
  font-size: 1.1rem;
  color: rgba(255, 251, 240, 0.75);
  max-width: 600px;
  margin: 0 auto 32px;
}

.expert-section {
  padding: 100px 0;
  position: relative;
}

.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.expert-image-wrap {
  position: relative;
}

.expert-image-wrap::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 20px;
  z-index: -1;
  transform: rotate(-3deg);
}

.expert-image-wrap::before {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 20px;
  z-index: -1;
  transform: rotate(2deg);
}

.expert-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-bio-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ol);
  margin-bottom: 15px;
  display: block;
}

.expert-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--w);
  margin-bottom: 25px;
  line-height: 1.1;
}

.expert-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 251, 240, 0.78);
  margin-bottom: 30px;
}

.expert-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.exp-stat-item {
  border-left: 2px solid var(--y);
  padding-left: 20px;
}

.exp-stat-val {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--y);
  display: block;
}

.exp-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 251, 240, 0.5);
}

@media(max-width: 900px) {
  .expert-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .expert-image-wrap {
    max-width: 450px;
    margin: 0 auto;
  }

  .exp-stat-item {
    text-align: left;
  }
}

/* ════════════════════════════════════════
   CUSTOM RESPONSIVE GRIDS FOR EDU/ASTRO
════════════════════════════════════════ */
.grid-3-resp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .grid-3-resp { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .grid-3-resp { grid-template-columns: 1fr; }
}

.grid-auto-240 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
@media (max-width: 600px) {
  .grid-auto-240 { grid-template-columns: 1fr; }
}

.grid-auto-220 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
@media (max-width: 600px) {
  .grid-auto-220 { grid-template-columns: 1fr; }
}

.grid-auto-200 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
@media (max-width: 600px) {
  .grid-auto-200 { grid-template-columns: 1fr; }
}

/* Astro Spotlight Card Responsive */
@media (max-width: 900px) {
  .astro-spotlight {
    grid-template-columns: 1fr !important;
  }
  .astro-spotlight > div:first-child {
    min-height: 350px;
  }
}
/* ════════════════════════════════════════
   EDUCATION & ASTROLOGY COMPONENTS
════════════════════════════════════════ */

/* Education Spotlight (Front Page) */
.edu-spotlight {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(130,200,40,0.2);
    background: linear-gradient(135deg, #050f03 0%, #091405 60%, #0a1806 100%);
    padding: 4rem 3.5rem;
    margin-top: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.edu-spotlight-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.edu-spotlight-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: 0 0 0.8rem;
    line-height: 1.2;
}

.edu-spotlight-sub {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.edu-highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.edu-highlight-card {
    border-radius: 16px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.edu-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Service Grids */
.edu-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}
.edu-services-grid.detailed {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.edu-service-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(130,200,40,0.12);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}
.edu-service-item.detailed {
    align-items: flex-start;
    padding: 24px 20px;
    flex-direction: column;
}
.edu-service-item:hover, .edu-service-item.detailed:hover {
    background: rgba(130,200,40,0.08);
    border-color: rgba(130,200,40,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.edu-service-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(130,200,40,0.12);
    border: 1px solid rgba(130,200,40,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.edu-service-item.detailed .edu-service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.edu-service-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.4;
    font-weight: 500;
}
.edu-service-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}
.edu-service-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* Astro Spotlight (Front Page) */
.astro-spotlight {
    margin-top: 3.5rem;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 480px 1fr;
    min-height: 520px;
    border: 1px solid rgba(255,200,50,0.25);
    box-shadow: 0 20px 60px rgba(200,150,0,0.15), 0 0 0 1px rgba(255,200,50,0.08);
    background: linear-gradient(135deg, #0b1a06 0%, #0e1f0a 50%, #0c170d 100%);
    position: relative;
}

.astro-spotlight-img {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.astro-spotlight-content {
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.astro-spotlight-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.astro-spotlight-sub {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.astro-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 3rem;
}
.astro-services-grid.detailed {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.astro-service-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,200,50,0.15);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.astro-service-item.detailed {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
}
.astro-service-item:hover, .astro-service-item.detailed:hover {
    background: rgba(255,200,50,0.08);
    border-color: rgba(255,200,50,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.astro-service-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,200,0,0.12);
    border: 1px solid rgba(255,200,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.astro-service-item.detailed .astro-service-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.astro-service-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.3;
    font-weight: 500;
}
.astro-service-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.astro-service-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .astro-spotlight {
        grid-template-columns: 400px 1fr;
    }
}

@media (max-width: 1024px) {
    .astro-spotlight {
        grid-template-columns: 350px 1fr;
    }
    .edu-spotlight {
        padding: 3.5rem 2.5rem;
    }
    .edu-highlight-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .edu-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .astro-spotlight-content {
        padding: 3.5rem 2.5rem;
    }
    .astro-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .edu-spotlight {
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
        border-radius: 16px;
    }
    .edu-highlight-cards {
        grid-template-columns: 1fr;
    }
    .edu-services-grid.detailed, .edu-services-grid {
        grid-template-columns: 1fr;
    }
    
    .astro-spotlight {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        border-radius: 16px;
    }
    .astro-spotlight-img {
        min-height: 380px;
    }
    .astro-services-grid.detailed, .astro-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .edu-spotlight {
        padding: 2rem 1.2rem;
    }
    .astro-spotlight-img {
        min-height: 300px;
    }
    .astro-spotlight-content {
        padding: 2.5rem 1.2rem;
    }
}
