/* ═══════════════════════════════════════════════════════════════════
   HNM Legal Services — Public Site CSS
   Brand: Navy #1A1A2E · Orange #FF4900 · Cream #F5F2EC · Georgia serif
   ═══════════════════════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1A1A2E;
  --navy-dark:  #0E0E1F;
  --navy-mid:   #252542;
  --orange:     #FF4900;
  --orange-dk:  #CC3A00;
  --orange-lt:  rgba(255,73,0,0.10);
  --cream:      #F5F2EC;
  --cream-dk:   #EDE9E0;
  --white:      #FFFFFF;
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-muted: #777777;
  --border:     #E0DBD4;
  --success:    #27ae60;
  --danger:     #e74c3c;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  'Open Sans', 'Segoe UI', Arial, sans-serif;

  --container:  1180px;
  --radius:     3px;
  --radius-md:  6px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --transition: 0.2s ease;

  --topbar-h:   38px;
  --navbar-h:   90px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dk); }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── CONTAINER ─────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Topbar removed — phone number shown in navbar CTA */

/* ── NAVBAR ─────────────────────────────────────────────────────────── */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--cream);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.site-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-brand img { height: 56px; width: auto; }
.brand-fallback {
  width: 46px; height: 46px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
}
.brand-text { border-left: 2px solid var(--border); padding-left: 12px; line-height: 1.2; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.brand-sub {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 13px;
  position: relative;
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 10px;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--orange-dk); color: #fff !important; }

/* Hamburger */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--navy);
  font-size: 22px;
}
.mobile-menu {
  display: none;
  background: #12121F;  /* fully opaque dark — no transparency */
  border-top: 3px solid var(--orange);
  width: 100%;
  position: fixed;      /* fixed so it sits above everything */
  top: var(--navbar-h);
  left: 0;
  right: 0;
  bottom: 0;            /* stretch to bottom of screen */
  z-index: 998;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu .container {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 24px;
}
.mobile-menu .nav-link {
  display: block;
  width: 100%;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}
.mobile-menu .nav-link:last-child { border-bottom: none; }
.mobile-menu .nav-link:hover  { color: var(--orange); padding-left: 6px; }
.mobile-menu .nav-link.active { color: var(--orange); font-weight: 700; }
.mobile-menu .nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
  padding: 13px 20px;
  justify-content: center;
  background: var(--orange);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  border-bottom: none !important;
  transition: background 0.15s;
}
.mobile-menu .nav-cta:hover { background: var(--orange-dk); padding-left: 0; }

/* ── SLIDER ─────────────────────────────────────────────────────────── */
.site-slider {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: var(--navy-dark);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-dark);
}
.slide-overlay {
  position: absolute; inset: 0;
}
.slide-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px; z-index: 2;
}
.slide-content {
  position: relative; z-index: 3;
  padding: 0 80px;
  max-width: 640px;
}
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,73,0,0.5);
  color: var(--orange);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 14px;
  font-family: var(--font-sans);
  margin-bottom: 16px;
  border-radius: var(--radius);
  background-color: #fff;
  font-weight: bold;
}
.slide-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
}
.slide-rule { width: 44px; height: 3px; background: var(--orange); margin-bottom: 16px; border-radius: 2px; }
.slide-content h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-content p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-family: var(--font-sans);
}
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-slide-primary {
  background: var(--orange); color: #fff;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  padding: 12px 26px; border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: var(--radius); text-decoration: none;
  display: inline-block; transition: background var(--transition);
}
.btn-slide-primary:hover { background: var(--orange-dk); color: #fff; }
.btn-slide-ghost {
  background: transparent; color: #fff;
  font-family: var(--font-sans); font-size: 12px;
  padding: 12px 26px; border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius); cursor: pointer; text-decoration: none;
  display: inline-block; transition: background var(--transition), border-color var(--transition);
}
.btn-slide-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.7); }

/* Slider controls */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; z-index: 10;
  transition: background var(--transition), border-color var(--transition);
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
  position: absolute; bottom: 22px; left: 80px;
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 30px; height: 3px;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: background var(--transition);
  border-radius: 2px;
}
.slider-dot.active { background: var(--orange); }
.slider-counter {
  position: absolute; bottom: 18px; right: 24px;
  color: rgba(255,255,255,0.4); font-size: 12px;
  font-family: var(--font-sans); z-index: 10;
  letter-spacing: 0.06em;
}
.slider-counter span { color: var(--orange); font-weight: 700; }

/* ── SECTIONS ───────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--navy); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-sans);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.light { color: var(--white); }
.section-rule {
  width: 48px; height: 3px;
  background: var(--orange);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-rule.left { margin-left: 0; }
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary   { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dk); color: #fff; }
.btn-navy      { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); color: #fff; }
.btn-outline   { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ── PRACTICE CARDS ─────────────────────────────────────────────────── */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: border-top-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  display: block;
}
.practice-card:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.practice-icon {
  width: 52px; height: 52px;
  background: var(--orange-lt);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 18px;
}
.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.practice-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.practice-card .card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
}
.practice-card:hover .card-link { gap: 9px; }

/* ── STATS BAR ───────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  border-top: 3px solid var(--orange);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  margin-top: 6px;
  display: block;
}

/* ── ABOUT SECTION ───────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge .num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  margin-top: 4px;
}
.about-content .section-title { text-align: left; }
.about-content .section-rule { margin-left: 0; }
.about-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-mid);
}
.about-feature i { color: var(--orange); margin-top: 2px; font-size: 14px; flex-shrink: 0; }

/* ── TEAM CARDS ──────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-photo {
  width: 100%;
  height: 320px;
  object-fit: contain;       /* show full photo — no cropping */
  object-position: center;
  background: var(--cream);  /* clean background behind photo */
  padding: 12px 12px 0;      /* small padding so photo doesn't touch edges */
}
.team-photo-placeholder {
  width: 100%; height: 320px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: rgba(255,255,255,0.2);
}
.team-info { padding: 22px 18px; }
.team-name {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.team-quals {
  font-size: 12px; color: var(--orange);
  font-family: var(--font-sans);
  margin-bottom: 8px; font-weight: 600;
}
.team-desig {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.5; font-family: var(--font-sans);
}
.team-divider { width: 36px; height: 2px; background: var(--orange); margin: 12px auto; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
  min-width: 100%;
  padding: 0 60px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  font-family: var(--font-serif);
  opacity: 0.4;
  margin-bottom: 8px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-stars { color: #f39c12; font-size: 16px; margin-bottom: 16px; }
.testimonial-author { font-size: 13px; font-family: var(--font-sans); }
.testimonial-author strong { color: var(--navy); font-size: 14px; display: block; margin-bottom: 2px; }
.testimonial-author span { color: var(--text-muted); }
.testi-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; margin-top: 28px;
}
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%; border: none;
  background: var(--border);
  cursor: pointer; transition: background var(--transition);
}
.testi-dot.active { background: var(--orange); }
.testi-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.testi-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ── NEWS GRID ───────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-thumb {
  width: 100%; height: 200px;
  object-fit: cover; background: var(--cream-dk);
}
.news-thumb-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.news-body { padding: 20px; }
.news-date {
  font-size: 11px; color: var(--orange);
  font-family: var(--font-sans); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.news-title {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
  line-height: 1.4;
}
.news-card:hover .news-title { color: var(--orange); }
.news-excerpt {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 14px;
}
.news-read-more {
  font-size: 11px; font-weight: 700;
  color: var(--orange); text-transform: uppercase;
  letter-spacing: 0.08em; font-family: var(--font-sans);
  display: flex; align-items: center; gap: 5px;
}
.news-card:hover .news-read-more { gap: 9px; }

/* ── CLIENTS LOGO WALL ───────────────────────────────────────────────── */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.client-logo {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.client-logo:hover { background: var(--cream); }
.client-logo img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter var(--transition), opacity var(--transition);
}
.client-logo:hover img { filter: none; opacity: 1; }
.client-logo-text {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted); text-align: center;
  font-family: var(--font-sans);
}

/* ── SUBSCRIBE STRIP ─────────────────────────────────────────────────── */
.subscribe-strip {
  background: var(--navy);
  padding: 50px 0;
  border-top: 3px solid var(--orange);
}
.subscribe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.subscribe-text h3 {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.subscribe-text p {
  font-size: 14px; color: rgba(255,255,255,0.55);
  font-family: var(--font-sans);
}
.subscribe-form {
  display: flex; gap: 0;
  flex-shrink: 0;
}
.subscribe-input {
  padding: 12px 18px;
  border: none;
  font-size: 13px;
  min-width: 280px;
  font-family: var(--font-sans);
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
}
.subscribe-input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-input:focus { background: rgba(255,255,255,0.15); }
.subscribe-btn {
  background: var(--orange); color: #fff;
  border: none; padding: 12px 22px;
  font-size: 12px; font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}
.subscribe-btn:hover { background: var(--orange-dk); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 44px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Column heading */
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Quick links — 2 column grid */
.footer-links-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.footer-links-2col a,
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  padding: 5px 0;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links-2col a i,
.footer-links a i {
  font-size: 9px;
  color: var(--orange);
  flex-shrink: 0;
}
.footer-links-2col a:hover,
.footer-links a:hover { color: var(--orange); }
.footer-links { display: flex; flex-direction: column; }
.footer-view-all {
  color: var(--orange) !important;
  font-weight: 600;
  margin-top: 4px;
}

/* Social icons */
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 12px;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--orange); color: #fff; }

/* Contact items */
.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,0.5);
  font-family: var(--font-sans); line-height: 1.5;
}
.footer-contact-item i {
  color: var(--orange); font-size: 13px;
  margin-top: 1px; flex-shrink: 0; width: 15px; text-align: center;
}
.footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-item a:hover { color: var(--orange); }

/* Disclaimer */
.footer-disclaimer {
  padding: 12px 0;
  text-align: center;
  font-size: 10.5px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-sans);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Bottom bar */
.footer-bottom { padding: 14px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-sans);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); text-decoration: none; font-size: 11px; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0 48px;
  border-bottom: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,73,0,0.05);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.page-hero p {
  font-size: 15px; color: rgba(255,255,255,0.6);
  font-family: var(--font-sans); max-width: 500px;
}
.breadcrumb-nav {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-family: var(--font-sans);
  margin-bottom: 12px;
}
.breadcrumb-nav a { color: var(--orange); }
.breadcrumb-nav span { color: rgba(255,255,255,0.2); }

/* ── FORMS ───────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; margin-bottom: 6px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--navy); font-family: var(--font-sans);
}
.form-label .req { color: var(--orange); margin-left: 2px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; color: var(--text-dark);
  background: var(--white); font-family: var(--font-sans);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,73,0,0.08);
}
.form-control.is-invalid { border-color: var(--danger); }
textarea.form-control { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* Captcha */
.captcha-box {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}
.captcha-question {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.1em;
  flex-shrink: 0;
}
.captcha-equals { font-size: 18px; color: var(--text-muted); flex-shrink: 0; }
.captcha-input {
  width: 80px; padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 18px; font-weight: 700;
  text-align: center; font-family: var(--font-sans);
  color: var(--navy);
}
.captcha-input:focus { outline: none; border-color: var(--orange); }
.captcha-hint { font-size: 12px; color: var(--text-muted); font-family: var(--font-sans); }

/* Alerts */
.alert {
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 13px; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 9px;
  border-left: 3px solid;
  font-family: var(--font-sans);
}
.alert-success { background: rgba(39,174,96,0.08); color: #1a5c34; border-color: var(--success); }
.alert-danger  { background: rgba(231,76,60,0.08);  color: #922b21; border-color: var(--danger); }
.alert-info    { background: rgba(26,26,46,0.06);   color: var(--navy); border-color: var(--navy); }

/* ── TAGS ────────────────────────────────────────────────────────────── */
.tag {
  display: inline-block; padding: 3px 10px;
  border-radius: var(--radius); font-size: 11px;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-family: var(--font-sans);
}
.tag-orange  { background: var(--orange-lt); color: var(--orange); }
.tag-navy    { background: rgba(26,26,46,0.08); color: var(--navy); }
.tag-success { background: rgba(39,174,96,0.1); color: #1a7a40; }

/* ── PAGINATION ──────────────────────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center;
  gap: 6px; margin-top: 40px;
}
.page-btn {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: var(--white);
  font-size: 13px; cursor: pointer;
  border-radius: var(--radius);
  color: var(--text-mid); font-family: var(--font-sans);
  text-decoration: none; transition: all var(--transition);
}
.page-btn:hover { border-color: var(--navy); color: var(--navy); }
.page-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); font-weight: 700; }

/* ── BAR COUNCIL NOTICE ──────────────────────────────────────────────── */
.bar-notice {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.bar-notice-box {
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--orange);
  max-width: 520px; width: 100%;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.bar-notice-box h3 {
  font-family: var(--font-serif);
  font-size: 20px; color: var(--navy);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.bar-notice-box p {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 10px;
  font-family: var(--font-sans);
}
.bar-notice-box .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 82px;
  right: 28px;
  z-index: 400;
  width: 50px;
  height: 50px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  color: #fff;
}
.wa-float i { line-height: 1; }
.wa-tooltip {
  position: absolute;
  right: 58px;
  background: var(--navy-dark);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-sans);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(6px);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--navy-dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0    rgba(37,211,102,0); }
}

/* ── BACK TO TOP ─────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 42px; height: 42px;
  background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius);
  display: none; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), transform var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--orange-dk); transform: translateY(-2px); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stat-item:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .news-grid   { grid-template-columns: repeat(2, 1fr); }
  .slide-content { padding: 0 60px; }
  .site-slider { height: 420px; }
  .slide-content h2 { font-size: 28px; }
  .subscribe-inner { flex-direction: column; text-align: center; }
  .subscribe-form { width: 100%; }
  .subscribe-input { flex: 1; min-width: 0; }
}
@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .navbar-nav { display: none; }
  .navbar-toggle { display: block; }
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; }
  .practices-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .news-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links-2col { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
  .footer-bottom-links { justify-content: center; }
  .site-slider { height: 360px; }
  .slide-content { padding: 0 24px; max-width: 100%; }
  .slide-content h2 { font-size: 24px; }
  .slide-content p { font-size: 13px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .slider-dots { left: 24px; }
  .testimonial-slide { padding: 0 16px; }
  .about-img-badge { bottom: 10px; right: 10px; }
  .page-hero h1 { font-size: 26px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .slide-btns { flex-direction: column; }
  .btn-slide-primary, .btn-slide-ghost { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
