/* ============================================================
   JALOUDI & ASSOCIATES — Global Stylesheet
   Primary: #0a192c | Accent: #fff | Light BG: #f5f5f3
   Font: Trajan Pro 3 Semibold (headings), Inter (body)
   "The Apple of Law" — Premium Edition
   ============================================================ */

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222; background: #fff; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
ul { list-style: none; }

/* Heading font — Trajan Pro 3 with safe fallbacks */
.heading-font {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-weight: 600;
}

/* ============================================================
   PAGE LOAD ANIMATION
   ============================================================ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0a192c;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader svg { height: 48px; width: auto; opacity: 0; animation: loaderFade 1s ease forwards; }
.page-loader svg path, .page-loader svg text, .page-loader svg tspan { fill: #fff; }
.loader-logo-img { height: 48px; width: auto; opacity: 0; animation: loaderFade 1s ease forwards; filter: brightness(0) invert(1); }
@keyframes loaderFade {
  0% { opacity: 0; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
/* Prevent horizontal-translate animations from causing overflow on mobile */
@media (max-width: 768px) {
  .reveal-left { transform: translateY(20px); }
  .reveal-left.revealed { transform: translateY(0); }
  .reveal-right { transform: translateY(20px); }
  .reveal-right.revealed { transform: translateY(0); }
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LAYOUT — wide container, minimal side padding
   ============================================================ */
.container { max-width: 1600px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 48px); }
.section { padding: 120px 0; }
.section-dark { background: #0a192c; color: #fff; }
.section-light { background: #f5f5f3; }
.section-white { background: #fff; }

/* Subtle section dividers */
.section + .section { position: relative; }

/* ============================================================
   TYPOGRAPHY — refined spacing
   ============================================================ */
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: #0a192c; margin-bottom: 18px;
  display: block; opacity: 0.35;
}
.section-label-light { color: #fff; opacity: 0.3; }
.section-title {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 2.7rem; font-weight: 600; line-height: 1.15; margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.section-title-light { color: #fff; }
.section-subtitle {
  font-size: 1.02rem; color: #888; max-width: 580px; line-height: 1.9;
}
.section-subtitle-light { color: rgba(255,255,255,0.45); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS — premium feel with refined transitions
   ============================================================ */
.btn {
  display: inline-block; padding: 16px 40px; border-radius: 5px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2.5px;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none; font-family: inherit; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.btn:hover::after { opacity: 1; }
.btn-primary { background: #fff; color: #0a3d72; }
.btn-primary:hover { background: #f0f0ee; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.btn-dark { background: #0a192c; color: #fff; }
.btn-dark:hover { background: #0e2238; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(10,25,44,0.3); }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: #0a192c; border: 1px solid rgba(10,25,44,0.2); }
.btn-outline-dark:hover { background: #0a192c; color: #fff; transform: translateY(-2px); }
/* Legacy */
.btn-gold { background: #fff; color: #0a3d72; }
.btn-gold:hover { background: #f0f0ee; }
.btn-outline-gold { background: transparent; color: #c9a96e; border: 1.5px solid #c9a96e; }
.btn-outline-gold:hover { background: #c9a96e; color: #0a192c; transform: translateY(-2px); }

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  background: #e8e8e6; display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 0.8rem; font-weight: 500; overflow: hidden; position: relative;
}
.img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,25,44,0.01) 0%, rgba(10,25,44,0.05) 100%);
}
.img-placeholder svg { opacity: 0.2; position: relative; z-index: 1; }

/* ============================================================
   NAVBAR — glassmorphism on scroll
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: top 0.3s ease;
  padding: 24px 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 16px 0;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo a { display: flex; align-items: center; }
.nav-logo svg { height: 36px; width: auto; transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.nav-logo svg path, .nav-logo svg text, .nav-logo svg tspan { fill: #fff; transition: fill 0.5s; }
.navbar.scrolled .nav-logo svg path,
.navbar.scrolled .nav-logo svg text,
.navbar.scrolled .nav-logo svg tspan { fill: #0a192c; }
.nav-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); transition: filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.navbar.scrolled .nav-logo-img { filter: brightness(0); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.68rem; font-weight: 500; color: rgba(255,255,255,0.65);
  transition: color 0.4s; text-transform: uppercase; letter-spacing: 2px;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1px; background: currentColor;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.nav-links a.nav-active { color: #fff; }
.nav-links a.nav-active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: #999; }
.navbar.scrolled .nav-links a:hover { color: #0a192c; }
.navbar.scrolled .nav-links a.nav-active { color: #0a192c; }
.navbar.scrolled .nav-links a.nav-active::after { width: 100%; background: #0a192c; }
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 10px 22px !important; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); color: #fff !important;
  border-radius: 50px; font-size: 0.82rem !important;
  letter-spacing: 0.5px !important; text-transform: none !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  white-space: nowrap;
}
.nav-cta::after { display: none; }
/* call.svg icon coloring — white on dark backgrounds */
.call-icon { filter: brightness(0) invert(1); display: inline-block; vertical-align: middle; }
.navbar.scrolled .nav-links .call-icon { filter: brightness(0) invert(1); }
/* call icon on white-background buttons → #0a3d72 */
.btn-primary .call-icon,
.btn-gold .call-icon,
.cta-banner .btn .call-icon,
.cta-banner .btn-dark .call-icon,
.cta-banner .btn-primary .call-icon { filter: brightness(0) invert(18%) sepia(87%) saturate(700%) hue-rotate(196deg) brightness(82%) contrast(93%); }
.nav-cta:hover { background: rgba(255,255,255,0.15) !important; border-color: rgba(255,255,255,0.4) !important; }
.navbar.scrolled .nav-cta {
  background: #0a192c; color: #fff !important; border-color: #0a192c; border-radius: 50px;
}
.navbar.scrolled .nav-cta:hover { background: #0e2238 !important; }
/* Desktop: show number, hide "Call" */
.nav-cta-call { display: none; }
.nav-cta-number { display: inline; }
/* Mobile-only call button (always visible next to hamburger) */
.nav-call-mobile {
  display: none;
}
@media (max-width: 768px) {
  .nav-call-mobile {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.08); color: #fff; text-decoration: none;
    padding: 10px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.2px;
    white-space: nowrap; transition: background 0.3s, border-color 0.3s, color 0.3s;
  }
  .navbar.scrolled .nav-call-mobile {
    background: #0a192c; border-color: #0a192c; color: #fff;
  }
}
.mobile-toggle {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 10;
}
.mobile-toggle span {
  width: 24px; height: 1.5px; background: #fff;
  border-radius: 2px; display: block;
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.28s ease,
              background 0.3s;
  transform-origin: center;
}
.navbar.scrolled .mobile-toggle span { background: #0a192c; }
/* Hamburger → X */
.mobile-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
/* Navbar becomes solid white when mobile menu is open */
.navbar.menu-open {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(10,25,44,0.08);
}
.navbar.menu-open .mobile-toggle span { background: #0a192c; }
.navbar.menu-open .nav-call-mobile {
  background: #0a192c !important; border-color: #0a192c !important; color: #fff !important;
}

/* ============================================================
   HERO — cinematic, immersive
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: #0a192c; overflow: hidden;
  padding-bottom: 0; flex-direction: column;
}
/* Desktop — row-like centering with absolute stats */
@media (min-width: 769px) {
  .hero { flex-direction: row; }
}
.hero-bg { position: absolute; inset: 0; z-index: 1; background: #0a192c; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .img-placeholder { width: 100%; height: 100%; background: #0a192c; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(10,25,44,0.6) 0%, rgba(10,25,44,0.85) 50%, rgba(10,25,44,0.97) 100%);
}
.hero .container { position: relative; z-index: 3; }
.hero-content { max-width: 860px; margin: 0 auto; text-align: center; }

/* Eyebrow */
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 36px;
}
.hero-eyebrow-text {
  font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 4px;
  text-transform: uppercase; font-weight: 500; white-space: nowrap;
}
.hero-eyebrow-line {
  display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.hero h1 {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 3.8rem; font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero h1 em {
  font-style: normal; display: block;
  font-size: 0.72em; color: rgba(255,255,255,0.55); margin-top: 4px;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.45); line-height: 1.9;
  margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto;
  letter-spacing: 0.01em;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Stats bar pinned to bottom of hero */
.hero-stats-bar {
  position: relative; width: 100%; z-index: 4;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 40px 0;
  margin-top: 0;
}
/* Desktop only — pin stats bar to absolute bottom of hero */
@media (min-width: 769px) {
  .hero-stats-bar {
    position: absolute; bottom: 0; left: 0; right: 0; margin-top: 0;
  }
}
.hero-stats {
  display: flex; justify-content: center; align-items: center; gap: 0;
}
.hero-stat {
  flex: 1; text-align: center; padding: 0 48px;
}
.hero-stat-divider {
  width: 1px; height: 48px; background: rgba(255,255,255,0.08); flex-shrink: 0;
}
.hero-stat h3 {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 2.2rem; font-weight: 600; color: #fff;
  letter-spacing: -0.01em; line-height: 1;
}
.hero-stat p {
  font-size: 0.62rem; color: rgba(255,255,255,0.3); letter-spacing: 3px;
  text-transform: uppercase; margin-top: 10px; line-height: 1.2; margin-bottom: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.04); padding: 32px 0; }
.trust-bar .container {
  display: flex; justify-content: center; align-items: center; gap: 64px; flex-wrap: wrap;
}
.trust-item {
  font-size: 0.65rem; font-weight: 500; color: #bbb;
  letter-spacing: 3px; text-transform: uppercase; display: flex;
  align-items: center; gap: 10px;
}
.trust-item svg { opacity: 0.2; }

/* ============================================================
   CATEGORY CARDS — 3-up on homepage
   ============================================================ */
.category-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px;
}
.category-card {
  position: relative; overflow: hidden; border-radius: 5px; cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover { transform: translateY(-4px); }
.category-card-img { position: absolute; inset: 0; z-index: 1; }
.category-card-img img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(10,25,44,0.92) 0%, rgba(10,25,44,0.45) 55%, rgba(10,25,44,0.15) 100%);
}
.category-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 28px 24px;
}
.category-card-body h3 {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-size: 1.1rem; color: #fff; margin-bottom: 6px; line-height: 1.3;
}
.category-card-body p {
  font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 14px;
}
.category-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.62rem; font-weight: 700; color: #c9a96e;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.category-card-link::after { content: '→'; transition: transform 0.3s; }
.category-card:hover .category-card-link::after { transform: translateX(4px); }
.category-card-overlay-link { position: absolute; inset: 0; z-index: 4; }
.category-view-all { text-align: center; margin-top: 40px; }
@media (max-width: 768px) {
  .category-grid { grid-template-columns: 1fr; gap: 12px; }
  .category-card { aspect-ratio: 16/9; }
}

/* ============================================================
   PRACTICE AREA CARDS — full-bleed image with overlay
   ============================================================ */
.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.practice-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4; border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.practice-card:hover { transform: translateY(-4px); }
.practice-card-img {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}
.practice-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.practice-card:hover .practice-card-img img { transform: scale(1.07); }
.practice-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(10,25,44,0.95) 0%,
    rgba(10,25,44,0.5) 45%,
    rgba(10,25,44,0.15) 100%);
  transition: background 0.4s;
}
.practice-card:hover .practice-card-overlay {
  background: linear-gradient(to top,
    rgba(10,25,44,0.98) 0%,
    rgba(10,25,44,0.7) 55%,
    rgba(10,25,44,0.25) 100%);
}
.practice-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 24px 20px;
}
.practice-card h3 {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 0.95rem; font-weight: 600; color: #fff;
  letter-spacing: 0.02em; margin-bottom: 0; line-height: 1.3;
}
.practice-card p {
  font-size: 0.78rem; color: rgba(255,255,255,0.7); line-height: 1.6;
  margin-top: 8px; margin-bottom: 0;
  max-height: 80px; overflow: hidden; opacity: 1;
}
.practice-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 12px; font-size: 0.62rem;
  font-weight: 600; color: rgba(255,255,255,0.85);
  letter-spacing: 2px; text-transform: uppercase;
  opacity: 1; transition: gap 0.3s;
}
.practice-card:hover .practice-card-link { opacity: 1; }
.practice-card-link::after { content: '\2192'; transition: transform 0.3s; }
.practice-card-link:hover::after { transform: translateX(4px); }
/* card-link-overlay for full card click */
.card-link-overlay { position: absolute; inset: 0; z-index: 4; }

/* Filter tabs */
.practice-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px; font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; cursor: pointer; border-radius: 5px;
  border: 1px solid rgba(10,25,44,0.18); background: transparent;
  color: rgba(10,25,44,0.5); border-radius: 1px;
  transition: all 0.25s; font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: #0a192c; color: #0a192c; }
.filter-btn.active { background: #0a192c; color: #fff; border-color: #0a192c; }
.practice-card.hidden { display: none; }

/* ============================================================
   ABOUT PREVIEW (homepage)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: 0; overflow: hidden; }
.about-image .img-placeholder { width: 100%; aspect-ratio: 4/5; }
.about-highlights { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.about-highlight {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.about-highlight:last-child { border-bottom: none; }
.about-highlight-icon {
  width: 48px; height: 48px; min-width: 48px; background: #f5f5f3;
  border-radius: 0; display: flex; align-items: center; justify-content: center;
}
.about-highlight h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: #0a192c; }
.about-highlight p { font-size: 0.88rem; color: #999; line-height: 1.7; }

/* ============================================================
   ATTORNEYS
   ============================================================ */
.attorneys-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.attorney-card {
  border-radius: 0; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: row; gap: 56px; align-items: flex-start;
}
.attorney-card:hover { transform: translateY(-6px); }
.attorney-photo {
  width: 320px; flex-shrink: 0; aspect-ratio: 3/4; overflow: hidden;
}
.attorney-photo .img-placeholder {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.attorney-card:hover .attorney-photo .img-placeholder { transform: scale(1.04); }
.attorney-info { padding: 8px 0 0; flex: 1; }
.attorney-info h3 {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; color: #0a192c;
}
.attorney-role {
  font-size: 0.65rem; color: #bbb; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.attorney-info p { font-size: 0.95rem; color: #555; line-height: 1.8; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* Google-style rating badge */
.testimonials-google-badge {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 56px; flex-wrap: wrap;
}
.tgb-platform { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; }
.tgb-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }
.tgb-rating { display: flex; align-items: center; gap: 10px; }
.tgb-score { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.tgb-stars { display: flex; gap: 3px; }
.tgb-stars svg { width: 18px; height: 18px; fill: #f5b942; }
.tgb-count { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
/* Cards */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testimonial-card {
  padding: 48px 40px; background: rgba(255,255,255,0.02);
  border: none; border-top: 2px solid rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #c9a96e, #e8c87a);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s ease;
}
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-6px); }
.testimonial-quote-icon {
  font-size: 4rem; line-height: 0.85; color: rgba(201,169,110,0.2);
  font-family: Georgia, 'Times New Roman', serif; margin-bottom: 18px; display: block; user-select: none;
}
.testimonial-card blockquote {
  font-size: 0.97rem; line-height: 1.88; color: rgba(255,255,255,0.82);
  margin-bottom: 32px; font-style: normal;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.25), rgba(201,169,110,0.06));
  border: 1px solid rgba(201,169,110,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #c9a96e; letter-spacing: 0.5px;
}
.testimonial-author-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.testimonial-author-detail { font-size: 0.62rem; color: rgba(255,255,255,0.28); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 20px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: #f5b942; }
.testimonial-verified {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
  font-size: 0.6rem; color: rgba(255,255,255,0.25); letter-spacing: 1.2px; text-transform: uppercase;
}
.testimonial-verified svg { width: 11px; height: 11px; stroke: rgba(255,255,255,0.28); fill: none; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  border-radius: 0; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-img {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
}
.blog-card-img .img-placeholder {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%; height: 100%;
}
.blog-card:hover .blog-card-img .img-placeholder { transform: scale(1.04); }
.blog-card-body { padding: 28px 0 0; }
.blog-meta {
  font-size: 0.65rem; color: #bbb; margin-bottom: 12px;
  letter-spacing: 2px; text-transform: uppercase;
}
.blog-card h3 {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 1rem; font-weight: 600; margin-bottom: 10px; line-height: 1.45; color: #0a192c;
}
.blog-card p { font-size: 0.88rem; color: #999; line-height: 1.7; }
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.68rem; font-weight: 600;
  color: #0a192c; text-transform: uppercase; letter-spacing: 1.5px;
  border: none; padding-bottom: 0;
}
.blog-link::after { content: '\2192'; transition: transform 0.3s; }
.blog-link:hover::after { transform: translateX(4px); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: #0a192c; padding: 100px 0; text-align: center; position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 2.16rem; font-weight: 600; color: #fff; margin-bottom: 20px; position: relative;
  letter-spacing: -0.01em;
}
.cta-banner p {
  font-size: 0.98rem; color: rgba(255,255,255,0.4); margin-bottom: 44px;
  max-width: 460px; margin-left: auto; margin-right: auto; position: relative;
  line-height: 1.9;
}
.cta-banner .btn { position: relative; }
.cta-banner .btn-primary { background: #fff; color: #0a3d72; }
.cta-banner .btn-primary:hover { background: #f0f0ee; }
.cta-banner .btn-dark { background: #fff; color: #0a3d72; }
.cta-banner .btn-dark:hover { background: #f0f0ee; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-detail { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px; min-width: 48px; background: #f5f5f3;
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.contact-detail:hover .contact-detail-icon { background: #0a192c; }
.contact-detail:hover .contact-detail-icon svg { color: #fff; stroke: #fff; }
.contact-detail h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; color: #0a192c; }
.contact-detail p { font-size: 0.88rem; color: #999; line-height: 1.6; }
.contact-form {
  background: #fff; padding: 48px; border-radius: 0;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}
.contact-form h3 {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; color: #0a192c;
}
.contact-form > p { font-size: 0.88rem; color: #999; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.65rem; font-weight: 600; margin-bottom: 8px;
  color: #555; text-transform: uppercase; letter-spacing: 1.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0; font-size: 0.9rem; font-family: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fafaf9;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #0a192c; background: #fff;
  box-shadow: 0 0 0 3px rgba(10,25,44,0.06);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  width: 100%; padding: 18px; background: #0a192c; color: #fff;
  border: none; border-radius: 0; font-size: 0.72rem; font-weight: 600;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: inherit; text-transform: uppercase; letter-spacing: 2.5px;
}
.form-submit:hover { background: #0e2238; box-shadow: 0 8px 30px rgba(10,25,44,0.2); }
.form-note { font-size: 0.72rem; color: #ccc; margin-top: 16px; text-align: center; }

/* ============================================================
   FOOTER — clean and minimal
   ============================================================ */
.footer { background: #0a192c; color: rgba(255,255,255,0.4); padding: 88px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.footer-logo { margin-bottom: 24px; }
.footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 320px; }
.footer-col h4 {
  color: rgba(255,255,255,0.6); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px;
}
.footer-col a {
  display: block; font-size: 0.88rem; padding: 6px 0;
  transition: color 0.3s, transform 0.3s;
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   PAGE HEADERS (inner pages)
   ============================================================ */
.page-header {
  background: #0a192c; padding: 180px 0 88px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.02) 0%, transparent 60%);
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,0.04);
}
.page-header h1 {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Trajan Pro', 'Times New Roman', serif;
  font-size: 2.7rem; font-weight: 600; color: #fff; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-header p { font-size: 1.02rem; color: rgba(255,255,255,0.35); max-width: 520px; line-height: 1.9; }
.page-header-subtitle { font-size: 1.02rem; color: rgba(255,255,255,0.35); max-width: 520px; line-height: 1.9; }
.breadcrumb { margin-bottom: 24px; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,0.25); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* ============================================================
   INLINE CALL CTA STRIP
   ============================================================ */
.inline-call-cta {
  background: #0a192c;
  padding: 52px 0;
}
.inline-call-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.inline-call-cta-text .s-label {
  font-size: 0.6rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: #c9a96e; margin-bottom: 10px; display: block;
}
.inline-call-cta-text h3 {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-size: 1.5rem; color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.inline-call-cta-text p {
  color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; max-width: 500px;
}
.inline-call-cta .btn-call {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: #fff; color: #0a3d72; text-decoration: none;
  padding: 18px 32px; border-radius: 4px;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.3px; white-space: nowrap;
  transition: background 0.3s, transform 0.3s;
}
.inline-call-cta .btn-call:hover { background: #f0f0f0; transform: translateY(-2px); }
.inline-call-cta .btn-call svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 768px) {
  .inline-call-cta-inner { flex-direction: column; text-align: center; gap: 28px; }
  .inline-call-cta-text p { max-width: 100%; }
  .inline-call-cta .btn-call { width: 100%; justify-content: center; }
  /* Thinner settlements bar on mobile */
  .settlements-label { font-size: 0.44rem; padding: 0 12px; letter-spacing: 1px; }
  .settlement-item { padding: 10px 18px; }
  .s-amount { font-size: 0.85rem; }
  .s-label { font-size: 0.44rem; margin-bottom: 1px; }
  .s-desc { font-size: 0.55rem; }
}

/* ============================================================
   SETTLEMENTS TICKER
   ============================================================ */
.settlements-ticker {
  background: #0a192c;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.settlements-label {
  flex-shrink: 0;
  background: #c9a96e;
  color: #0a192c;
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Times New Roman', serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}
.settlements-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.settlements-track-wrap::before,
.settlements-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 52px; z-index: 2; pointer-events: none;
}
.settlements-track-wrap::before { left: 0; background: linear-gradient(to right, #0a192c, transparent); }
.settlements-track-wrap::after  { right: 0; background: linear-gradient(to left,  #0a192c, transparent); }
.settlements-track {
  display: flex;
  width: max-content;
  animation: settlements-scroll 50s linear infinite;
}
.settlements-track:hover { animation-play-state: paused; }
@keyframes settlements-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.settlement-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 32px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.s-label {
  font-size: 0.52rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a96e !important;
  margin-bottom: 3px;
  font-weight: 600;
}
.s-amount {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff !important;
  white-space: nowrap;
  line-height: 1.2;
}
.s-desc {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.42) !important;
  white-space: nowrap;
  margin-top: 2px;
}

/* Results page ticker uses different class names */
.settlement-amount {
  font-family: 'TrajanPro3-Semibold', 'Trajan Pro 3', 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff !important;
  white-space: nowrap;
  display: block;
}
.settlement-desc {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.42) !important;
  white-space: nowrap;
  display: block;
  margin-top: 2px;
}

/* ============================================================
   FLOATING CTA (mobile)
   ============================================================ */
.floating-cta {
  display: none; position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 999; background: #0a192c; color: #fff;
  border: 1.5px solid rgba(201,169,110,0.4);
  padding: 11px 20px;
  border-radius: 30px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(10,25,44,0.45);
  display: none; align-items: center; gap: 8px;
  opacity: 0; transition: opacity 0.4s, transform 0.4s;
  transform: translateX(-50%) translateY(20px);
  white-space: nowrap;
}
.floating-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.floating-cta.visible {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ============================================================
   HORIZONTAL RULE / DECORATIVE
   ============================================================ */
.section-divider {
  width: 48px; height: 1px; background: #0a192c; opacity: 0.15; margin-bottom: 24px;
}
.section-divider-light { background: #fff; opacity: 0.15; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .practice-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2.16rem; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
  .attorney-card { gap: 36px; }
  .attorney-photo { width: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 60px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .mobile-toggle { display: flex; }
  /* Nav menu — hidden by default, animates open */
  .nav-links {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 20px 28px 28px;
    box-shadow: 0 28px 60px rgba(10,25,44,0.13);
    gap: 0;
    /* Closed state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scaleY(0.97);
    transform-origin: top center;
    transition: opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s linear 0.38s;
  }
  .nav-links.active {
    opacity: 1; visibility: visible; pointer-events: all;
    transform: translateY(0) scaleY(1);
    transition: opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0s linear 0s;
  }
  /* Links inside menu */
  .nav-links a {
    color: #1a1a2e; padding: 13px 0;
    border-bottom: 1px solid rgba(10,25,44,0.06);
    font-size: 0.95rem; letter-spacing: 0.3px;
    opacity: 0; transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s;
  }
  .nav-links.active a:nth-child(1) { opacity:1; transform:none; transition-delay:0.06s; }
  .nav-links.active a:nth-child(2) { opacity:1; transform:none; transition-delay:0.11s; }
  .nav-links.active a:nth-child(3) { opacity:1; transform:none; transition-delay:0.16s; }
  .nav-links.active a:nth-child(4) { opacity:1; transform:none; transition-delay:0.21s; }
  .nav-links.active a:nth-child(5) { opacity:1; transform:none; transition-delay:0.26s; }
  .nav-links.active a:nth-child(6) { opacity:1; transform:none; transition-delay:0.31s; }
  .nav-links a::after { display: none; }
  .nav-links a:last-child { border-bottom: none; }
  /* Active item highlight on mobile */
  .nav-links a.nav-active {
    color: #0a192c !important; font-weight: 700;
    padding-left: 14px; border-left: 3px solid #0a192c;
  }
  /* Hide desktop nav-cta on mobile — replaced by nav-call-mobile */
  .nav-cta { display: none !important; }
  /* Testimonials: horizontal carousel on mobile */
  .testimonials-grid {
    display: flex !important; flex-wrap: nowrap !important;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 16px;
    padding-bottom: 12px; grid-template-columns: unset !important;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 82vw; max-width: 82vw; scroll-snap-align: start;
  }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero h1 em { font-size: 0.78em; }
  .hero-eyebrow-line { width: 36px; }
  .hero-stats-bar { padding: 20px 0; margin-top: 48px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat h3 { font-size: 1.4rem; }
  .hero-stat-divider { height: 28px; }
  .section-title { font-size: 1.67rem; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .practice-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .practice-card { aspect-ratio: 4/5; }
  .practice-card p { display: none; }
  .practice-card h3 { font-size: 0.82rem; }
  .practice-card-body { padding: 16px 14px; }
  .practice-card-link { margin-top: 8px; font-size: 0.58rem; }
  .practice-filters { gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 0.6rem; }
  .attorneys-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .attorney-card { flex-direction: column; gap: 0; }
  .attorney-photo { width: 100%; }
  .attorney-info { padding: 24px 0 0; }
  .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .trust-bar .container { gap: 24px; }
  .page-header { padding: 140px 0 64px; }
  .page-header h1 { font-size: 1.98rem; }
  .cta-banner h2 { font-size: 1.67rem; }
  .floating-cta { display: block; }

  /* ── Hero eyebrow — prevent horizontal overflow ── */
  .hero-eyebrow { gap: 12px; flex-wrap: nowrap; overflow: hidden; width: 100%; }
  .hero-eyebrow-text { white-space: normal; letter-spacing: 1.5px; font-size: 0.6rem; text-align: center; line-height: 1.6; }
  .hero-eyebrow-line { width: 20px; flex-shrink: 0; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.93rem; padding: 0 4px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; text-align: center; justify-content: center; }

  /* ── Prevent any section from overflowing ── */
  section, .hero, .section, .page-header, .settlements-ticker,
  .inline-call-cta, .cta-banner, .trust-bar, .faq-section { overflow-x: hidden; }

  /* ── Practice area intro grid ── */
  .pa-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .pa-sidebar-cta { position: static; }
  .pa-quick-facts { grid-template-columns: repeat(3,1fr); gap: 10px; }

  /* ── Navbar: don't clip lang dropdown ── */
  .navbar .container { flex-wrap: wrap; overflow: visible; }
}

@media (max-width: 480px) {
  .practice-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  /* Hero: centered layout, stats sit inline below buttons */
  .hero { padding-top: 120px; padding-bottom: 56px; justify-content: center; min-height: 88svh; }
  /* Stats bar: transparent, flows inside the hero as part of the content */
  .hero-stats-bar {
    background: transparent !important;
    border-top: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    margin-top: 36px;
    padding: 0;
    width: 100%;
  }
  .hero-stats-bar .container { padding: 0 8px; }
  /* Single row — tight and clean */
  .hero-stats { flex-wrap: nowrap; gap: 0; overflow: hidden; }
  .hero-stat { padding: 0 4px; flex: 1; min-width: 0; text-align: center; }
  .hero-stat-divider { display: block; height: 16px; flex-shrink: 0; }
  .hero-stat h3 { font-size: 1rem; }
  .hero-stat p { font-size: 0.34rem; letter-spacing: 0; margin-top: 5px; white-space: nowrap; }
  .contact-form { padding: 28px 20px; }

  /* ── Extra-small screens ── */
  .hero-eyebrow-text { font-size: 0.56rem; letter-spacing: 1px; }
  .hero-eyebrow-line { display: none; }
  .hero h1 { font-size: 1.78rem; }
  .hero p { font-size: 0.88rem; }
  .pa-quick-facts { grid-template-columns: 1fr; gap: 8px; }
  .pa-process-steps { grid-template-columns: 1fr 1fr; }
  .pa-why-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.52rem; }
  .page-header h1 { font-size: 1.62rem; }
}

/* ============================================================
   URGENCY BANNER
   ============================================================ */
.urgency-bar { background: #0a192c; color: rgba(255,255,255,0.85); text-align: center; padding: 10px 52px; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; position: relative; z-index: 1002; border-bottom: 1px solid rgba(201,169,110,0.2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.urgency-bar strong { color: #c9a96e; }
.urgency-bar a { color: #c9a96e; font-weight: 600; text-decoration: none; margin-left: 10px; border-bottom: 1px solid rgba(201,169,110,0.5); padding-bottom: 1px; white-space: nowrap; }
.urgency-bar a:hover { border-bottom-color: #c9a96e; }
.urgency-bar-dismiss { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,0.3); font-size: 1rem; cursor: pointer; line-height: 1; padding: 4px 8px; transition: color 0.2s; }
.urgency-bar-dismiss:hover { color: rgba(255,255,255,0.7); }
.urgency-strip { background: linear-gradient(90deg,#b91c1c,#dc2626); color:#fff; padding:13px 0; text-align:center; }
.urgency-strip p { font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; margin:0; }
.urgency-strip a { color:#fff; font-weight:700; text-decoration:underline; margin-left:8px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: linear-gradient(160deg, #080f1c 0%, #0a192c 60%, #0c1e35 100%); padding: 100px 0; }
.how-it-works .section-label { color: rgba(255,255,255,0.35); }
.how-it-works .section-title { color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 64px; position: relative; }
/* Gradient connecting line */
.steps-grid::before { display: none; }
.step-card {
  text-align: center; position: relative; z-index: 1;
  padding: 36px 24px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s ease;
}
.step-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-6px);
}
/* Step number circle — white */
.step-number {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 0 rgba(255,255,255,0);
}
.step-card:hover .step-number {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 28px rgba(255,255,255,0.06);
}
/* Step icon */
.step-icon {
  width: 36px; height: 36px; margin: 0 auto 16px;
  opacity: 0.35; transition: opacity 0.35s ease;
}
.step-card:hover .step-icon { opacity: 0.7; }
.step-icon svg { width: 36px; height: 36px; stroke: #fff; fill: none; }
.step-card h3 { font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif; font-size: 0.88rem; font-weight: 600; color: #fff; margin-bottom: 14px; letter-spacing: 0.04em; }
.step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.9; }
@media(max-width:768px){ .steps-grid { grid-template-columns:1fr 1fr; gap:16px; } .steps-grid::before { display:none; } .step-card { padding: 28px 20px 24px; } }
@media(max-width:480px){ .steps-grid { grid-template-columns:1fr; gap:12px; } }

/* ============================================================
   TRUST BADGES (ENHANCED)
   ============================================================ */
.trust-badges-section { padding: 0; background: #fff; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.trust-badges-scroll-wrap { overflow: visible; }
.trust-badges-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap; padding: 0;
}
/* Desktop: show exactly 5 badges, no scrolling, no clones */
@media (min-width: 769px) {
  .trust-badges-scroll-wrap { overflow: hidden; }
  .trust-badges-row { justify-content: center; width: 100%; }
  /* Hide anything beyond the original 9 children (5 boxes + 4 dividers) = cloned copies */
  .trust-badges-row > *:nth-child(n+10) { display: none; }
}
.trust-badge-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 36px 52px; text-align: center; flex-shrink: 0;
  transition: opacity 0.3s;
}
/* Mobile: carousel mode */
@media (max-width: 768px) {
  .trust-badges-scroll-wrap {
    overflow-x: scroll; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    cursor: grab;
  }
  .trust-badges-scroll-wrap::-webkit-scrollbar { display: none; }
  .trust-badges-row { justify-content: flex-start; width: max-content; }
  .trust-badge-box { padding: 28px 36px; }
}
.trust-badge-divider { width: 1px; height: 44px; background: rgba(10,25,44,0.1); flex-shrink: 0; }
.trust-badge-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.trust-badge-org { font-size: 0.56rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(10,25,44,0.35); }
.trust-badge-name { font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif; font-size: 0.82rem; color: #0a192c; letter-spacing: 0.05em; }
.trust-badge-stars { color: #0a192c; font-size: 0.65rem; letter-spacing: 3px; opacity: 0.5; }
.trust-badge-score { font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif; font-size: 1.6rem; color: #0a192c; line-height: 1; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { background: #fff; }
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; cursor: pointer; font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif; font-size: 0.93rem; font-weight: 600; color: #0a192c; gap: 20px; user-select: none; transition: color 0.2s; }
.faq-question:hover { color: #c9a96e; }
.faq-icon { min-width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(10,25,44,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 300; color: #0a192c; transition: all 0.3s; line-height: 1; }
.faq-item.open .faq-icon { background: #0a192c; color: #fff; border-color: #0a192c; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 4px 22px; font-size: 0.91rem; color: #555; line-height: 1.9; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   WHAT TO DO STEPS
   ============================================================ */
/* ============================================================
   PRACTICE AREA DETAIL PAGES — GLOBAL OVERRIDES
   ============================================================ */

/* ── Overview two-column layout ── */
.pa-intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.pa-intro { max-width: 100%; }
.pa-intro > .section-label { display: block; margin-bottom: 10px; }
.pa-intro > h2 { margin-bottom: 20px; }
.pa-intro > p { font-size: 1rem; line-height: 1.95; color: #555; margin-bottom: 40px; }

/* Quick-fact cards under intro text */
.pa-quick-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.pa-quick-fact {
  background: #f7f8fa;
  border: 1px solid rgba(10,25,44,0.06);
  border-top: 2px solid #c9a96e;
  padding: 20px 20px 18px;
  border-radius: 3px;
}
.pa-quick-fact-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: #c9a96e; font-weight: 700; margin-bottom: 6px; }
.pa-quick-fact-value { font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif; font-size: 1rem; color: #0a192c; font-weight: 700; line-height: 1.3; }

/* ── Sticky sidebar CTA ── */
.pa-sidebar-cta {
  background: #0a192c;
  padding: 40px 36px;
  border-radius: 6px;
  border-top: 3px solid #c9a96e;
  position: sticky;
  top: 100px;
}
.pa-sidebar-cta h3 {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-size: 1.2rem; color: #fff; margin-bottom: 12px; line-height: 1.35;
}
.pa-sidebar-cta p { font-size: 0.86rem; color: rgba(255,255,255,0.45); margin-bottom: 24px; line-height: 1.8; }
.pa-sidebar-cta .btn { width: 100%; justify-content: center; text-align: center; display: flex; }
.pa-sidebar-trust { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.pa-sidebar-trust-item { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.pa-sidebar-trust-item span { font-size: 0.76rem; color: rgba(255,255,255,0.4); line-height: 1.4; }
.pa-sidebar-trust-item svg { flex-shrink: 0; }

/* ── Process / How It Works steps ── */
.pa-process-section { background: #060f1a; padding: 80px 0; }
.pa-process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.pa-process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5%); right: calc(12.5%);
  height: 1px; background: rgba(201,169,110,0.2); z-index: 0;
}
.pa-process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.pa-process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: #0a192c; border: 1.5px solid rgba(201,169,110,0.4);
  color: #c9a96e;
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s;
}
.pa-process-step:hover .pa-process-num { background: #c9a96e; color: #0a192c; border-color: #c9a96e; }
.pa-process-step h4, .pa-process-title {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-size: 0.92rem; color: #fff; margin-bottom: 10px; line-height: 1.4;
}
.pa-process-step p, .pa-process-desc { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.75; }

/* ── Detail cards ── */
.pa-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.pa-detail-item {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid #c9a96e;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
}
.pa-detail-item:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); transform: translateY(-3px); border-left-color: #0a192c; }
.pa-detail-item h3 {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-size: 0.95rem; font-weight: 600; color: #0a192c; margin-bottom: 10px;
}
.pa-detail-item p { font-size: 0.87rem; line-height: 1.85; color: #666; margin: 0; }

/* ── List sections ── */
.pa-list { columns: 2; column-gap: 48px; margin-top: 32px; list-style: none; padding: 0; }
.pa-list li {
  padding: 11px 0 11px 28px;
  font-size: 0.92rem; color: #444; line-height: 1.65;
  position: relative; break-inside: avoid;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pa-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7l3.5 3.5L12 3' stroke='%23c9a96e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

/* ── Why you need section ── */
.pa-why-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-top: 48px; }
.pa-why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  padding: 32px 28px; border-radius: 4px;
  transition: all 0.35s;
}
.pa-why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,169,110,0.3); }
.pa-why-card-icon { width: 44px; height: 44px; margin-bottom: 18px; }
.pa-why-card-icon svg { width: 44px; height: 44px; stroke: #c9a96e; fill: none; }
.pa-why-card h4 {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-size: 0.92rem; color: #fff; margin-bottom: 10px;
}
.pa-why-card p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin: 0; }
.pa-why-content { max-width: 860px; }
.pa-why-content p { font-size: 1rem; line-height: 2; color: rgba(255,255,255,0.6); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .pa-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .pa-sidebar-cta { position: static; }
  .pa-quick-facts { grid-template-columns: repeat(3,1fr); }
  .pa-process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pa-process-steps::before { display: none; }
  .pa-detail-grid { grid-template-columns: 1fr; gap: 16px; }
  .pa-list { columns: 1; }
  .pa-why-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .pa-quick-facts { grid-template-columns: 1fr; }
  .pa-process-steps { grid-template-columns: 1fr; }
}

.what-to-do { background: #f7f8fa; }
.action-steps { max-width: 760px; margin: 48px auto 0; }
.action-step { display: flex; gap: 24px; margin-bottom: 28px; align-items: flex-start; }
.action-step-num { min-width: 46px; height: 46px; border-radius: 50%; background: #0a192c; color: #fff; font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.action-step-body h4 { font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif; font-size: 0.9rem; color: #0a192c; margin-bottom: 6px; }
.action-step-body p { font-size: 0.87rem; color: #666; line-height: 1.85; margin: 0; }

@media(max-width:768px){
  /* Call button: bottom-left; Text button: bottom-right — no overlap */
  .floating-cta { display:flex; left: 16px; right: auto; opacity: 1 !important; transform: translateY(0) !important; }
  .sms-launcher { right: 16px; bottom: 20px; }
}

/* ============================================================
   SMS TEXT US BUTTON
   ============================================================ */
.sms-launcher {
  position: fixed; bottom: 20px; right: 20px; z-index: 1000;
  background: #0a192c; color: #fff;
  border: 1.5px solid rgba(201,169,110,0.4);
  border-radius: 30px;
  padding: 11px 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(10,25,44,0.32);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.sms-launcher:hover { background: #0e2238; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,25,44,0.4); color: #fff; }
.sms-launcher svg { width: 18px; height: 18px; flex-shrink: 0; }

@media(max-width:768px){
  .trust-badge-box { padding: 28px 36px; }
  .trust-badges-row { padding: 0 60px; }
}
@media(max-width:768px){
  .urgency-bar { white-space: normal; padding: 9px 40px 9px 16px; font-size: 0.68rem; letter-spacing: 0.06em; line-height: 1.5; }
  .urgency-bar .urgency-desktop-text { display: none; }
  .urgency-bar .urgency-mobile-text { display: inline; }
}
@media(min-width:769px){
  .urgency-bar .urgency-mobile-text { display: none; }
  .urgency-bar .urgency-desktop-text { display: inline; }
}
/* ============================================================
   HOMEPAGE CONSULTATION FORM
   ============================================================ */
.home-consult-section { background: #060f1a; padding: 80px 0; }
@media(max-width:768px) {
  .home-consult-section .container { padding: 0 12px; }
}
.home-consult-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 16px; overflow: hidden;
  background: #0a192c;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.home-consult-copy {
  padding: 72px 56px 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.home-consult-headline em {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Times New Roman',serif;
  font-style: italic; font-size: 1.3rem; color: rgba(255,255,255,0.45);
  display: block; margin-bottom: 10px; letter-spacing: 0.02em;
}
.home-consult-headline h2 {
  font-size: 2.5rem; color: #fff; font-weight: 800;
  line-height: 1.1; margin: 0 0 30px; letter-spacing: -0.02em;
}
.home-consult-copy > p {
  color: rgba(255,255,255,0.5); font-size: 1rem;
  line-height: 1.8; margin-bottom: 44px; max-width: 440px;
}
.home-consult-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.home-consult-benefit { display: flex; align-items: flex-start; gap: 16px; }
.home-consult-benefit-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.home-consult-benefit-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.55); fill: none; }
.home-consult-benefit span { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.65; padding-top: 11px; }

/* Form wrapper */
.home-consult-form-wrap {
  background: #0c1e33; padding: 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.hcf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hcf-group { margin-bottom: 16px; }
.hcf-group label {
  display: block; font-size: 0.77rem; font-weight: 600;
  color: rgba(255,255,255,0.65); margin-bottom: 7px; letter-spacing: 0.03em;
}
.hcf-hint { font-size: 0.74rem; color: rgba(255,255,255,0.3); margin: 0 0 8px; line-height: 1.5; }
.hcf-group input, .hcf-group textarea, .hcf-group select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 5px;
  padding: 13px 16px; color: #fff; font-size: 0.9rem;
  font-family: inherit; outline: none; box-sizing: border-box;
  transition: border-color 0.25s, background 0.25s;
}
.hcf-group input:focus, .hcf-group textarea:focus, .hcf-group select:focus {
  border-color: rgba(201,169,110,0.5); background: rgba(255,255,255,0.07);
}
.hcf-group input::placeholder, .hcf-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.hcf-group textarea { resize: vertical; min-height: 100px; }
.hcf-group select option { background: #0c1e33; color: #fff; }
.hcf-terms { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.hcf-terms input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; margin-top: 2px; accent-color: #c9a96e; cursor: pointer; }
.hcf-terms label { font-size: 0.7rem; color: rgba(255,255,255,0.3); line-height: 1.55; cursor: pointer; }
.hcf-terms label a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.hcf-submit {
  width: 100%; background: #c9a96e !important; color: #0a192c !important;
  font-size: 0.95rem !important; padding: 15px 24px !important;
  font-weight: 700 !important; letter-spacing: 0.04em; border: none;
  cursor: pointer; border-radius: 5px; transition: all 0.3s ease;
}
.hcf-submit:hover {
  background: #b8935a !important; transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,110,0.2);
}
@media(max-width:900px) {
  .home-consult-inner { grid-template-columns: 1fr; }
  .home-consult-copy { padding: 52px 36px 36px; }
  .home-consult-form-wrap { padding: 44px 36px; }
}
@media(max-width:480px) {
  .hcf-row { grid-template-columns: 1fr; gap: 0; }
  .home-consult-headline h2 { font-size: 1.85rem; }
  .home-consult-copy { padding: 40px 28px 28px; }
  .home-consult-form-wrap { padding: 32px 28px; }
  .home-consult-copy > p { max-width: none; }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
#google_translate_element { display: none !important; }
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate { display: none !important; }
.goog-te-gadget { display: none !important; }
body { top: 0 !important; }
/* Prevent Google's injected top bar from pushing layout */
.skiptranslate { display: none !important; }

/* ============================================================
   LANGUAGE DROPDOWN — premium flag + name picker
   ============================================================ */
.lang-dropdown { position: relative; }
.lang-dropdown-desktop { display: flex; margin-left: 10px; }
.lang-dropdown-mobile { display: none !important; }

.lang-dropdown-trigger {
  display: flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 6px 11px 6px 9px; border-radius: 7px;
  cursor: pointer; transition: all 0.22s; font-family: inherit;
  white-space: nowrap; line-height: 1;
}
.lang-dropdown-trigger:hover {
  border-color: rgba(255,255,255,0.5); color: #fff;
  background: rgba(255,255,255,0.06);
}
.lang-dd-flag { font-size: 1rem; line-height: 1; }
.lang-dd-label { font-size: 0.7rem; }
.lang-chevron {
  width: 10px; height: 6px; flex-shrink: 0; opacity: 0.55;
  transition: transform 0.22s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 152px;
  background: #0d1f35;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 4px 14px rgba(0,0,0,0.25);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px) scale(0.97);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.25,0.46,0.45,0.94), visibility 0s linear 0.2s;
  z-index: 9999; overflow: hidden; pointer-events: none;
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.25,0.46,0.45,0.94), visibility 0s linear 0s;
  pointer-events: all;
}

.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  background: transparent; border: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.76rem; font-weight: 500;
  cursor: pointer; font-family: inherit;
  transition: all 0.15s; text-align: left; white-space: nowrap;
}
.lang-option:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lang-option.lang-opt-active { color: #fff; background: rgba(255,255,255,0.06); }
.lang-option + .lang-option { border-top: 1px solid rgba(255,255,255,0.05); }

/* Scrolled white navbar */
.navbar.scrolled .lang-dropdown-trigger {
  border-color: rgba(10,25,44,0.2); color: rgba(10,25,44,0.65);
}
.navbar.scrolled .lang-dropdown-trigger:hover {
  border-color: #0a192c; color: #0a192c; background: rgba(10,25,44,0.05);
}
.navbar.scrolled .lang-dropdown-menu {
  background: #fff; border-color: rgba(10,25,44,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
}
.navbar.scrolled .lang-option { color: rgba(10,25,44,0.65); }
.navbar.scrolled .lang-option:hover { color: #0a192c; background: rgba(10,25,44,0.04); }
.navbar.scrolled .lang-option.lang-opt-active { color: #0a192c; background: rgba(10,25,44,0.04); }
.navbar.scrolled .lang-option + .lang-option { border-top-color: rgba(10,25,44,0.06); }

/* Mobile */
@media(max-width:768px) {
  .navbar .container { flex-wrap: nowrap; align-items: center; }
  .lang-dropdown-desktop { display: none !important; }
  /* Hide the old call button — replaced by language dropdown */
  .nav-call-mobile { display: none !important; }
  /* Language dropdown sits inline, pushed right, just before hamburger */
  .lang-dropdown-mobile {
    display: flex !important;
    margin-left: auto;
    order: 0;
    width: auto;
    padding: 0;
    margin-right: 10px;
  }
  .lang-dropdown-mobile .lang-dropdown-trigger { padding: 5px 9px 5px 8px; font-size: 0.65rem; }
  .lang-dropdown-mobile .lang-dd-flag { font-size: 0.85rem; }
  .lang-dropdown-mobile .lang-dd-label { font-size: 0.65rem; }
  .lang-dropdown-mobile .lang-dropdown-menu { right: 0; left: auto; }
}

/* ============================================================
   TRANSLATION LOADING OVERLAY
   ============================================================ */
.translate-loader {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 12, 22, 0.94);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 999999;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  pointer-events: none;
}
.translate-loader.tl-active {
  opacity: 1; visibility: visible;
  transition: opacity 0.2s ease;
  pointer-events: all;
}
.translate-loader-spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: #c9a96e;
  border-radius: 50%;
  animation: tl-spin 0.75s linear infinite;
  margin-bottom: 24px;
}
@keyframes tl-spin { to { transform: rotate(360deg); } }
.translate-loader-text {
  color: rgba(255,255,255,0.85); font-size: 1rem;
  font-family: inherit; letter-spacing: 0.04em; font-weight: 500;
}
.translate-loader-sub {
  color: rgba(255,255,255,0.3); font-size: 0.75rem;
  margin-top: 8px; letter-spacing: 0.06em;
}

/* ==========================================================
   DESKTOP LIVE CHAT WIDGET
   ========================================================== */

/* Hide SMS launcher on desktop — keep on mobile */
@media (min-width: 769px) {
  .sms-launcher { display: none !important; }
}

/* Hide chat launcher on mobile — keep SMS launcher instead */
@media (max-width: 768px) {
  .chat-launcher { display: none !important; }
  .chat-widget  { display: none !important; }
}

/* ---- Launcher Button ---- */
.chat-launcher {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 30px;
  background: #ffffff;
  color: #0a192c;
  font-family: inherit;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
}
.chat-launcher svg {
  width: 14px; height: 14px; flex-shrink: 0;
}

/* ---- Chat Panel ---- */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 9001;
  width: 340px;
  background: #0d1f35;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  pointer-events: none;
}
.chat-widget.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: all;
}

/* ---- Header ---- */
.chat-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, #0a1628 0%, #0d1f35 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.chat-widget-header-info {
  display: flex; align-items: center; gap: 12px;
}
.chat-widget-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5fa8, #0a3060);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-widget-name {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.chat-widget-status {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  margin-top: 2px;
}
.chat-online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
}
.chat-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  padding: 4px;
  display: flex; align-items: center;
  transition: color 0.15s;
  border-radius: 6px;
}
.chat-close-btn:hover { color: rgba(255,255,255,0.85); }
.chat-close-btn svg { width: 18px; height: 18px; }

/* ---- Body ---- */
.chat-widget-body {
  padding: 18px 18px 20px;
}
.chat-bubble-in {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.chat-bubble-in p {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* ---- Form ---- */
.chat-form {
  display: flex; flex-direction: column; gap: 10px;
}
.chat-form input,
.chat-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.88);
  font-family: inherit;
  font-size: 0.8rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.18s;
  resize: none;
}
.chat-form input::placeholder,
.chat-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.chat-form input:focus,
.chat-form textarea:focus {
  border-color: rgba(26,95,168,0.6);
}
.chat-submit-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg, #1a6eb5 0%, #0a3d72 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 11px 18px;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.15s;
  margin-top: 2px;
}
.chat-submit-btn:hover {
  opacity: 0.9; transform: translateY(-1px);
}

/* ---- Success ---- */
.chat-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 16px 0 4px;
  gap: 10px;
}
.chat-success p {
  color: rgba(255,255,255,0.75);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}

/* ---- Chat Launcher Ping Dot ---- */
.chat-ping-wrap {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.chat-ping-dot {
  width: 6px;
  height: 6px;
  background: #1a6eb5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.chat-ping-ring {
  border: 1.5px solid #1a6eb5;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  animation: chat-pulsate 2s ease-out infinite;
  opacity: 0;
}
@keyframes chat-pulsate {
  0%   { transform: translate(-50%, -50%) scale(0.2); opacity: 0; }
  40%  { opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* ---- Hero CTA Ping Dots ---- */
.hero-cta-ping {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px;
}
.hero-cta-ping .chat-ping-dot {
  background: #1a6eb5;
}
.hero-cta-ping .chat-ping-ring {
  border-color: #1a6eb5;
}

/* ==========================================================
   FREE CASE EVALUATION FUNNEL
   ========================================================== */
.home-eval-section {
  background: #f9f9f7;
  padding: 96px 0;
}
.home-eval-section .section-label { margin-bottom: 12px; }
.home-eval-section .section-title { margin-bottom: 12px; }
.home-eval-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.home-eval-intro p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.8;
  margin: 0;
}
.funnel-wrap {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.funnel-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  justify-content: center;
}
.funnel-progress-dot {
  width: 36px;
  height: 4px;
  background: rgba(10,25,44,0.1);
  border-radius: 2px;
  transition: background 0.3s;
}
.funnel-progress-dot.active { background: #0a192c; }
.funnel-progress-dot.done   { background: rgba(10,25,44,0.35); }
.funnel-card {
  background: #fff;
  padding: 44px 48px;
  border-radius: 4px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  display: none;
}
.funnel-card.active { display: block; }
.funnel-card h3 {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Trajan Pro','Times New Roman',serif;
  font-size: 1.2rem;
  color: #0a192c;
  margin-bottom: 6px;
  font-weight: 600;
}
.funnel-sub {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 28px;
}
.funnel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.funnel-option {
  border: 1.5px solid rgba(10,25,44,0.1);
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.18s;
  text-align: left;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
}
.funnel-option:hover { border-color: #0a192c; background: rgba(10,25,44,0.03); }
.funnel-option.selected { border-color: #0a192c; background: #0a192c; color: #fff; }
.funnel-option-icon { font-size: 1.3rem; flex-shrink: 0; }
.funnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.funnel-btn-next {
  background: #0a192c;
  color: #fff;
  border: none;
  padding: 13px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
  border-radius: 6px;
}
.funnel-btn-next:hover { background: #0e2238; }
.funnel-btn-next:disabled { background: rgba(10,25,44,0.18); cursor: not-allowed; }
.funnel-btn-back {
  background: transparent;
  border: none;
  font-size: 0.82rem;
  color: #aaa;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 0;
  transition: color 0.15s;
}
.funnel-btn-back:hover { color: #0a192c; }
.funnel-step-count { font-size: 0.7rem; color: #bbb; letter-spacing: 2px; text-transform: uppercase; }
.funnel-input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid rgba(10,25,44,0.12);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: #333;
  margin-bottom: 12px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.funnel-input:focus { outline: none; border-color: #0a192c; }
.funnel-input::placeholder { color: #bbb; }
.funnel-result { text-align: center; padding: 12px 0; }
.funnel-result-icon { font-size: 2.8rem; margin-bottom: 18px; }
.funnel-result h3 {
  font-family: 'TrajanPro3-Semibold','Trajan Pro 3','Trajan Pro','Times New Roman',serif;
  font-size: 1.4rem;
  color: #0a192c;
  margin-bottom: 14px;
}
.funnel-result p { font-size: 0.92rem; color: #666; line-height: 1.85; max-width: 480px; margin: 0 auto 24px; }
.funnel-result-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.funnel-trust {
  display: flex; gap: 28px; justify-content: center;
  margin-top: 32px; flex-wrap: wrap;
}
.funnel-trust-item {
  font-size: 0.66rem; color: #bbb;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
@media (max-width: 600px) {
  .funnel-card { padding: 28px 20px; }
  .funnel-options { grid-template-columns: 1fr; }
  .home-eval-section { padding: 64px 0; }
}

/* ==========================================================
   NAV ABOUT DROPDOWN
   ========================================================== */
.nav-item-drop {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-drop-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  cursor: default;
  padding-bottom: 16px;
  margin-bottom: -16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: inherit;
}
.navbar.scrolled .nav-drop-trigger { color: #999; }
.nav-chevron {
  opacity: 0.55;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-item-drop:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.97);
  min-width: 158px;
  background: #0d1f35;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 9999;
  pointer-events: none;
}
.nav-item-drop:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: all;
}
.nav-drop-menu a {
  display: block !important;
  padding: 11px 18px !important;
  color: rgba(255,255,255,0.62) !important;
  font-size: 0.76rem !important;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
}
.nav-drop-menu a:last-child { border-bottom: none; }
.nav-drop-menu a:hover { background: rgba(255,255,255,0.07) !important; color: #fff !important; }
.nav-drop-menu a::after { display: none !important; }

/* Scrolled navbar dropdown */
.navbar.scrolled .nav-drop-menu { background: #fff; border-color: rgba(10,25,44,0.1); }
.navbar.scrolled .nav-drop-menu a { color: rgba(10,25,44,0.65) !important; border-color: rgba(10,25,44,0.06); }
.navbar.scrolled .nav-drop-menu a:hover { background: rgba(10,25,44,0.04) !important; color: #0a192c !important; }

/* Mobile — show sub-items inline, indented */
@media (max-width: 768px) {
  .nav-item-drop { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-drop-trigger { width: 100%; }
  .nav-drop-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: all;
    min-width: unset;
    width: 100%;
    border-radius: 0;
    padding: 0;
  }
  .nav-drop-menu a {
    padding: 13px 24px 13px 40px !important;
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.45) !important;
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
  }
  .nav-drop-menu a:hover { color: #fff !important; background: transparent !important; }
}
