/* ============================================================
   IANS LAW FIRM - Premium Theme
   Theme: Deep Plum + Gold (Royal & Luxurious)
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #2d1b3e;
  --primary-light: #6d28d9;
  --primary-dark: #1a0f26;
  --primary-mid: #4c1d95;
  --primary-glow: rgba(45, 27, 62, 0.12);
  --accent: #d4a847;
  --accent-light: #e8c36a;
  --accent-dark: #b8922e;
  --accent-glow: rgba(212, 168, 71, 0.2);
  --bg-body: #faf8f3;
  --bg-white: #ffffff;
  --bg-surface: #f3efe8;
  --bg-alt: #f0ebf5;
  --bg-card: #ffffff;
  --bg-dark: #2d1b3e;
  --bg-dark-surface: #3d2950;
  --border: #e2dcd3;
  --border-light: #f0ebe3;
  --border-hover: #c4b5a0;
  --text-primary: #1a0f26;
  --text-body: #5a4e6b;
  --text-subtle: #9a8aa8;
  --text-on-dark: #faf5eb;
  --text-muted: #c4b8d0;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --transition-fast: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 700ms cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --gradient-primary: linear-gradient(135deg, #2d1b3e, #6d28d9);
  --gradient-accent: linear-gradient(135deg, #d4a847, #e8c36a);
  --gradient-hero: linear-gradient(160deg, #faf8f3 0%, #f3efe8 40%, #f5f0ea 100%);
  --gradient-card-border: linear-gradient(135deg, #6d28d9, #d4a847);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
::selection {
  background: var(--accent-glow);
  color: var(--primary-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-surface);
}
::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-subtle);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== UTILITY ===== */
.overflow-hidden {
  overflow: hidden !important;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
  position: relative;
}
.section-alt {
  background: var(--bg-surface);
}
.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-on-dark);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(212, 168, 71, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 168, 71, 0.15);
}

.section-label .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-title strong {
  color: var(--primary);
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== KEYFRAMES - ENHANCED LAW THEME ===== */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 71, 0.2);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(212, 168, 71, 0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== GAVEL STRIKE ===== */
@keyframes gavel-strike {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  15% {
    transform: translateY(-4px) rotate(-1deg);
  }
  30% {
    transform: translateY(2px) rotate(0.5deg);
  }
  45% {
    transform: translateY(-1px) rotate(-0.3deg);
  }
  60% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Scales of Justice */
@keyframes balance-scales {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
}

/* Law book opening */
@keyframes book-open {
  from {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* Legal document slide */
@keyframes document-slide {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* Animated gradient border rotation */
@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Gold shimmer for legal text */
@keyframes gold-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Gold sparkle burst */
@keyframes sparkle-burst {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

/* Emphasis glow */
@keyframes emphasis-glow {
  0%, 100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(1.02);
  }
}

/* Gavel hit bounce */
@keyframes gavel-hit {
  0% { transform: translateY(0) rotate(0deg); }
  10% { transform: translateY(-20px) rotate(-5deg); }
  30% { transform: translateY(5px) rotate(2deg); }
  50% { transform: translateY(-3px) rotate(-1deg); }
  70% { transform: translateY(1px) rotate(0deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.hidden { display: none !important; }

/* ===== SCROLL PROGRESS ===== */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  width: 0%;
  transition: width 50ms linear;
  box-shadow: 0 0 8px rgba(45, 27, 62, 0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-down,
.reveal-scale {
  transition: all var(--transition-slow);
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
}
.reveal-down {
  opacity: 0;
  transform: translateY(-20px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-down.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }
.delay-6 { transition-delay: 600ms; }
.delay-7 { transition-delay: 700ms; }
.delay-8 { transition-delay: 800ms; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(45, 27, 62, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(45, 27, 62, 0.35);
  transform: translateY(-2px);
}
.btn-primary:hover::after {
  transform: translateX(100%);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #1a0f26;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(212, 168, 71, 0.3);
}
.btn-secondary:hover {
  box-shadow: 0 6px 24px rgba(212, 168, 71, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--border);
  color: var(--text-primary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(45, 27, 62, 0.03);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #1a0f26;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(212, 168, 71, 0.3);
}
.btn-gold:hover {
  box-shadow: 0 6px 24px rgba(212, 168, 71, 0.5);
  transform: translateY(-2px) scale(1.02);
}

/* ===== NAVBAR ===== */
/* Elegant Prestige Theme — Ivory + Gold */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid #ece6dc;
}
.navbar.navbar-home {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.navbar::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, #b8922e 20%, #d4a847 50%, #e8c36a 80%, transparent 95%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.navbar.scrolled {
  padding: 0.55rem 2rem;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: #d4a847;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.navbar.scrolled::before {
  opacity: 1;
}
.navbar.scrolled .nav-links a {
  color: #4a3f35;
}
.navbar.scrolled .nav-links a:hover {
  color: var(--accent-dark);
  background: rgba(212, 168, 71, 0.06);
}
.navbar.scrolled .nav-links .active {
  color: var(--accent-dark);
}
.navbar.scrolled .nav-logo-text {
  color: #2d1b3e;
}
.navbar.scrolled .nav-links a + a::before {
  background: #c4b5a5;
}
.navbar.scrolled .menu-btn,
.navbar.scrolled .menu-btn span {
  color: #2d1b3e;
}
.navbar.scrolled .menu-btn:hover {
  background: rgba(212, 168, 71, 0.08);
}
.navbar.scrolled .menu-btn:hover span {
  color: var(--accent-dark);
}
.navbar-home.scrolled .nav-links a {
  color: #4a3f35;
}
.navbar-home.scrolled .nav-links a:hover {
  color: var(--accent-dark);
  background: rgba(212, 168, 71, 0.06);
}
.navbar-home.scrolled .nav-links .active {
  color: var(--accent-dark);
}
.navbar-home.scrolled .nav-logo-text {
  color: #2d1b3e;
}
.navbar-home.scrolled .menu-btn,
.navbar-home.scrolled .menu-btn span {
  color: #2d1b3e;
}
.navbar-home.scrolled .menu-btn:hover {
  background: rgba(212, 168, 71, 0.08);
}
.navbar-home.scrolled .menu-btn:hover span {
  color: var(--accent-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #d4a847 0%, transparent 100%);
  opacity: 0.3;
}
.nav-logo img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-fast);
}
.nav-logo:hover img {
  transform: scale(1.05);
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: #2d1b3e;
  letter-spacing: -0.02em;
}
.navbar-home .nav-logo-text {
  color: #fff;
}
.nav-logo-text span {
  color: var(--accent);
  font-weight: 400;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a3f35;
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.8px;
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.navbar-home .nav-links a {
  color: rgba(255,255,255,0.9);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1.5px;
  background: var(--accent);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links .active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-links a:hover {
  color: var(--accent-dark);
  background: rgba(212, 168, 71, 0.06);
}
.navbar-home .nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-links .active {
  color: var(--accent-dark);
  font-weight: 600;
}
.navbar-home .nav-links .active {
  color: var(--accent);
}

/* Elegant separator dots between nav items */
.nav-links a + a::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  pointer-events: none;
}
/* Remove separator before CTA */
.nav-links a.nav-cta::before {
  display: none;
}

.nav-cta {
  background: var(--accent) !important;
  color: #2d1b3e !important;
  padding: 0.5rem 1.6rem !important;
  border-radius: 3px !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  border: none !important;
  transition: all var(--transition-fast) !important;
  position: relative;
  margin-left: 0.75rem;
  box-shadow: 0 2px 8px rgba(212, 168, 71, 0.2);
}
.nav-cta::after {
  display: none !important;
}
.nav-cta::before {
  display: none !important;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: #2d1b3e !important;
  box-shadow: 0 4px 16px rgba(212, 168, 71, 0.35) !important;
  transform: translateY(-1px) !important;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #2d1b3e;
  cursor: pointer;
  z-index: 1001;
  padding: 0.25rem;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: background var(--transition-fast);
}
.menu-btn:hover {
  background: rgba(212, 168, 71, 0.08);
}
.menu-btn span {
  font-size: 1.8rem;
  color: #2d1b3e;
  transition: color var(--transition-fast);
}
.menu-btn:hover span {
  color: var(--accent-dark);
}
.navbar-home .menu-btn,
.navbar-home .menu-btn span {
  color: #fff;
}
.navbar-home .menu-btn:hover {
  background: rgba(255,255,255,0.1);
}
.navbar-home .menu-btn:hover span {
  color: var(--accent);
}

/* ===== DROPDOWN ===== */
.dropdown-nav {
  position: relative;
}
.dropdown-nav > a {
  display: flex;
  align-items: center;
  gap: 2px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #ffffff;
  border: 1px solid #ece6dc;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 0.75rem;
  padding-top: 16px;
  margin-top: -8px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
}
.dropdown-nav:hover .dropdown-menu,
.dropdown-nav:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius-sm);
  color: #4a3f35 !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(212, 168, 71, 0.1);
  color: var(--accent-dark) !important;
  padding-left: 1.4rem !important;
}
.dropdown-menu a span {
  font-size: 1.1rem;
  color: var(--accent);
  transition: all var(--transition-fast);
}
.dropdown-menu a:hover span {
  transform: scale(1.1);
}
.dropdown-menu a:not(:last-child) {
  border-bottom: 1px solid #f0ebe3;
}
.dropdown-menu a::before,
.dropdown-menu a::after {
  display: none !important;
}
.dropdown-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.dropdown-nav:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* ===== MOBILE PANEL ===== */
.mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: #faf8f3;
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 2px solid #ece6dc;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.06);
}
.mobile-panel.open {
  right: 0;
}
.mobile-panel a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: #4a3f35;
  border-bottom: 1px solid #ece6dc;
  transition: all var(--transition-fast);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.mobile-panel a:hover {
  color: var(--accent-dark);
  padding-left: 0.8rem;
}
.mobile-panel .active {
  color: var(--accent-dark);
  font-weight: 600;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 27, 62, 0.35);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  background: var(--gradient-hero);
}

/* ===== FULL-PAGE PARTICLE BACKGROUND ===== */
#heroParticleCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Sections stack above particles */
.section,
.section-alt,
.section-dark,
.hero,
.cta-banner,
footer {
  position: relative;
  z-index: 1;
}

/* Hero background image */
.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-bg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 248, 243, 0.35) 0%, rgba(250, 248, 243, 0.05) 40%, rgba(250, 248, 243, 0.2) 100%);
}

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fade-in 2s 2s both;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}
.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  animation: fade-up 1s 0.4s both;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero h1 .hero-em {
  font-weight: 400;
  position: relative;
  display: inline-block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gold-shimmer 4s linear infinite;
}
.hero h1 .hero-em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  background-size: 200% auto;
  border-radius: 3px;
  opacity: 0.5;
  animation: gold-shimmer 4s linear infinite;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  max-width: 520px;
  margin: 1.5rem 0 2rem;
  animation: fade-up 1s 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up 1s 0.8s both;
}

/* Hero Right */
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--bg-surface);
  animation: scale-in 1.2s 0.5s both;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gradient-card-border);
  z-index: -1;
  opacity: 0.3;
  animation: gradient-rotate 4s ease infinite;
  background-size: 200% 200%;
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(26, 15, 38, 0.55) 0%, rgba(26, 15, 38, 0.05) 45%, transparent 70%);
  pointer-events: none;
}

.hero-image-accent {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.2;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-image-accent-2 {
  position: absolute;
  bottom: -6px;
  left: -6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.15;
  animation: pulse-glow 4s ease-in-out infinite reverse;
}

.hero-brand-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-brand-logo {
  width: clamp(100px, 30%, 200px);
  height: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.08));
  transition: all var(--transition-med);
}
.hero-image-wrap:hover .hero-brand-logo {
  transform: scale(1.06);
  opacity: 0.85;
}

.hero-info-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}
.hero-info-overlay:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.hero-info-overlay h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.hero-info-overlay p {
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0;
  font-weight: 500;
}

.hero-avatars {
  display: flex;
}
.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px;
  object-fit: cover;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.hero-avatars img:hover {
  transform: scale(1.15);
  z-index: 1;
}

/* ===== SECTION ENTRY GAVEL PULSE ===== */
.section-gavel-strike.active {
  animation: gavel-strike 0.6s cubic-bezier(0.36, 0, 0.66, 1);
}

/* ===== ANIMATED CARD BORDER GLOW ===== */
.vm-card::before,
.value-card::before,
.why-card::after {
  background-size: 200% 200% !important;
}
.vm-card:hover::before {
  animation: gradient-rotate 3s ease infinite !important;
}
.value-card:hover::before {
  animation: gradient-rotate 3s ease infinite !important;
}
.why-card:hover::after {
  animation: gradient-rotate 3s ease infinite !important;
}

/* ===== CARD HOVER GLOW ===== */
.vm-card,
.value-card,
.why-card,
.team-card,
.reg-card,
.category-chip {
  position: relative;
}

.vm-card:hover {
  box-shadow: var(--shadow-lg), 0 0 30px rgba(45, 27, 62, 0.08);
}
.value-card:hover {
  box-shadow: var(--shadow-lg), 0 0 30px rgba(45, 27, 62, 0.08);
}
.why-card:hover {
  box-shadow: var(--shadow-xl), 0 0 40px rgba(45, 27, 62, 0.06);
}
.practice-showcase:hover {
  box-shadow: var(--shadow-xl), 0 0 30px rgba(45, 27, 62, 0.06);
}
.team-card:hover {
  box-shadow: var(--shadow-xl), 0 0 30px rgba(45, 27, 62, 0.08);
}
.reg-card:hover {
  box-shadow: var(--shadow-lg), 0 0 25px rgba(45, 27, 62, 0.06);
}

/* ===== SECTION-LEVEL DECORATIVE ELEMENTS ===== */
.section-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section-decor-1 {
  top: 10%;
  right: 3%;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.04;
  animation: float 8s ease-in-out infinite;
}
.section-decor-2 {
  bottom: 8%;
  left: 2%;
  font-size: 3rem;
  color: var(--primary-light);
  opacity: 0.04;
  animation: float 10s ease-in-out infinite reverse;
}

/* ===== TIMELINE ===== */
.timeline-item .year {
  position: relative;
  display: inline-block;
}
.timeline-item .year::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  opacity: 0.3;
}

/* ===== TYPEWRITER CURSOR ===== */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  animation: typewriter-blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes typewriter-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== PRACTICE AREA CARD IMAGE ZOOM ===== */
.practice-showcase .practice-showcase-img img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}
.practice-showcase:hover .practice-showcase-img img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

/* ===== TESTIMONIAL SECTION DECOR ===== */
.testimonials-section .section-decor-dark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.testimonials-section .section-decor-dark span {
  position: absolute;
  font-size: 3rem;
  color: var(--accent-light);
  opacity: 0.04;
  animation: float 7s ease-in-out infinite;
}
.testimonials-section .section-decor-dark span:nth-child(1) {
  top: 8%;
  left: 5%;
  animation-delay: 0s;
}
.testimonials-section .section-decor-dark span:nth-child(2) {
  top: 60%;
  right: 8%;
  animation-delay: 2s;
  font-size: 2rem;
}
.testimonials-section .section-decor-dark span:nth-child(3) {
  bottom: 10%;
  left: 50%;
  animation-delay: 4s;
}

/* ===== CTA BANNER ===== */
.cta-banner .cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner .cta-shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(45, 27, 62, 0.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.cta-banner .cta-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -30px;
  background: radial-gradient(circle, rgba(212, 168, 71, 0.05) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite reverse;
}

/* ===== ANIMATED GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient-card-border);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s linear infinite;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}
.about-image-badge:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.about-image-badge span.material-symbols-outlined {
  font-size: 1.3rem;
  color: var(--accent);
}

.about-divider {
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
  margin: 1.5rem 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.vm-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-card-border);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity var(--transition-med);
}
.vm-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.vm-card:hover::before {
  opacity: 1;
}
.vm-card .icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.vm-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.vm-card p {
  line-height: 1.7;
  color: var(--text-body);
  font-size: 0.88rem;
}

/* ===== CORE VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-card-border);
  background-size: 200% 200%;
  transition: width var(--transition-fast);
  border-radius: 3px 3px 0 0;
}
.value-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.value-card:hover::before {
  width: 80%;
}
.value-card .icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(45, 27, 62, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all var(--transition-fast);
}
.value-card:hover .icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}
.value-card:hover .icon span {
  color: #fff !important;
}
.value-card .icon span {
  color: var(--primary);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}
.value-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.value-card p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== TIMELINE SECTION ===== */
.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.history-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 6rem;
  box-shadow: var(--shadow-lg);
}
.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline.visible::before {
  transform: scaleY(1);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.55rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2.5px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 168, 71, 0.08), 0 0 20px rgba(212, 168, 71, 0.08);
  transition: all var(--transition-fast);
}
.timeline-item:hover::before {
  background: var(--gradient-accent);
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 6px rgba(212, 168, 71, 0.12), 0 0 30px rgba(212, 168, 71, 0.15);
}
.timeline-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.timeline-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}
.timeline-item .year {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
}

/* ===== REGISTRATION ===== */
.registration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.reg-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.reg-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.reg-card span {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.reg-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.reg-card p {
  font-size: 0.84rem;
  color: var(--text-body);
}

/* ===== PRACTICE SHOWCASE ===== */
.practice-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.practice-showcase {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  display: block;
  box-shadow: var(--shadow-sm);
}
.practice-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(45, 27, 62, 0.02), rgba(212, 168, 71, 0.03));
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 1;
  pointer-events: none;
}
.practice-showcase:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.practice-showcase:hover::before {
  opacity: 1;
}

.practice-showcase-img {
  width: 100%;
  height: 100%;
}
.practice-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-med);
}
.practice-showcase:hover .practice-showcase-img img {
  transform: scale(1.06);
}
.practice-showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(26, 15, 38, 0.92) 15%, rgba(26, 15, 38, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all var(--transition-fast);
}
.practice-showcase-overlay h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}
.practice-showcase-overlay p {
  font-size: 0.78rem;
  color: rgba(250, 248, 243, 0.7);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-fast);
}
.practice-showcase:hover .practice-showcase-overlay p {
  opacity: 1;
  transform: translateY(0);
}
.practice-showcase-overlay .practice-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-light);
  gap: 0.3rem;
  margin-top: 0.5rem;
  opacity: 0;
  transition: all var(--transition-fast);
}
.practice-showcase:hover .practice-tag {
  opacity: 1;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-card-border);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.why-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.why-card:hover::after {
  opacity: 1;
}
.why-card .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.why-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== PRACTICE GRID ===== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.practice-card {
  display: block;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}
.practice-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.practice-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(45, 27, 62, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}
.practice-card:hover .icon {
  background: var(--gradient-primary);
}
.practice-card:hover .icon span {
  color: #fff !important;
}
.practice-card .icon span {
  color: var(--primary);
  font-size: 1.4rem;
  transition: color var(--transition-fast);
}
.practice-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.practice-card p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.practice-card .learn-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-fast);
}
.practice-card:hover .learn-more {
  gap: 0.7rem;
}

/* ===== PRICING ===== */
.pricing-content {
  max-width: 750px;
  margin: 2rem auto 0;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.pricing-content p {
  line-height: 1.8;
  font-size: 0.95rem;
  color: var(--text-body);
}
.pricing-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.pricing-tag {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(212, 168, 71, 0.06);
  border: 1px solid rgba(212, 168, 71, 0.12);
  font-size: 0.82rem;
  color: var(--accent-dark);
  font-weight: 500;
  transition: all var(--transition-fast);
}
.pricing-tag:hover {
  background: var(--gradient-accent);
  color: #1a0f26;
  border-color: transparent;
  transform: translateY(-1px);
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.category-chip {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition-fast);
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.category-chip:hover {
  border-color: var(--accent);
  color: var(--primary);
  background: rgba(212, 168, 71, 0.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== TEAM CAROUSEL ===== */
.team-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.team-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
  flex: 1;
  scroll-behavior: smooth;
}
.team-carousel::-webkit-scrollbar {
  display: none;
}
.team-carousel .team-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 220px;
  scroll-snap-align: start;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.carousel-btn:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
}
.carousel-btn:active {
  transform: scale(0.95);
}
.carousel-btn span {
  font-size: 1.4rem;
}

.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.team-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all var(--transition-med);
}
.team-card:hover .team-card-img-wrap img {
  transform: scale(1.06);
}
.team-card-body {
  padding: 1rem 0.75rem;
}
.team-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
}
.team-card-body p {
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0.25rem 0 0;
  font-weight: 500;
}
.team-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-surface);
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-med);
}
.team-card:hover .team-card-img img {
  transform: scale(1.06);
}
.team-card-info {
  padding: 1.25rem;
}
.team-card-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}
.team-card:hover .team-card-info h4 {
  color: var(--primary);
}
.team-card-info .role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.team-card-info p {
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.team-card-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #0a66c2;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.team-card-linkedin:hover {
  background: #004182;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.4);
}
.team-card-linkedin svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.testimonials-section .section-title {
  color: var(--text-on-dark);
}
.testimonials-section .section-label {
  border-color: rgba(212, 168, 71, 0.2);
  background: rgba(212, 168, 71, 0.05);
}

.testimonial-marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: testimonial-scroll 50s linear infinite;
}
.testimonial-marquee-wrap:hover .testimonial-track {
  animation-play-state: paused;
}
@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 360px;
  min-height: 260px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.testimonial-card:hover {
  border-color: rgba(212, 168, 71, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.testimonial-card .stars {
  color: var(--accent-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.88rem;
  color: rgba(250, 248, 243, 0.75);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonial-card .author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 71, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card .author .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-on-dark);
}
.testimonial-card .author .title {
  font-size: 0.72rem;
  color: rgba(250, 248, 243, 0.4);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(45, 27, 62, 0.03) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.contact-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-item .icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.contact-item:hover .icon {
  background: var(--gradient-accent);
}
.contact-item:hover .icon span {
  color: #1a0f26;
}
.contact-item .icon span {
  font-size: 1.2rem;
  color: var(--accent);
  transition: color var(--transition-fast);
}
.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}
.contact-item p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.5;
}

.contact-form {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
  width: 100%;
}
.form-row .form-group {
  margin-bottom: 0;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--bg-body);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 168, 71, 0.08);
  background: #fff;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 997;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.whatsapp-widget:hover {
  background: #20BD5A;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transform: translateY(-3px);
  color: #fff;
}
.whatsapp-widget svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 4rem 0 0;
  position: relative;
  z-index: 1;
  border-top: 2px solid rgba(212, 168, 71, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(250, 248, 243, 0.55);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(250, 248, 243, 0.5);
  margin-bottom: 0.75rem;
  transition: all var(--transition-fast);
}
.footer-col a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(250, 248, 243, 0.35);
}
.footer-bottom a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 243, 0.3);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--gradient-accent);
  color: #1a0f26;
  transform: scale(1.1);
}

/* ===== FAQ ITEMS ===== */
.faq-item {
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
  cursor: default;
}
.faq-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm), 0 0 0 2px rgba(212, 168, 71, 0.04);
  transform: translateY(-1px);
}
.faq-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--primary);
}
.faq-item h4 strong {
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-right: 0.25rem;
}
.faq-item p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-left: 0;
}

/* ===== PRACTICE DETAIL HERO (Sub-pages) ===== */
.practice-detail-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.practice-detail-hero .container {
  position: relative;
  z-index: 2;
}
.practice-detail-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
}
.practice-detail-hero p {
  color: rgba(250, 248, 243, 0.85) !important;
  max-width: 600px !important;
  margin: 1rem auto 0 !important;
}

.practice-detail-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.practice-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 6rem;
  box-shadow: var(--shadow-lg);
}
.practice-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.services-list {
  margin: 1rem 0;
}
.services-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}
.services-list li:last-child {
  border-bottom: none;
}
.services-list li span {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.practice-cta {
  padding: 4rem 0;
  background: var(--bg-dark);
  text-align: center;
}
.practice-cta h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}
.practice-cta p {
  color: rgba(250, 248, 243, 0.6);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .practice-detail-content { grid-template-columns: 1fr; }
  .practice-detail-image { position: static; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-image-wrap { max-width: 500px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .history-content { grid-template-columns: 1fr; }
  .history-image { position: static; }
  .practice-showcase-grid { grid-template-columns: 1fr 1fr; }
  .registration-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .team-carousel .team-card { flex: 0 0 calc(50% - 0.75rem); }
}


/* ===== TABLET (768px) ===== */
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .practice-showcase-grid { grid-template-columns: 1fr 1fr; }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .registration-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .history-content { grid-template-columns: 1fr; }
  .history-image { position: static; }
  .hero-image-wrap { max-width: 450px; margin: 0 auto; }
  .timeline { padding-left: 2rem; }
  .team-carousel .team-card { flex: 0 0 calc(50% - 0.75rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .navbar { padding: 0.65rem 1.25rem; }
  .navbar.scrolled { padding: 0.5rem 1.25rem; }
  .nav-logo-text { font-size: 1.3rem; }
  .nav-logo img { height: 38px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 0.9rem; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .practice-showcase-grid { grid-template-columns: 1fr; }
  .registration-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-carousel .team-card { flex: 0 0 80%; }
  .pricing-content { padding: 2rem 1.25rem; }
  .contact-form { padding: 1.5rem; }
  .vm-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.9rem; }
  .page-hero { padding: 6rem 0 3rem; }
  .practice-detail-hero { padding: 6rem 0 3rem; }
  .practice-detail-image img { min-height: 220px; }
  .history-image img { min-height: 220px; }
}

@media (max-width: 480px) {
  .navbar { padding: 0.5rem 1rem; }
  .nav-logo img { height: 32px; }
  .nav-logo-text { font-size: 1.05rem; }
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .hero { min-height: 90vh; padding-top: 4rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .team-carousel .team-card { flex: 0 0 90%; }
  .carousel-btn { width: 36px; height: 36px; }
  .carousel-btn span { font-size: 1.1rem; }
  .form-row { flex-direction: column; }
  .pricing-content { padding: 1.5rem 1rem; }
  .hero-scroll-indicator { bottom: 1.5rem; }
  .hero-scroll-indicator span { font-size: 0.55rem; }
  .cta-banner h2 { font-size: 1.5rem; }
  .page-hero { padding: 4rem 0 2rem; }
  .practice-detail-hero { padding: 4rem 0 2rem; }
  .practice-detail-image img { min-height: 180px; }
  .history-image img { min-height: 180px; }
}

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter {
  margin-top: 1.5rem;
}
.footer-newsletter h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 320px;
}
.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(212, 168, 71, 0.15);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-form input::placeholder {
  color: var(--text-muted);
}
.newsletter-form input:focus {
  border-color: var(--accent);
}
.newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #2d1b3e;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.newsletter-form button:hover {
  background: var(--accent-light);
}
.newsletter-form button span {
  font-size: 1.2rem;
}

/* ===== PARALLAX SCROLL ANIMATIONS ===== */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Smooth reveal for contact items */
.contact-item {
  transition: all var(--transition-med);
}
.contact-item:hover {
  transform: translateX(5px);
}

/* Counter number animation */
.counter-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
}

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter {
  margin-top: 1.5rem;
}
.footer-newsletter h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 320px;
}
.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(212, 168, 71, 0.15);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-form input::placeholder {
  color: var(--text-muted);
}
.newsletter-form input:focus {
  border-color: var(--accent);
}
.newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #2d1b3e;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.newsletter-form button:hover {
  background: var(--accent-light);
}
.newsletter-form button span {

  font-size: 1.2rem;
}

/* ===== TABLET BREAKPOINT ===== */
