/* ============================================
   ADVOCATE DEEP RAJ — Premium Legal Website
   Color Palette: Deep Forest Green + Gold
   ============================================ */

:root {
  --green-dark:   #0a0a0a;
  --green-primary:#121212;
  --green-mid:    #181818;
  --green-light:  #242424;
  --gold:         #d4af37;
  --gold-light:   #e5c178;
  --gold-dark:    #b38f24;
  --cream:        #FAF8F5; /* Warm glowing ivory */
  --cream-mid:    #eaeaea;
  --white:        #ffffff;
  --text-dark:    #121212;
  --text-muted:   #5b6975;
  --text-light:   #8a99a6;
  --whatsapp:     #25D366;
  --whatsapp-dark:#1fae53;

  /* Typography Pairing */
  --font-serif:   'Cinzel', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    36px;

  /* Ultra-Premium Layered Ambient Shadows */
  --shadow-sm:    0 2px 4px rgba(0,0,0,0.02), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-md:    0 6px 12px rgba(0,0,0,0.03), 0 16px 32px rgba(0,0,0,0.06);
  --shadow-lg:    0 12px 24px rgba(0,0,0,0.04), 0 32px 64px rgba(0,0,0,0.08);
  --shadow-gold:  0 10px 30px rgba(212, 175, 55, 0.12), 0 2px 8px rgba(212, 175, 55, 0.08);
  --shadow-luxury-hover: 0 20px 40px rgba(212, 175, 55, 0.2), 0 5px 15px rgba(212, 175, 55, 0.1);

  --transition:   all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);

  /* Subpage inline list item text — adapts per theme */
  --subpage-li-color: rgba(255,255,255,0.85);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Fix fa-phone-alt icon direction globally */
.fa-phone-alt { transform: scaleX(-1); }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 96px 0; }

.dark-bg {
  background: var(--green-primary);
  color: var(--white);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
  50%  { transform: translateY(-60px) translateX(20px) scale(1.2); opacity: 0.3; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
}
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animations — only active after JS adds .js-ready to body */
body.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-ready [data-animate="fade-right"] { transform: translateX(-30px); }
body.js-ready [data-animate="fade-left"]  { transform: translateX(30px); }
body.js-ready [data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ============ TYPOGRAPHY ============ */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.section-label.light { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.section-desc.light { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-desc { margin: 0 auto; }

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 24px;
  border-radius: 2px;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--green-dark);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.22), 0 2px 6px rgba(212, 175, 55, 0.12);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.35), 0 4px 12px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
}
.btn-primary.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-outline i {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.12);
}
.btn-outline:hover i {
  transform: translateX(4px);
}
.btn-outline.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-outline-light i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
.btn-outline-light:hover i {
  transform: translateX(4px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-whatsapp-sm:hover { background: var(--whatsapp-dark); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo-image {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}
.logo a:hover .logo-image {
  transform: scale(1.06);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Dropdown Nav ─────────────────────────── */
.nav-has-dropdown { position: relative; }

.nav-caret {
  font-size: 0.65rem;
  margin-left: 3px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.nav-has-dropdown:hover .nav-caret,
.nav-has-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
  list-style: none;
  display: flex;
  flex-direction: column;
}
/* Arrow tip */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(10, 10, 10, 0.98);
  border-left: 1px solid rgba(212, 175, 55,0.2);
  border-top: 1px solid rgba(212, 175, 55,0.2);
  transform: translateX(-50%) rotate(45deg);
}
/* Transparent bridge to prevent losing hover in the 12px gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: transparent;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.dropdown-item i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.dropdown-item:hover {
  color: var(--gold);
  background: rgba(212, 175, 55,0.08);
  border-left-color: var(--gold);
  padding-left: 24px;
}

/* ── Mobile Sub-menu ──────────────────────── */
.mobile-has-dropdown { width: 100%; text-align: center; }

.mobile-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-dropdown-toggle:hover { color: var(--gold); }
.mobile-dropdown-toggle i { font-size: 1rem; transition: transform 0.3s ease; }
.mobile-dropdown-toggle.open i { transform: rotate(180deg); }

.mobile-sub-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55,0.15);
  border-radius: var(--radius-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-sub-menu.open {
  display: flex;
  max-height: 500px;
}
.mobile-sub-link {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  transition: var(--transition);
  padding: 4px 0;
}
.mobile-sub-link:hover { color: var(--gold); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { 
  margin: 12px 0; 
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-menu.open ul li {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger menu items entry */
.mobile-menu.open ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open ul li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open ul li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open ul li:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.open ul li:nth-child(8) { transition-delay: 0.45s; }

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: var(--transition);
  position: relative;
  display: inline-block;
  padding: 4px 12px;
}
.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.mobile-nav-link:hover { 
  color: var(--gold-light); 
  transform: scale(1.05);
}
.mobile-nav-link:hover::after {
  left: 12px;
  right: 12px;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

/* ============ HERO ============ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212, 175, 55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(18, 18, 18,0.8) 0%, transparent 50%);
  pointer-events: none;
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleDrift linear infinite;
}
.particle:nth-child(1)  { left: 10%; top: 20%; animation-duration: 8s; animation-delay: 0s; }
.particle:nth-child(2)  { left: 80%; top: 15%; animation-duration: 10s; animation-delay: 2s; width: 6px; height: 6px; }
.particle:nth-child(3)  { left: 50%; top: 70%; animation-duration: 7s; animation-delay: 1s; }
.particle:nth-child(4)  { left: 25%; top: 60%; animation-duration: 12s; animation-delay: 3s; width: 3px; height: 3px; }
.particle:nth-child(5)  { left: 65%; top: 40%; animation-duration: 9s; animation-delay: 0.5s; width: 5px; height: 5px; }
.particle:nth-child(6)  { left: 90%; top: 65%; animation-duration: 11s; animation-delay: 4s; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  min-height: calc(100vh - 90px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55,0.15);
  border: 1px solid rgba(212, 175, 55,0.3);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.75rem; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero-title-line { display: block; }
.hero-title-accent {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 3s linear infinite;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.hero-actions .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 4px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.stat-item:first-child { padding-left: 0; }
.stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-number2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 0 4px;
  align-self: center;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}
.hero-img-frame {
  position: relative;
  max-width: 460px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}
.hero-img-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border: 2px solid rgba(212, 175, 55,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(212, 175, 55,0.1);
}
.img-badge-1, .img-badge-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10, 10, 10,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55,0.3);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.img-badge-1 { bottom: 80px; left: -30px; }
.img-badge-2 { top: 40px; right: -20px; }
.img-badge-1 i, .img-badge-2 i { color: var(--gold); }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: var(--transition);
}
.hero-scroll-hint:hover { color: var(--gold); }

/* ============ MARQUEE BAR ============ */
.marquee-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-track i {
  font-size: 0.4rem;
  color: var(--green-primary);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ============ ABOUT ============ */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  padding: 24px 24px 0 0;
}
.about-img-bg {
  position: absolute;
  inset: 0;
  background: var(--green-primary);
  border-radius: var(--radius-xl);
  opacity: 0.08;
}
.about-img-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.about-img-inner img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: 0px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.exp-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.exp-num sup { font-size: 1.2rem; }
.exp-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 4px;
}

.about-designation {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: -10px;
  margin-bottom: 8px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}
.highlight-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============ PRACTICE AREAS ============ */
.practice-section { background: var(--green-primary); }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.practice-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 175, 55,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.practice-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 175, 55,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.practice-card:hover::before { opacity: 1; }

.practice-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.practice-card:hover .practice-icon {
  background: var(--gold);
  color: var(--green-dark);
}

.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.practice-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.practice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.practice-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.practice-list li i { color: var(--gold); font-size: 0.75rem; }

.practice-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.practice-link:hover { gap: 10px; color: var(--gold-light); }

/* ============ WHY US ============ */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover {
  background: var(--white);
  border-color: rgba(212, 175, 55,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--green-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: var(--gold);
  color: var(--green-dark);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============ CTA STRIP ============ */
.cta-strip { padding: 64px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p { font-size: 1rem; color: rgba(255,255,255,0.6); }
.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55,0.1);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55,0.3);
}

.testimonial-quote {
  color: var(--gold);
  font-size: 1.8rem;
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
}
.testimonial-matter {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testimonial-rating {
  color: var(--gold);
  font-size: 0.75rem;
  display: flex;
  gap: 2px;
}

.rating-summary {
  text-align: center;
  padding: 40px;
  background: var(--green-primary);
  border-radius: var(--radius-xl);
  color: var(--white);
}
.rating-big {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.rating-stars {
  color: var(--gold);
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.rating-summary p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.rating-summary strong { color: var(--white); }

/* ============ FAQ ============ */
.faq-section { background: var(--green-primary); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 175, 55,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}
.faq-item.open {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.22);
}
.faq-item.open:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-question * { pointer-events: none; }
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ============ CONTACT ============ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 48px;
}

.contact-card-info {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55,0.15);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--green-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-social-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(212, 175, 55,0.15);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(212, 175, 55,0.2);
}

/* ============ FOOTER ============ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.7); }

.footer-top { padding: 72px 0 48px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 260px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn.whatsapp-btn { background: rgba(37,211,102,0.15); color: var(--whatsapp); }
.footer-social-btn.whatsapp-btn:hover { background: var(--whatsapp); color: var(--white); }
.footer-social-btn.maps-btn { background: rgba(212, 175, 55,0.15); color: var(--gold); }
.footer-social-btn.maps-btn:hover { background: var(--gold); color: var(--green-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer { font-style: italic; }

/* ============ FLOATING ELEMENTS ============ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
.floating-whatsapp-tooltip {
  position: absolute;
  left: 70px;
  background: var(--green-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.floating-whatsapp:hover .floating-whatsapp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  border: 2px solid rgba(212, 175, 55,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--gold); color: var(--green-dark); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero-inner { 
    grid-template-columns: 1fr; 
    padding: 100px 24px 40px; 
    gap: 48px;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-image { justify-content: center; width: 100%; }
  .hero-img-frame { max-width: 380px; margin: 0 auto; }
  .hero-img-frame img { 
    height: clamp(320px, 45vh, 480px); 
    object-fit: cover; 
    border-radius: var(--radius-lg); 
  }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-stats { justify-content: center; width: 100%; max-width: 600px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  div[style*="position: sticky"] {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .section-padding { padding: 72px 0; }
  .practice-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blogs-grid { grid-template-columns: 1fr; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .hero-stats { gap: 12px; }
  .stat-item { padding: 0 8px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin-left: auto; margin-right: auto; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .img-badge-1 { left: -15px; bottom: 50px; }
  .img-badge-2 { right: -15px; top: 30px; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 24px; }
  .cta-actions { justify-content: center; width: 100%; }
  .contact-form-wrap, .contact-card-info { padding: 28px; }
  .subpage-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .hero-stats { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px !important;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 0; align-items: center; }
  .stat-number { font-size: 1.8rem; }
  .stat-number2 { font-size: 1.6rem; }
  .rating-big { font-size: 3.5rem; }
  .section-title { font-size: 1.85rem; }
}

/* ── Credentials Section ─────────────────── */
.credentials-section {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--cream-mid);
}
.credentials-title {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  font-weight: 600;
}
.credentials-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.credential-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.credential-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.credential-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.credential-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Featured In Section ──────────────────── */
.featured-section {
  background: var(--cream);
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
}
.featured-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  font-weight: 600;
}
.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.logo-item img {
  height: 48px;
  width: auto;
}
.logo-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Blogs Section ───────────────────────── */
.blogs-section {
  background: var(--white);
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.blog-image {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.1);
  opacity: 0;
  transition: var(--transition);
}
.blog-card:hover .blog-image::after {
  opacity: 1;
}
.blog-placeholder-icon {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.blog-card:hover .blog-placeholder-icon {
  color: var(--gold);
  transform: scale(1.1);
}
.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.blog-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition);
}
.blog-card:hover .blog-content h3 {
  color: var(--gold);
}
.blog-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-read-more:hover {
  gap: 10px;
}

@media (max-width: 992px) {
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blogs-grid { grid-template-columns: 1fr; }
  .credentials-grid { justify-content: center; }
  .featured-logos { gap: 24px; justify-content: center; }
}

/* ============================================
   REUSABLE SUBPAGE DESIGN & LAYER SYSTEM
   ============================================ */

/* Stacking Layering for floating particles */
.hero-bg-overlay {
  z-index: 1;
}
.hero-particles {
  z-index: 2;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-section .container,
.about-section .container {
  position: relative;
  z-index: 3;
}

/* Responsive Subpage Grid & Dark Layouts */
.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .subpage-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.subpage-card-dark {
  background: var(--green-mid);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
  color: var(--white);
  transition: var(--transition);
}

.subpage-card-dark:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.12);
}

.subpage-card-dark h3 {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

.subpage-card-dark h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
}

.subpage-card-dark p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 0;
}

.subpage-card-dark p + p {
  margin-top: 16px;
}

/* ── Subpage Alert / Highlight Box ─────── */
.subpage-alert-box {
  background: var(--green-mid);
  border-left: 4px solid var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.subpage-alert-box h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--gold);
}
.subpage-alert-box p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Sidebar Widgets for Subpages */
.subpage-sidebar-widget {
  margin-top: 24px;
  padding: 24px;
  background: var(--green-mid);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.sidebar-widget-title {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-widget-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  padding: 0;
  list-style: none;
}

.sidebar-widget-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.sidebar-widget-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.sidebar-widget-links a i {
  font-size: 0.75rem;
  color: var(--gold);
  margin-right: 8px;
}

/* Sidebar Intake Wrapper */
.subpage-sidebar-intake {
  background: var(--green-primary);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

/* Subpage contact form wrap */
.subpage-contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--green-mid);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.subpage-contact-form-wrap .contact-form h3 {
  color: var(--gold) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.subpage-contact-form-wrap .form-group label {
  color: rgba(255, 255, 255, 0.95) !important;
}

.subpage-contact-form-wrap .form-note {
  color: var(--text-light) !important;
}

/* ==========================================================================
   THEME SWITCHER SYSTEM (LIGHT & DARK MODES)
   ========================================================================== */

/* ── Theme Toggle Button ──────────────── */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 10px rgba(212, 175, 55, 0.25),
    0 0 10px rgba(212, 175, 55, 0.2);
  margin-right: 8px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}

.theme-toggle-btn::after {
  content: '✦'; /* Glowing gold celestial spark */
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: 0.75rem;
  color: var(--gold-light);
  text-shadow: 0 0 4px var(--gold);
  animation: sparkle 3s ease-in-out infinite;
  pointer-events: none;
  transition: var(--transition);
}

@keyframes sparkle {
  0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; text-shadow: 0 0 8px var(--gold-light); }
}

.theme-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold-light);
  transform: scale(1.08);
  box-shadow: 
    0 6px 25px rgba(0, 0, 0, 0.6),
    inset 0 0 12px rgba(212, 175, 55, 0.45),
    0 0 18px rgba(212, 175, 55, 0.4);
}

.theme-toggle-btn i {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle-btn:hover i {
  transform: rotate(15deg) scale(1.1);
  text-shadow: 0 0 8px var(--gold-light);
}

.theme-toggle-btn:active i {
  transform: scale(0.8) rotate(-20deg);
}

/* ── Light Mode Base Overrides ────────── */
body[data-theme="light"] {
  --white:        #FAF8F5; /* Soft glowing ivory / alabaster */
  --cream:        #F5F2E9; /* Warm luxury gold-cream */
  --cream-mid:    #EBE7DC; /* Deeper accent cream */
  --text-dark:    #1A241C; /* Premium deep forest charcoal */
  --text-muted:   #566459; /* Elegant sage-grey */
  --text-light:   #7A8B7E; /* Light sage-grey */
  --gold-dark:    #c5a03d; /* Luxurious deep copper-gold */
  --gold:         #d4af37;
  --gold-light:   #f0d27c;
  
  background: #FAF8F5 !important;
  color: #1A241C !important;
  --subpage-li-color: #2e3a31; /* Dark charcoal text for light mode */
}

body[data-theme="light"] .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: var(--gold-dark) !important;
  color: var(--gold-dark) !important;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.08),
    inset 0 0 8px rgba(197, 160, 61, 0.15),
    0 0 8px rgba(197, 160, 61, 0.15) !important;
}

body[data-theme="light"] .theme-toggle-btn::after {
  content: '★';
  color: var(--gold-dark);
  text-shadow: 0 0 4px var(--gold-light);
  top: 1px;
  right: 2px;
  font-size: 0.65rem;
}

body[data-theme="light"] .theme-toggle-btn:hover {
  background: rgba(197, 160, 61, 0.1) !important;
  border-color: var(--gold) !important;
  box-shadow: 
    0 6px 20px rgba(197, 160, 61, 0.2),
    inset 0 0 12px rgba(197, 160, 61, 0.25),
    0 0 12px rgba(197, 160, 61, 0.25) !important;
}

body[data-theme="light"] .theme-toggle-btn:hover i {
  transform: rotate(45deg) scale(1.1);
  text-shadow: 0 0 8px var(--gold);
}

/* ── Section Depth & Dotted Grid Background ── */
body[data-theme="light"] section {
  border-bottom: 1px solid rgba(197, 160, 61, 0.15) !important;
}
body[data-theme="light"] .about-section,
body[data-theme="light"] .why-section,
body[data-theme="light"] .testimonials-section,
body[data-theme="light"] .blogs-section,
body[data-theme="light"] .contact-section {
  position: relative;
  background-color: #FAF8F5 !important;
  background-image: radial-gradient(rgba(197, 160, 61, 0.08) 1.5px, transparent 1.5px) !important;
  background-size: 24px 24px !important;
}

/* ── Sticky Header (Glassy Light Mode) ── */
body[data-theme="light"] .site-header {
  background: rgba(250, 248, 245, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(197, 160, 61, 0.12) !important;
  box-shadow: 0 4px 30px rgba(197, 160, 61, 0.04) !important;
}
body[data-theme="light"] .site-header.scrolled {
  background: rgba(250, 248, 245, 0.95) !important;
  border-bottom: 1.5px solid rgba(197, 160, 61, 0.2) !important;
  box-shadow: 0 8px 32px rgba(197, 160, 61, 0.08) !important;
}
body[data-theme="light"] .logo-name {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .nav-link {
  color: rgba(26, 36, 28, 0.75) !important;
}
body[data-theme="light"] .nav-link::after {
  background: var(--gold-dark) !important;
}
body[data-theme="light"] .nav-link:hover,
body[data-theme="light"] .nav-link.active {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .hamburger span {
  background: var(--text-dark) !important;
}
body[data-theme="light"] .nav-dropdown {
  background: rgba(250, 248, 245, 0.98) !important;
  border-color: rgba(197, 160, 61, 0.15) !important;
  box-shadow: 0 15px 40px rgba(197, 160, 61, 0.12) !important;
}
body[data-theme="light"] .dropdown-item {
  color: rgba(26, 36, 28, 0.75) !important;
}
body[data-theme="light"] .dropdown-item:hover {
  color: var(--gold-dark) !important;
  background: rgba(197, 160, 61, 0.08) !important;
  border-left-color: var(--gold-dark) !important;
}

/* ── Mobile Menu Overlay (Light Mode) ── */
body[data-theme="light"] .mobile-menu {
  background: #FAF8F5 !important;
}
body[data-theme="light"] .mobile-nav-link {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .mobile-dropdown-toggle {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .mobile-sub-link {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .mobile-close {
  color: var(--text-dark) !important;
}

/* ── Hero Section (Light Mode Refinements) ── */
body[data-theme="light"] .hero-section {
  background: linear-gradient(135deg, #f2f5f2 0%, #FAF8F5 50%, #eaeaea 100%) !important;
  position: relative;
}
/* Spotlight glow behind hero content */
body[data-theme="light"] .hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  left: -150px;
  top: -100px;
  background: radial-gradient(circle, rgba(197, 160, 61, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
/* Lawyer image background lighting glow */
body[data-theme="light"] .hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(197, 160, 61, 0.25) 0%, transparent 70%);
  filter: blur(25px);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

body[data-theme="light"] .hero-bg-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(197, 160, 61, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(245, 245, 245, 0.8) 0%, transparent 50%) !important;
}
body[data-theme="light"] .hero-title {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .hero-subtitle {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .btn-outline {
  border-color: rgba(197, 160, 61, 0.4) !important;
  color: var(--text-dark) !important;
}
body[data-theme="light"] .btn-outline:hover {
  background: rgba(197, 160, 61, 0.08) !important;
  border-color: var(--gold-dark) !important;
}
body[data-theme="light"] .btn-outline-light {
  border-color: rgba(197, 160, 61, 0.4) !important;
  color: var(--text-dark) !important;
}
body[data-theme="light"] .btn-outline-light:hover {
  background: rgba(197, 160, 61, 0.08) !important;
  border-color: var(--gold-dark) !important;
}

/* ── Floating Primary Buttons ── */
body[data-theme="light"] .btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 
    0 8px 24px rgba(197, 160, 61, 0.35),
    0 2px 6px rgba(197, 160, 61, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
body[data-theme="light"] .btn-primary:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 
    0 12px 30px rgba(197, 160, 61, 0.5),
    0 4px 10px rgba(197, 160, 61, 0.3),
    0 0 15px rgba(197, 160, 61, 0.2) !important;
}

/* ── Elevated Floating Hero Stats Section ── */
body[data-theme="light"] .hero-stats {
  background: #ffffff !important;
  border: 1.5px solid rgba(197, 160, 61, 0.3) !important;
  border-radius: var(--radius-md) !important;
  padding: 24px 32px !important;
  margin-top: 40px !important;
  box-shadow: 
    0 12px 40px rgba(197, 160, 61, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  justify-content: space-around !important;
  width: 100% !important;
  max-width: 750px !important;
}
body[data-theme="light"] .stat-item {
  color: var(--text-dark) !important;
  padding: 0 16px !important;
  align-items: center !important;
  text-align: center !important;
}
body[data-theme="light"] .stat-number {
  color: var(--gold-dark) !important;
  font-size: 2.4rem !important;
}
body[data-theme="light"] .stat-plus {
  color: var(--gold-dark) !important;
}
body[data-theme="light"] .stat-label {
  color: var(--text-muted) !important;
  font-weight: 600 !important;
}
body[data-theme="light"] .stat-number2 {
  color: var(--gold-dark) !important;
  font-size: 2.2rem !important;
}
body[data-theme="light"] .stat-divider {
  background: rgba(197, 160, 61, 0.25) !important;
}

/* ── Practice Section (Light Mode) ────── */
body[data-theme="light"] .practice-section {
  background: var(--cream) !important;
}
body[data-theme="light"] .practice-section .section-title.light,
body[data-theme="light"] .practice-section .section-desc.light {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .practice-section .section-label.light {
  color: var(--gold-dark) !important;
  background: rgba(197, 160, 61, 0.08) !important;
  border: 1px solid rgba(197, 160, 61, 0.2) !important;
}

/* ── Premium Elevated Cards & Hover States ── */
body[data-theme="light"] .practice-card,
body[data-theme="light"] .why-card,
body[data-theme="light"] .testimonial-card,
body[data-theme="light"] .blog-card,
body[data-theme="light"] .subpage-card-dark,
body[data-theme="light"] .subpage-sidebar-widget,
body[data-theme="light"] .subpage-sidebar-intake,
body[data-theme="light"] .subpage-contact-form-wrap {
  background: #ffffff !important;
  border: 1.5px solid rgba(197, 160, 61, 0.15) !important;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.03),
    0 2px 6px rgba(197, 160, 61, 0.04) !important;
  border-radius: var(--radius-md) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body[data-theme="light"] .practice-card:hover,
body[data-theme="light"] .why-card:hover,
body[data-theme="light"] .testimonial-card:hover,
body[data-theme="light"] .blog-card:hover,
body[data-theme="light"] .subpage-card-dark:hover,
body[data-theme="light"] .subpage-sidebar-intake:hover {
  transform: translateY(-5px) !important;
  border-color: var(--gold) !important;
  box-shadow: 
    0 16px 40px rgba(197, 160, 61, 0.14),
    0 0 15px rgba(197, 160, 61, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

body[data-theme="light"] .practice-card h3 {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .practice-card p {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .practice-list li {
  color: var(--text-muted) !important;
}

/* ── CTA Stripe (Gleaming Gold in Light Mode) ── */
body[data-theme="light"] .cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%) !important;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2) !important;
}
body[data-theme="light"] .cta-strip h2 {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .cta-strip p {
  color: rgba(26, 36, 28, 0.8) !important;
}
body[data-theme="light"] .cta-strip .btn-outline {
  border-color: var(--text-dark) !important;
  color: var(--text-dark) !important;
}
body[data-theme="light"] .cta-strip .btn-outline:hover {
  background: rgba(26, 36, 28, 0.06) !important;
}

/* ── FAQ Section (Light Mode) ─────────── */
body[data-theme="light"] .faq-section {
  background: var(--white) !important;
}
body[data-theme="light"] .faq-section .section-title.light,
body[data-theme="light"] .faq-section .section-desc.light {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .faq-section .section-label.light {
  color: var(--gold-dark) !important;
  background: rgba(197, 160, 61, 0.08) !important;
  border-color: rgba(197, 160, 61, 0.2) !important;
}
body[data-theme="light"] .faq-item {
  background: #ffffff !important;
  border-color: rgba(197, 160, 61, 0.15) !important;
}
body[data-theme="light"] .faq-item:hover {
  background: var(--cream) !important;
  border-color: rgba(197, 160, 61, 0.3) !important;
}
body[data-theme="light"] .faq-item.open {
  background: rgba(197, 160, 61, 0.04) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 8px 24px rgba(197, 160, 61, 0.1) !important;
}
body[data-theme="light"] .faq-question {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .faq-question:hover {
  color: var(--gold-dark) !important;
}
body[data-theme="light"] .faq-item.open .faq-question {
  color: var(--gold-dark) !important;
}
body[data-theme="light"] .faq-answer p {
  color: var(--text-muted) !important;
}

/* ── Subpages Main & Sidebar (Light Mode) ── */
body[data-theme="light"] .about-section.dark-bg {
  background: var(--white) !important;
  color: var(--text-dark) !important;
}
body[data-theme="light"] .subpage-card-dark h3 {
  color: var(--gold-dark) !important;
}
body[data-theme="light"] .subpage-card-dark h4 {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .subpage-card-dark p {
  color: var(--text-muted) !important;
}

/* ── Alert Box (Light Mode) ── */
body[data-theme="light"] .subpage-alert-box {
  background: linear-gradient(135deg, #fffdf7 0%, #fdf8ec 100%) !important;
  border: 1.5px solid rgba(197, 160, 61, 0.35) !important;
  border-left: 4px solid var(--gold-dark) !important;
  box-shadow: 0 6px 24px rgba(197, 160, 61, 0.1), 0 2px 8px rgba(0,0,0,0.04) !important;
  color: var(--text-dark) !important;
}
body[data-theme="light"] .subpage-alert-box h5 {
  color: var(--gold-dark) !important;
}
body[data-theme="light"] .subpage-alert-box p {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .subpage-sidebar-intake p {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .subpage-sidebar-intake span {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .sidebar-widget-links a {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .sidebar-widget-links a:hover {
  color: var(--gold-dark) !important;
}
body[data-theme="light"] .subpage-contact-form-wrap .contact-form h3 {
  color: var(--text-dark) !important;
  border-bottom-color: rgba(197, 160, 61, 0.15) !important;
}
body[data-theme="light"] .subpage-contact-form-wrap .form-group label {
  color: var(--text-dark) !important;
}
body[data-theme="light"] .subpage-contact-form-wrap .form-note {
  color: var(--text-muted) !important;
}

/* ── Footer Section (Light Mode) ───────── */
body[data-theme="light"] .site-footer {
  background: var(--cream) !important;
  color: var(--text-muted) !important;
  border-top: 1px solid rgba(197, 160, 61, 0.15) !important;
}
body[data-theme="light"] .footer-desc {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .footer-links-col h4,
body[data-theme="light"] .footer-contact-col h4 {
  color: var(--gold-dark) !important;
}
body[data-theme="light"] .footer-links-col ul li a {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .footer-links-col ul li a:hover {
  color: var(--gold-dark) !important;
}
body[data-theme="light"] .footer-contact-item {
  color: var(--text-muted) !important;
}
body[data-theme="light"] .footer-bottom {
  border-top-color: rgba(197, 160, 61, 0.12) !important;
}
body[data-theme="light"] .footer-bottom p {
  color: var(--text-muted) !important;
}


