:root {
  --gold: #C89B3C;
  --gold-light: #D4AF37;
  --gold-dark: #A07D2A;
  --gold-glow: rgba(200, 155, 60, 0.25);
  --gold-soft: rgba(200, 155, 60, 0.1);
  --gold-glass: rgba(200, 155, 60, 0.08);
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #FDFCF9;
  --dark: #1E1E1E;
  --dark-soft: #2D2D2D;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --gray-soft: #F3F2EF;
  --border: #E8E5DF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(200,155,60,0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }

/* ========== LOADER ========== */
#loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--white); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-icon { font-size: 48px; color: var(--gold); margin-bottom: 20px; animation: pulseLoader 1.5s ease-in-out infinite; }
.loader-bar { width: 200px; height: 3px; background: var(--gray-soft); border-radius: 2px; overflow: hidden; }
.loader-bar span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; animation: loadBar 1.8s ease-in-out forwards; }
@keyframes pulseLoader { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } }
@keyframes loadBar { 0% { width: 0; } 50% { width: 70%; } 100% { width: 100%; } }

/* ========== SCROLL PROGRESS ========== */
#scroll-progress {
  position: fixed; top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999; transition: width 0.05s linear;
}

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

/* ========== NAVBAR ========== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.brand-logo { height: 40px; width: auto; border-radius: 50%; box-shadow: var(--shadow-sm); }
.nav-logo .gold { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 6px;
}
.nav-links li a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 1px;
}
.nav-links li a:hover::after,
.nav-links li a.active::after { width: 60%; }
.nav-links li a:hover { color: var(--gold); background: var(--gold-soft); }
.nav-links li a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  padding: 8px 16px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-phone:hover { background: var(--gold); color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition-fast); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ========== SECTION ========== */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: rgba(200,155,60,0.05);
}
.section-tag i { font-size: 0.75rem; }
.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.8;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.section-divider span {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.section-divider i {
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,155,60,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,155,60,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem; }

/* ========== HERO ========== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 140px 0 0;
  background: var(--white);
  overflow: hidden;
}
.hero-visual-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0.9) 20%, transparent 100%);
  z-index: 1;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.hero-content {
  max-width: 650px;
  padding-bottom: 60px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-label i { font-size: 1rem; }
.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-soft);
  margin-bottom: 24px;
}
.hero-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-buttons .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
}
.hero-buttons .btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: none;
  border: 1px solid var(--gold);
}
.hero-buttons .btn-primary:hover {
  background: var(--gold-dark);
}
.hero-buttons .btn-outline {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border);
}
.hero-buttons .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--white);
}

.hero-stats-wrapper {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding-bottom: 40px;
}
.hero-stats-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  max-width: 800px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
}
.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-value {
  display: flex;
  align-items: baseline;
  color: var(--gold);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.hero-floating-actions {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.float-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  color: var(--dark);
}
.float-btn i {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.float-btn span {
  font-size: 0.6rem;
  font-weight: 600;
}
.float-btn.whatsapp i {
  color: #C89B3C;
}
.float-btn.call i {
  color: #C89B3C;
}
.float-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-quote {
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(200,155,60,0.06), rgba(200,155,60,0.02));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  position: relative;
}
.about-quote i { position: absolute; top: 16px; left: 16px; color: var(--gold); opacity: 0.15; font-size: 2rem; }
.about-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--dark);
  opacity: 0.8;
  margin: 0;
  padding-left: 8px;
}
.about-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.counter-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.counter-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.counter-plus { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.counter-label { display: block; font-size: 0.68rem; color: var(--gray); font-weight: 500; margin-top: 4px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  transition: var(--transition-fast);
}
.about-feat i { color: var(--gold); font-size: 0.9rem; }
.about-feat:hover { transform: translateX(4px); }
.about-visual { display: flex; justify-content: center; }
.about-image-card {
  position: relative;
}
.about-img-wrapper {
  width: 380px;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--cream), var(--white));
}
.about-img-placeholder { width: 100%; height: 100%; position: relative; }
.about-img-actual { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(200,155,60,0.35);
}
.exp-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.exp-text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ========== PRACTICE AREAS ========== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.practice-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-soft), transparent);
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.practice-card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
}
.practice-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.practice-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ========== TEAM ========== */
.team-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.team-founder { margin-bottom: 50px; }
.founder-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.founder-img { position: relative; flex-shrink: 0; }
.founder-avatar svg { width: 180px; height: 180px; }
.founder-rank {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  white-space: nowrap;
}
.founder-info { flex: 1; }
.founder-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.founder-role { font-size: 0.85rem; color: var(--gold); font-weight: 600; display: block; margin-bottom: 12px; }
.founder-info p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }
.founder-social { display: flex; gap: 10px; margin-top: 16px; }
.founder-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.founder-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.team-sub { margin-bottom: 40px; }
.coordinator-card {
  padding: 30px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  max-width: 360px;
}
.coordinator-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--gold); }
.coord-img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); margin: 0 auto 16px; display: block; }
.team-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.coord-subtitle { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }
.coord-phone { font-size: 0.95rem; color: var(--dark); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.coord-phone i { color: var(--gold); }
.coord-footer { font-size: 0.85rem; color: var(--dark); line-height: 1.5; font-weight: 500; }
.team-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.advocates-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.advocate-card {
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.advocate-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.adv-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); margin: 0 auto 16px; display: block; }
.advocate-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.adv-branch { font-size: 0.85rem; color: var(--gold); font-weight: 600; display: block; margin-bottom: 12px; }
.adv-address { font-size: 0.75rem; color: var(--gray); line-height: 1.5; margin-bottom: 12px; }
.adv-phone { font-size: 0.8rem; color: var(--dark); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.adv-phone i { color: var(--gold); }

/* ========== WHY CHOOSE US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), transparent);
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ========== PROCESS TIMELINE ========== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  padding-top: 10px;
}
.process-line {
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.step-content {
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step-content:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.step-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}
.step-content:hover .step-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.testi-rating { margin-bottom: 16px; }
.testi-rating i { color: var(--gold); font-size: 1rem; margin: 0 2px; }
.testi-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.testi-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.testi-info span { font-size: 0.8rem; color: var(--gray); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.testi-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}
.testi-dots span.active { background: var(--gold); transform: scale(1.3); }

/* ========== INSIGHTS ========== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.insight-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.insight-body { padding: 24px; }
.insight-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.insight-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.insight-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition-fast);
}
.insight-link i { font-size: 0.75rem; transition: var(--transition-fast); }
.insight-link:hover { gap: 12px; }

/* ========== FAQ ========== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition-fast);
}
.faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition-fast);
  user-select: none;
}
.faq-item.active .faq-question { color: var(--gold); }
.faq-question i {
  font-size: 0.8rem;
  color: var(--gray-light);
  transition: var(--transition-fast);
}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-visual { display: flex; justify-content: center; }
.faq-image-card {
  position: relative;
  width: 360px;
  height: auto;
}
.faq-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  display: block;
}
.faq-badge {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(200,155,60,0.3);
  animation: badgeFloat 3s ease-in-out infinite;
}
.faq-badge-1 { top: 20px; right: -10px; animation-delay: 0s; }
.faq-badge-2 { bottom: 40px; left: -15px; animation-delay: 1.5s; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}
.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold); }
.contact-form {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,155,60,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ========== FOOTER ========== */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo .logo-icon { font-size: 1.3rem; color: var(--gold); }
.footer-logo .gold { color: var(--gold); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.footer-links ul li a { color: rgba(255,255,255,0.6); transition: var(--transition-fast); }
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact ul li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.6);
}
.footer-contact ul li i { color: var(--gold); margin-top: 4px; width: 16px; }
.footer-contact ul li a { color: rgba(255,255,255,0.6); }
.footer-contact ul li a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.float-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background: #25D366; }
.call-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.scroll-top-btn {
  background: var(--dark);
  font-size: 1rem;
  display: none;
}
.scroll-top-btn.visible { display: flex; }
.float-tooltip {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 12px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}
.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ========== AOS OVERRIDES ========== */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .advocates-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-line { display: none; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; }
  .hero-image-card { width: 260px; height: 320px; }
  .lady-justice-svg { width: 200px; height: 260px; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .badge-1 { top: 10px; right: -10px; }
  .badge-2 { bottom: 50px; left: -15px; }
  .badge-3 { bottom: -5px; right: -10px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-counters { grid-template-columns: repeat(2, 1fr); }
  .about-img-wrapper { width: 100%; max-width: 380px; height: 400px; }
  .about-exp-badge { position: relative; bottom: auto; right: auto; margin-top: 16px; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-buttons .btn { font-size: 0.85rem; padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav-links.open li a { padding: 12px 16px; font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .practice-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 12px; }
  .insights-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; text-align: center; padding: 24px; gap: 20px; }
  .founder-social { justify-content: center; }
  .advocates-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { padding: 16px; }
  .stat-num { font-size: 1.4rem; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; }
  .hero-image-card { width: 200px; height: 260px; }
  .lady-justice-svg { width: 160px; height: 210px; }
  .advocates-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
  .contact-form { padding: 24px; }
}
