/* ================================================
   DESTINY INSIGHTSS — Updated Theme v4
   Simple, Clean, Professional
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Lato:wght@300;400;700;900&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

:root {
  /* Greens */
  --g-950: #071a0d;
  --g-900: #0d2b17;
  --g-800: #163d22;
  --g-700: #1f5430;
  --g-600: #276b3d;
  --g-500: #2f844b;
  --g-400: #3fa362;
  --g-300: #5dbf80;
  --g-200: #8dd8a8;
  --g-100: #c2ecd3;
  --g-50: #eaf7f0;
  /* Golds */
  --au-950: #2d1a00;
  --au-900: #4a2c00;
  --au-800: #6b3f00;
  --au-700: #8c5500;
  --au-600: #b07000;
  --au-500: #c8920a;
  --au-400: #ddb040;
  --au-300: #e8c86a;
  --au-200: #f2d98e;
  --au-100: #faf0cc;
  --au-50: #fffbee;

  --brand-dark: #0d2b17;
  --brand-green: #276b3d;
  --brand-gold: #c8920a;
  --brand-gold-lt: #e8c86a;

  --text-primary: #f0ede6;
  --text-muted: rgba(240, 237, 230, .72);
  --text-dark: #1e2b22;
  --text-body: #2e3d34;
  --bg-page: #f4f1ea;
  --white: #ffffff;

  /* Simpler font stack */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
  --font-label: 'Lato', system-ui, sans-serif;
  --font-elegant: 'Playfair Display', Georgia, serif;
  --font-script: 'Playfair Display', Georgia, serif;

  --tr-fast: .18s ease;
  --tr-med: .32s ease;
  --tr-slow: .55s cubic-bezier(.23, 1, .32, 1);
}

html,
body {
  overflow-x: hidden;
}

footer {
  overflow: visible;
}

.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.fas,
.far {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.75;
}

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

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

ul {
  list-style: none;
}

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

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--g-950);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-display);
  color: var(--brand-gold);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  animation: logoGlow 1.5s ease-in-out infinite alternate;
}

.preloader-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  animation: logoGlow 1.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(200, 146, 10, .5));
}

.preloader-bar-wrap {
  width: 220px;
  height: 2px;
  background: rgba(200, 146, 10, .2);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--au-600), var(--au-300), var(--au-600));
  animation: loadBar 1.8s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes logoGlow {
  from {
    text-shadow: 0 0 10px rgba(200, 146, 10, .3);
  }

  to {
    text-shadow: 0 0 30px rgba(200, 146, 10, .9), 0 0 60px rgba(200, 146, 10, .4);
  }
}

@keyframes loadBar {
  0% {
    width: 0%
  }

  60% {
    width: 100%
  }

  100% {
    width: 100%;
    opacity: 0
  }
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.23, 1, .32, 1), transform .7s cubic-bezier(.23, 1, .32, 1);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="scale"] {
  transform: scale(.9);
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* TOP BAR */
.top-bar {
  background: var(--g-950);
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 146, 10, .2);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  font-family: var(--font-label);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--au-200);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  color: var(--au-400);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-social {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200, 146, 10, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--au-300);
  font-size: .75rem;
  transition: var(--tr-fast);
}

.top-social:hover {
  background: var(--au-600);
  border-color: var(--au-600);
  color: #fff;
  transform: translateY(-2px);
}

/* NAVBAR */
.navbar {
  background: #0e3a28;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 146, 10, .15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--tr-med);
}

.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, .5);
  border-bottom-color: rgba(200, 146, 10, .3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* TEXT LOGO (no image) */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--au-600), var(--au-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-950);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--au-300);
  letter-spacing: .01em;
}

.nav-brand-sub {
  font-family: var(--font-label);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--au-500);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-logo-img {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--au-100);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--tr-fast);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--au-300);
  background: rgba(200, 146, 10, .08);
}

.nav-link.active {
  color: var(--au-400);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--g-900);
  border: 1px solid rgba(200, 146, 10, .2);
  border-radius: 8px;
  min-width: 190px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--tr-fast);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--font-label);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--au-200);
  transition: var(--tr-fast);
}

.nav-dropdown a:hover {
  color: var(--au-400);
  background: rgba(200, 146, 10, .08);
  padding-left: 26px;
}

.nav-dropdown a i {
  color: var(--au-500);
  width: 16px;
}

.nav-cta {
  font-family: var(--font-label);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--au-600), var(--au-400));
  color: var(--g-950) !important;
  padding: 10px 22px;
  border-radius: 4px;
  transition: var(--tr-med);
  box-shadow: 0 4px 15px rgba(200, 146, 10, .3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 146, 10, .5);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--au-300);
  border-radius: 2px;
  transition: var(--tr-fast);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--g-950);
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 26, 12, .92) 0%, rgba(4, 26, 12, .7) 50%, rgba(90, 60, 0, .4) 100%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(225deg, rgba(200, 146, 10, .08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 50px 20px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--au-400);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--au-500));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--au-500), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title .gold-word {
  color: var(--au-300);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--au-200);
  font-style: italic;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--au-300);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-label);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: var(--tr-fast);
}

.hero-dot.active {
  background: var(--au-400);
  transform: scale(1.4);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-scroll-text {
  font-family: var(--font-label);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--au-500);
}

.hero-scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--au-500), transparent);
  animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollArrow {

  0%,
  100% {
    transform: scaleY(1);
    opacity: .6;
  }

  50% {
    transform: scaleY(.6);
    opacity: 1;
  }
}

/* HERO SLIDE 2 — split layout */
.hero-split {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--g-950);
  display: flex;
  align-items: stretch;
}

.hero-split-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}

.hero-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 26, 12, .96) 0%, rgba(4, 26, 12, .85) 55%, rgba(4, 26, 12, .6) 100%);
}

.hero-split-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px 80px;
  gap: 60px;
}

.hero-split-content {
  color: var(--text-primary);
}

.hero-split-content .hero-eyebrow {
  justify-content: flex-start;
}

.hero-split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-split-content h2 span {
  color: var(--au-300);
  font-style: italic;
}

.hero-split-content p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--au-100);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-split-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-split-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  border: 2px solid rgba(200, 146, 10, .25);
}

.hero-split-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-split-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(4, 26, 12, .9);
  border: 1px solid rgba(200, 146, 10, .4);
  padding: 14px 20px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero-split-img-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--au-300);
  line-height: 1;
}

.hero-split-img-badge .badge-text {
  font-family: var(--font-label);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--au-200);
  text-transform: uppercase;
}

/* CAROUSEL WRAPPER */
.hero-carousel {
  position: relative;
}

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

.hero-slide-full.active {
  display: flex;
}

.hero-slide-full.slide-classic {
  min-height: 100vh;
}

.hero-slide-full.slide-split {
  min-height: 100vh;
}

/* BUTTONS */
.btn-primary {
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--au-600), var(--au-400));
  color: var(--g-950);
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--tr-med);
  box-shadow: 0 6px 25px rgba(200, 146, 10, .35);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
  opacity: 0;
  transition: var(--tr-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 146, 10, .5);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-outline {
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--au-200);
  padding: 13px 36px;
  border-radius: 4px;
  border: 1px solid rgba(200, 146, 10, .5);
  cursor: pointer;
  transition: var(--tr-med);
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(200, 146, 10, .12);
  border-color: var(--au-400);
  color: var(--au-300);
  transform: translateY(-3px);
}

.btn-dark {
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--g-800);
  color: var(--au-300);
  padding: 14px 36px;
  border-radius: 4px;
  border: 1px solid rgba(200, 146, 10, .3);
  cursor: pointer;
  transition: var(--tr-med);
  display: inline-block;
}

.btn-dark:hover {
  background: var(--g-700);
  transform: translateY(-2px);
}

/* TICKER */
.ticker {
  background: var(--g-900);
  border-top: 1px solid rgba(200, 146, 10, .2);
  border-bottom: 1px solid rgba(200, 146, 10, .2);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 35s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-label);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--au-300);
  padding: 0 28px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-sep {
  width: 6px;
  height: 6px;
  background: var(--au-600);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

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

/* SECTION */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--g-50);
}

.section-mid {
  background: linear-gradient(180deg, var(--bg-page), #ede9df);
}

.section-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g-600);
  background: rgba(39, 107, 61, .1);
  border: 1px solid rgba(39, 107, 61, .25);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .italic {
  font-style: italic;
  color: var(--g-600);
}

.section-subtitle {
  font-family: var(--font-label);
  font-size: .95rem;
  color: #4a5e52;
  line-height: 1.8;
  max-width: 620px;
}

/* GOLD DIVIDER */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.gold-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--au-400), transparent);
}

.gold-divider-gem {
  width: 8px;
  height: 8px;
  background: var(--au-500);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
}

.about-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -20px;
  background: linear-gradient(135deg, var(--g-800), var(--g-600));
  border: 2px solid rgba(200, 146, 10, .4);
  border-radius: 10px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--au-300);
  display: block;
  line-height: 1;
}

.about-badge-text {
  font-family: var(--font-label);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--au-200);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.about-quote {
  border-left: 3px solid var(--au-500);
  padding-left: 20px;
  margin: 20px 0;
}

.about-quote-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #2e3d34;
  line-height: 1.8;
}

.about-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 600;
  color: #2a3d30;
  background: rgba(39, 107, 61, .08);
  border: 1px solid rgba(39, 107, 61, .2);
  padding: 8px 16px;
  border-radius: 20px;
}

.expertise-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--g-600), var(--g-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  flex-shrink: 0;
}

/* SERVICES TABS */
.services-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-tab-btn {
  font-family: var(--font-label);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid rgba(39, 107, 61, .3);
  background: transparent;
  color: #2a3d30;
  cursor: pointer;
  transition: var(--tr-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-tab-btn:hover,
.service-tab-btn.active {
  background: var(--g-700);
  color: #fff;
  border-color: var(--g-700);
}

.service-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-panel.active {
  display: grid;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(39, 107, 61, .12);
  border-radius: 10px;
  padding: 32px 28px;
  transition: var(--tr-med);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .12);
  border-color: rgba(39, 107, 61, .35);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 12px;
}

.service-card-desc {
  font-family: var(--font-label);
  font-size: .88rem;
  color: #3d5244;
  line-height: 1.75;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(39, 107, 61, .12);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
  transition: var(--tr-med);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
  border-color: rgba(39, 107, 61, .3);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--g-700), var(--g-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 12px;
}

.why-card-text {
  font-family: var(--font-label);
  font-size: .88rem;
  color: #3d5244;
  line-height: 1.75;
}

/* STATS */
.stats-section {
  background: linear-gradient(135deg, var(--g-900), var(--g-800));
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--au-300);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-label);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--g-200);
  text-transform: uppercase;
}

/* TESTIMONIALS */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(39, 107, 61, .12);
  border-radius: 12px;
  padding: 36px 30px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.testimonial-quote-icon {
  font-family: Georgia;
  font-size: 4rem;
  color: rgba(39, 107, 61, .15);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: .9rem;
  color: #2e3d34;
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--au-500);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-700), var(--g-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-label);
  font-size: .88rem;
  font-weight: 700;
  color: #1a2e20;
}

.testimonial-role {
  font-family: var(--font-label);
  font-size: .75rem;
  color: #5a7a64;
  margin-top: 2px;
}

/* YOUTUBE SECTION */
.youtube-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-page), #ede9df);
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.youtube-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  border: 1px solid rgba(39, 107, 61, .1);
  transition: var(--tr-med);
}

.youtube-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .14);
}

.youtube-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.youtube-card-title {
  padding: 16px 20px;
  font-family: var(--font-label);
  font-size: .9rem;
  font-weight: 700;
  color: #1a2e20;
  line-height: 1.4;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 26, 12, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--tr-med);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  color: var(--au-300);
  font-size: 1.6rem;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr-med);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  opacity: .7;
  transition: var(--tr-fast);
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1;
  opacity: .6;
  transition: var(--tr-fast);
  background: rgba(255, 255, 255, .1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-arrow:hover {
  opacity: 1;
  background: rgba(200, 146, 10, .4);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(145deg, var(--g-900), var(--g-800));
  border: 1px solid rgba(200, 146, 10, .2);
  border-radius: 12px;
  padding: 40px;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--au-300);
  margin-bottom: 6px;
}

.contact-info-sub {
  font-family: var(--font-label);
  font-size: .88rem;
  color: var(--g-200);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 146, 10, .15);
  border: 1px solid rgba(200, 146, 10, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--au-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-label);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--au-500);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-info-value {
  font-family: var(--font-label);
  font-size: .95rem;
  font-weight: 600;
  color: var(--au-100);
}

.contact-info-value:hover {
  color: var(--au-300);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.contact-social {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 146, 10, .35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--au-300);
  transition: var(--tr-fast);
}

.contact-social:hover {
  background: var(--au-600);
  border-color: var(--au-600);
  color: var(--g-950);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(39, 107, 61, .12);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #2a3d30;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid rgba(39, 107, 61, .2);
  border-radius: 6px;
  font-family: var(--font-label);
  font-size: .92rem;
  color: #1a2e20;
  background: #fafef8;
  transition: var(--tr-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--g-500);
  box-shadow: 0 0 0 3px rgba(47, 132, 75, .12);
}

textarea.form-control {
  resize: vertical;
}

select.form-control {
  cursor: pointer;
}

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 20px 0 10px;
  background: linear-gradient(135deg, var(--g-950), var(--g-800));
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="none" stroke="rgba(200,146,10,0.05)" stroke-width="1"/><circle cx="80" cy="80" r="60" fill="none" stroke="rgba(200,146,10,0.03)" stroke-width="1"/></svg>');
  pointer-events: none;
}

.page-hero-eyebrow {
  font-family: var(--font-label);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--au-400);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-title span {
  color: var(--au-300);
  font-style: italic;
}

.page-hero-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--au-200);
  font-style: italic;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-label);
  font-size: .75rem;
  color: var(--au-400);
}

.breadcrumb a {
  color: var(--au-300);
}

.breadcrumb a:hover {
  color: var(--au-200);
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(39, 107, 61, .12);
  border-radius: 10px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}

.value-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  position: absolute;
  top: -10px;
  right: 20px;
  color: rgba(200, 146, 10, .08);
  line-height: 1;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 12px;
}

.value-text {
  font-family: var(--font-label);
  font-size: .9rem;
  color: #3d5244;
  line-height: 1.8;
}

/* MAP */
.map-section {
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--g-700), var(--au-600), var(--g-700));
  z-index: 1;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.geo-location-heading-wrap {
  background: var(--g-900);
  padding: 16px 24px;
  text-align: center;
}

.geo-location-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--au-300);
}

/* CTA STRIP */
.cta-strip {
  background: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='rgba(200,146,10,0.15)'/></svg>") repeat;
  pointer-events: none;
}

.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: black;
  margin-bottom: 16px;
}

.cta-strip-sub {
  font-family: var(--font-label);
  font-size: 1rem;
  color: var(--au-200);
  margin-bottom: 36px;
}

/* GLOBAL FIX */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

/* FOOTER */
.footer {
  background: #021d12;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(200, 146, 10, .15);
  color: #ccc;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

/* LOGO */
.footer-logo {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.footer-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #b8962e;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

/* TITLES */
.footer-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

/* CONTACT */
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact a i {
  color: #d4af37;
}

.footer-contact a:hover {
  color: #d4af37;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(200, 146, 10, .1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-tagline {
  font-style: italic;
  color: #b8962e;
  font-size: 0.85rem;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
    /* single column */
    gap: 30px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding-bottom: 100px;
    /* floating buttons space */
  }
}

/* FAB */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 997;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, .3);
  transition: var(--tr-med);
  position: relative;
}

.fab-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.fab-wa {
  background: #25D366;
}

.fab-call {
  background: linear-gradient(135deg, var(--g-600), var(--g-400));
}

.fab-label {
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(4, 26, 12, .9);
  color: var(--au-200);
  font-family: var(--font-label);
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr-fast);
  border: 1px solid rgba(200, 146, 10, .2);
}

.fab-btn:hover .fab-label {
  opacity: 1;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--g-700), var(--g-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 996;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr-med);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
  font-size: .9rem;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* NUMEROLOGY/VASTU PAGE SPECIFICS */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 140px 0 80px;
}

.service-hero-content .section-title {
  color: var(--text-primary);
}

.service-hero-content .section-subtitle {
  color: var(--au-100);
}

.service-features {
  list-style: none;
  margin: 24px 0;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-label);
  font-size: .92rem;
  color: var(--au-100);
  margin-bottom: 12px;
  line-height: 1.6;
}

.service-features li i {
  color: var(--au-400);
  margin-top: 3px;
  flex-shrink: 0;
}

/* PAGE-SPECIFIC SECTIONS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-700), var(--g-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 10px;
}

.process-step-text {
  font-family: var(--font-label);
  font-size: .85rem;
  color: #3d5244;
  line-height: 1.75;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--g-400), transparent);
}

/* RESPONSIVE */
@media (max-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .hero-split-inner {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
  }

  .hero-split-image {
    display: none;
  }
}

@media (max-width:768px) {
  .section {
    padding: 64px 0;
  }

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

  .service-panel {
    grid-template-columns: 1fr;
  }

  .testimonials-wrap {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 26, 13, .98);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(200, 146, 10, .2);
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, .04);
    padding-left: 16px;
    margin-top: 4px;
    border-radius: 0;
  }

  .nav-item:hover .nav-dropdown {
    transform: none;
  }

  .top-bar-left {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* SERVICE DETAIL PAGES */
.service-detail-hero {
  background: linear-gradient(135deg, var(--g-950), var(--g-800));
  position: relative;
}

.icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--au-700), var(--au-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--g-950);
}

.faq-item {
  border: 1px solid rgba(39, 107, 61, .15);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 18px 24px;
  font-family: var(--font-label);
  font-size: .95rem;
  font-weight: 700;
  color: #1a2e20;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-a {
  padding: 0 24px 18px;
  font-family: var(--font-label);
  font-size: .9rem;
  color: #3d5244;
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* SERVICE DETAIL CARDS */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid rgba(39, 107, 61, .15);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--tr-med);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .12);
  border-color: rgba(39, 107, 61, .35);
}

.sdcard-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.sdcard-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 12px;
}

.sdcard-desc {
  font-family: var(--font-label);
  font-size: .88rem;
  color: #3d5244;
  line-height: 1.75;
  margin-bottom: 18px;
}

.sdcard-list {
  list-style: none;
}

.sdcard-list li {
  font-family: var(--font-label);
  font-size: .82rem;
  color: #2e3d34;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(39, 107, 61, .08);
}

.sdcard-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--g-500);
  font-weight: 700;
}

.sdcard-list li:last-child {
  border-bottom: none;
}

/* PROCESS STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(39, 107, 61, .1);
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-700), var(--g-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 10px;
}

.process-step-text {
  font-family: var(--font-label);
  font-size: .85rem;
  color: #3d5244;
  line-height: 1.75;
}

@media (max-width:768px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

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

/* ============================================
   NUMEROLOGY PAGE STYLES
   ============================================ */

/* Page hero for numerology/vastu */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .15;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 26, 12, .97) 0%, rgba(4, 26, 12, .8) 60%, rgba(90, 60, 0, .5) 100%);
}

.page-hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-orbs::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 146, 10, .1), transparent 70%);
  top: -150px;
  right: -100px;
}

.page-hero-orbs::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 94, 47, .2), transparent 70%);
  bottom: -80px;
  left: 10%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--au-400);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-breadcrumb a {
  color: var(--au-300);
}

.page-hero-eyebrow {
  font-family: var(--font-label);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--au-400);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--au-500);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero h1 em {
  color: var(--au-300);
  font-style: italic;
}

.page-hero-desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--au-100);
  font-style: italic;
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.page-hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section-eyebrow {
  font-family: var(--font-label);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--g-600);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--g-500);
}

/* WHAT IS NUMEROLOGY section */
.what-section {
  padding: 90px 0;
  background: var(--bg-page);
}

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

.what-img-wrap {
  position: relative;
}

.what-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--au-500);
  border-style: solid;
  z-index: 2;
}

.what-corner.tl {
  top: -10px;
  left: -10px;
  border-width: 3px 0 0 3px;
}

.what-corner.br {
  bottom: -10px;
  right: -10px;
  border-width: 0 3px 3px 0;
}

.what-img-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.what-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.what-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--g-800), var(--g-700));
  border: 2px solid rgba(200, 146, 10, .4);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--au-300);
  line-height: 1;
  display: block;
}

.badge-txt {
  font-family: var(--font-label);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--au-200);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.what-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 20px;
  line-height: 1.25;
}

.what-text h2 em {
  color: var(--g-600);
  font-style: italic;
}

.what-text p {
  font-family: var(--font-label);
  font-size: .92rem;
  color: #2e3d34;
  line-height: 1.85;
  margin-bottom: 16px;
}

.what-quote {
  border-left: 3px solid var(--au-500);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(200, 146, 10, .05);
  border-radius: 0 6px 6px 0;
}

.what-quote p,
.what-quote {
  font-family: var(--font-serif);
  font-size: .9rem;
  font-style: italic;
  color: #2a3d2a;
  line-height: 1.8;
}

.what-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.what-pill {
  font-family: var(--font-label);
  font-size: .75rem;
  font-weight: 700;
  color: var(--g-700);
  background: rgba(39, 107, 61, .1);
  border: 1px solid rgba(39, 107, 61, .25);
  padding: 5px 14px;
  border-radius: 20px;
}

/* NUMBER GRID */
.numgrid-section {
  padding: 90px 0;
  background: var(--g-950);
}

.numgrid-header {
  text-align: center;
  margin-bottom: 48px;
}

.numgrid-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.numgrid-header h2 em {
  color: var(--au-300);
  font-style: italic;
}

.numgrid-header p {
  font-family: var(--font-label);
  font-size: .92rem;
  color: var(--g-200);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.num-cell {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(200, 146, 10, .15);
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
}

.num-cell:hover {
  background: rgba(200, 146, 10, .12);
  border-color: rgba(200, 146, 10, .5);
  transform: translateY(-6px);
}

.num-icon {
  font-size: 1.4rem;
  color: var(--au-500);
  margin-bottom: 10px;
}

.num-digit {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--au-300);
  line-height: 1;
  margin-bottom: 8px;
}

.num-planet {
  font-family: var(--font-label);
  font-size: .65rem;
  font-weight: 700;
  color: var(--g-300);
  letter-spacing: .06em;
  margin-bottom: 5px;
}

.num-trait {
  font-family: var(--font-label);
  font-size: .65rem;
  color: var(--g-200);
  line-height: 1.4;
}

.numgrid-note {
  text-align: center;
  font-family: var(--font-label);
  font-size: .78rem;
  color: var(--au-500);
  font-style: italic;
}

/* NUMEROLOGY SERVICES */
.numservices-section {
  padding: 90px 0;
  background: var(--bg-page);
}

.numservices-header {
  text-align: center;
  margin-bottom: 56px;
}

.numservices-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 12px;
}

.numservices-header h2 em {
  color: var(--g-600);
  font-style: italic;
}

.numservices-header p {
  font-family: var(--font-label);
  font-size: .92rem;
  color: #3d5244;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.numservice-card {
  display: grid;
  grid-template-columns: 80px 70px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(39, 107, 61, .12);
  border-radius: 12px;
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: all .3s ease;
}

.numservice-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  border-color: rgba(39, 107, 61, .3);
  transform: translateY(-3px);
}

.numservice-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(39, 107, 61, .15);
  line-height: 1;
  padding-top: 4px;
}

.numservice-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-700), var(--g-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.numservice-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2e20;
  margin-bottom: 12px;
}

.numservice-body p {
  font-family: var(--font-label);
  font-size: .9rem;
  color: #3d5244;
  line-height: 1.85;
  margin-bottom: 18px;
}

.numservice-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.numservice-includes span {
  font-family: var(--font-label);
  font-size: .72rem;
  font-weight: 700;
  color: var(--g-700);
  background: rgba(39, 107, 61, .08);
  border: 1px solid rgba(39, 107, 61, .2);
  padding: 4px 12px;
  border-radius: 14px;
}

/* PROCESS SECTION */
.process-section {
  padding: 90px 0;
  background: var(--g-950);
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.process-header h2 em {
  color: var(--au-300);
  font-style: italic;
}

.process-header p {
  font-family: var(--font-label);
  font-size: .92rem;
  color: var(--g-200);
}

/* Override process-steps for numerology page */
.process-section .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-section .process-step {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(200, 146, 10, .15);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  position: relative;
}

.process-section .process-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-600), var(--g-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  flex-direction: column;
}

.process-step-icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--au-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--g-950);
}

.process-section .process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-section .process-step p {
  font-family: var(--font-label);
  font-size: .85rem;
  color: var(--g-200);
  line-height: 1.75;
}

/* CTA strip with btn-wa */
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-wa {
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: #25D366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .25s ease;
}

.btn-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

/* RESPONSIVE for numerology */
@media(max-width:900px) {
  .what-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .number-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .numservice-card {
    grid-template-columns: 1fr;
  }

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

  .process-section .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .number-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-section .process-steps {
    grid-template-columns: 1fr;
  }
}

/* TESTIMONIAL SLIDER */
.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25, 1, .5, 1);
}

.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(39, 107, 61, .25);
  border: none;
  cursor: pointer;
  transition: .25s ease;
  padding: 0;
}

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

@media(max-width:768px) {
  .testimonial-slide {
    grid-template-columns: 1fr;
  }
}

/* Compact page hero override (for numerology/vastu inline-styled heroes) */
.page-hero {
  min-height: 210px !important;
}

.page-hero .page-hero-content {
  padding: 90px 0 50px !important;
}

/* Fix hero-carousel to be relative for absolute positioning of arrows/dots */
.hero-carousel {
  position: relative;
}

/* Testimonials track fix */
.testimonials-track {
  width: 100%;
}

.testimonial-slide {
  padding: 4px;
}