/* H. Gichuki & Company Advocates - Main Stylesheet */
/* Pure CSS - No Frameworks */

/* ================================
   CSS VARIABLES
   ================================ */
:root {
  --navy: #0B2545;
  --navy-mid: #13375B;
  --blue: #1A5FA8;
  --gold: #B8964A;
  --gold-light: #D4AE6A;
  --cream: #F8F5F0;
  --white: #ffffff;
  --gray-100: #F2EFE9;
  --gray-200: #E4E0D8;
  --gray-400: #9A9080;
  --gray-600: #5C574E;
  --text: #1C1916;
  --text-light: #5C574E;
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideR {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideL {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation classes */
[data-anim] {
  opacity: 0;
}

[data-anim="up"].in {
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-anim="left"].in {
  animation: slideR 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-anim="right"].in {
  animation: slideL 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-anim="fade"].in {
  animation: fadeIn 0.6s ease forwards;
}

/* Stagger delays */
[data-anim-delay="1"].in { animation-delay: 0.1s; }
[data-anim-delay="2"].in { animation-delay: 0.2s; }
[data-anim-delay="3"].in { animation-delay: 0.3s; }
[data-anim-delay="4"].in { animation-delay: 0.4s; }
[data-anim-delay="5"].in { animation-delay: 0.5s; }

/* ================================
   TOPBAR
   ================================ */
.topbar {
  background: linear-gradient(90deg, #081c35 0%, #0b2545 55%, #123760 100%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid rgba(184, 150, 74, 0.25);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s, opacity 0.2s;
}

.topbar a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.topbar-right {
  display: flex;
  gap: 16px;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 36px rgba(11, 37, 69, 0.12);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.brand-logo-text {
  display: block;
  line-height: 1.25;
  white-space: normal;
}

.nav-logo-img {
  height: 54px;
}

.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.footer-logo-img {
  height: 68px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 1100px) {
  .nav-brand-text {
    display: none;
  }
}

.brand-emblem {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 8px;
  flex-shrink: 0;
}

.brand-bars {
  display: flex;
  gap: 4px;
  width: 100%;
}

.brand-bars span {
  display: block;
  background: var(--gold);
  border-radius: 1.5px;
  flex: 1;
}

.brand-bars span:first-child {
  height: 12px;
}

.brand-bars span:last-child {
  height: 16px;
}

.brand-bottom {
  width: 100%;
  height: 3px;
  background: var(--gold-light);
  border-radius: 2px;
  margin-top: 1px;
}

.brand-name strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-name em {
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-top: 3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s;
}

.nav-links li:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 280px;
  box-shadow: 0 12px 40px rgba(11, 37, 69, 0.15);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 12px 0;
  z-index: 1000;
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--text);
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.dropdown a:hover {
  background: var(--cream);
  border-left-color: var(--gold);
  padding-left: 28px;
  color: var(--navy);
}

.dropdown a::after {
  display: none;
}

/* CTA Button */
.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 11px 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mob-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mob-nav.open {
  max-height: 600px;
}

.mob-nav a {
  padding: 14px 40px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, padding-left 0.2s;
}

.mob-nav a:hover {
  color: var(--gold-light);
  padding-left: 50px;
}

.mob-dropdown {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
}

.mob-dropdown a {
  padding-left: 60px;
  font-size: 0.68rem;
}

.mob-dropdown.open {
  display: flex;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.011) 40px, rgba(255, 255, 255, 0.011) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.011) 40px, rgba(255, 255, 255, 0.011) 41px);
  z-index: 1;
  pointer-events: none;
}

.hero-gold-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold-light) 70%, transparent);
  z-index: 4;
}

.hero-img-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) saturate(1.1);
}

.hero-img-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(11, 37, 69, 0.6) 25%, rgba(11, 37, 69, 0.12) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-img-panel::after {
  content: '';
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold-light), transparent);
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 40px 80px;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.eyebrow-dash {
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-title strong {
  display: block;
  font-weight: 900;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.68);
  max-width: 510px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 34px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 150, 74, 0.3);
}

.btn-border {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 32px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-border:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-rule {
  width: 52px;
  height: 1px;
  background: rgba(184, 150, 74, 0.45);
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-n sup {
  font-size: 1.1rem;
  color: var(--gold-light);
}

.hero-stat-l {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
}

.hero-panel-card {
  position: absolute;
  bottom: 52px;
  right: 48px;
  z-index: 6;
  background: rgba(11, 37, 69, 0.84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 150, 74, 0.28);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  min-width: 240px;
}

.panel-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 13px;
}

.panel-card-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.panel-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
}

.panel-card-list li::before {
  content: '';
  width: 14px;
  min-width: 14px;
  height: 1px;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.2s infinite;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(184, 150, 74, 0.55), transparent);
}

/* ================================
   STATS BAR
   ================================ */
.stats-bar {
  background: var(--navy-mid);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-cell {
  padding: 44px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}

.stat-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.7s ease;
}

.stat-cell.in::before {
  height: 100%;
}

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-n span {
  font-size: 1.4rem;
  color: var(--gold-light);
}

.stat-l {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ================================
   SECTIONS COMMON
   ================================ */
.section {
  padding: 104px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-txt {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
}

.sec-title em {
  font-style: italic;
}

.sec-title strong {
  font-weight: 700;
}

.gold-bar {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 26px;
  transform-origin: left;
}

.gold-bar.in {
  animation: lineGrow 0.7s ease 0.25s both;
}

.sec-body {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 540px;
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.about-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  z-index: 3;
}

.badge-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.badge-l {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 5px;
  line-height: 1.5;
}

.about-content {
  padding-right: 16px;
}

.vals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  margin-top: 32px;
}

.val-item {
  background: var(--white);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.val-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s;
}

.val-item:hover {
  background: var(--cream);
}

.val-item:hover::before {
  width: 100%;
}

.val-item h4 {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

.val-item p {
  font-size: 0.81rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================
   PRACTICE SECTION
   ================================ */
.practice-section {
  background: var(--white);
}

.practice-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 56px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.p-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  cursor: pointer;
}

.p-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.p-card:hover {
  background: var(--cream);
}

.p-card:hover::before {
  transform: scaleX(1);
}

.p-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(11, 37, 69, 0.18);
  line-height: 1;
  margin-bottom: 18px;
  user-select: none;
  transition: color 0.35s;
}

.p-card:hover .p-num {
  color: var(--gold-light);
}

.p-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--navy);
  transition: color 0.3s;
}

.p-card:hover .p-icon {
  color: var(--gold);
}

.p-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.p-card p {
  font-size: 0.83rem;
  line-height: 1.85;
  color: var(--text-light);
  font-weight: 300;
}

.p-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.2s, color 0.2s;
}

.p-link::after {
  content: '\2192';
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.p-card:hover .p-link {
  color: var(--gold);
  gap: 12px;
}

.p-card:hover .p-link::after {
  transform: translateX(3px);
}

/* ================================
   QUALITY SECTION
   ================================ */
.quality-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.quality-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: center;
}

.quality-content .sec-title {
  color: var(--navy);
}

.quality-content .eyebrow-txt {
  color: var(--gold);
}

.quality-content .eyebrow-line {
  background: var(--gold);
}

.quality-content .sec-body {
  color: var(--text-light);
}

.q-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.q-feat {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: padding-left 0.25s;
}

.q-feat:hover {
  padding-left: 7px;
}

.q-feat-icon {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid rgba(184, 150, 74, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.q-feat:hover .q-feat-icon {
  background: var(--cream);
}

.q-feat-icon svg {
  width: 17px;
  height: 17px;
  color: var(--navy);
}

.q-feat-body h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 5px;
}

.q-feat-body p {
  font-size: 0.81rem;
  color: var(--text-light);
  line-height: 1.7;
}

.quality-visual {
  position: relative;
}

.quality-img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.quality-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.quality-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 150, 74, 0.18);
  pointer-events: none;
}

.indem-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--gold);
  color: var(--navy);
  padding: 22px 26px;
  z-index: 2;
}

.indem-amt {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.indem-desc {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.72;
}

/* ================================
   TEAM SECTION
   ================================ */
.team-section {
  background: var(--cream);
}

.team-hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.team-hdr .sec-eyebrow {
  justify-content: center;
}

.team-hdr .gold-bar {
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11, 37, 69, 0.12);
}

.team-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 28px 24px;
  text-align: center;
}

.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-info p {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 36px;
  height: 36px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.team-social a:hover {
  background: var(--navy);
}

.team-social svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
  transition: color 0.3s;
}

.team-social a:hover svg {
  color: var(--gold);
}

/* ================================
   CLIENTS SECTION
   ================================ */
.clients-section {
  background: var(--white);
}

.clients-hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.clients-hdr .sec-eyebrow {
  justify-content: center;
}

.clients-hdr .gold-bar {
  margin-left: auto;
  margin-right: auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.client-logo {
  background: var(--white);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: background 0.3s;
}

.client-logo:hover {
  background: var(--cream);
}

.client-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.client-logo:hover span {
  opacity: 1;
}

/* ================================
   CSR SECTION
   ================================ */
.csr-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.csr-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(11, 37, 69, 0.02) 40px, rgba(11, 37, 69, 0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(11, 37, 69, 0.02) 40px, rgba(11, 37, 69, 0.02) 41px);
  pointer-events: none;
}

.csr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.csr-content .sec-title {
  color: var(--navy);
}

.csr-content .eyebrow-txt {
  color: var(--gold);
}

.csr-content .eyebrow-line {
  background: var(--gold);
}

.csr-content .sec-body {
  color: var(--text-light);
}

.csr-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.csr-stat {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.csr-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.csr-stat-l {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Make CSR impact section match the light section style used across the site */
.csr-impact-section {
  background: var(--cream) !important;
}

.csr-impact-pattern {
  display: none !important;
}

.csr-impact-header .eyebrow-line {
  background: var(--gold) !important;
}

.csr-impact-header .eyebrow-txt {
  color: var(--gold) !important;
}

.csr-impact-header .sec-title {
  color: var(--navy) !important;
}

.csr-impact-header .sec-title em {
  color: var(--gold) !important;
}

.csr-impact-card {
  background: var(--white) !important;
  border: 1px solid var(--gray-200) !important;
}

.csr-impact-card h3 {
  color: var(--navy) !important;
}

.csr-impact-card p {
  color: var(--text-light) !important;
}

.csr-impact-metrics > div > div:first-child {
  color: var(--gold) !important;
}

.csr-impact-metrics > div > div:last-child {
  color: var(--text-light) !important;
}

.csr-visual {
  position: relative;
}

.csr-img {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.csr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-body h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-body p,
.contact-body a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-body a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.footer-brand .brand-emblem {
  background: var(--white);
}

.footer-brand .brand-bars span {
  background: var(--navy);
}

.footer-brand .brand-bottom {
  background: var(--navy);
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 26px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.social-link:hover svg {
  color: var(--navy);
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 60px;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ================================
   PAGE HEADER
   ================================ */
.page-header {
  position: relative;
  background: var(--navy);
  padding: 140px 0 90px;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.011) 40px, rgba(255, 255, 255, 0.011) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.011) 40px, rgba(255, 255, 255, 0.011) 41px);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 95, 168, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.header-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.header-eyebrow span {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.page-title em {
  font-style: italic;
  color: var(--gold-light);
}

.page-title strong {
  font-weight: 700;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.breadcrumbs span {
  color: var(--gold-light);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.011) 40px, rgba(255, 255, 255, 0.011) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.011) 40px, rgba(255, 255, 255, 0.011) 41px);
  pointer-events: none;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-text {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 38px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 150, 74, 0.3);
}

/* ================================
   PRACTICE AREAS PAGE
   ================================ */
.practice-detail-section {
  background: var(--white);
}

.practice-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.practice-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 20px;
}

.practice-content h3:first-child {
  margin-top: 0;
}

.practice-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

.practice-content ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.practice-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.practice-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--cream);
  padding: 32px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 10px 14px;
  background: var(--white);
  transition: all 0.3s;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background: var(--navy);
  color: var(--white);
}

.sidebar-links a.active::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ================================
   TEAM PAGE
   ================================ */
.team-detail-section {
  background: var(--white);
}

.team-lead-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.team-lead-img {
  position: relative;
}

.team-lead-img img {
  width: 100%;
  height: auto;
}

.team-lead-img::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.team-lead-img::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.team-lead-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.team-lead-info .role {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.team-lead-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.team-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.credential-item h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.credential-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ================================
   CLIENTS PAGE
   ================================ */
.clients-detail-section {
  background: var(--white);
}

.client-category {
  margin-bottom: 60px;
}

.client-category h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.client-item {
  padding: 20px 24px;
  background: var(--white);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.client-item:hover {
  background: var(--white);
  box-shadow: 0 10px 24px rgba(11, 37, 69, 0.08);
  transform: translateY(-2px);
}

.client-item img {
  width: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.client-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 69, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-item::after {
  content: attr(data-name);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.client-item:hover::before {
  opacity: 1;
}

.client-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.client-item:hover img {
  transform: scale(1.03);
  filter: blur(0.3px);
}

/* ================================
   CSR PAGE
   ================================ */
.csr-detail-section {
  background: var(--white);
}

.csr-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.csr-focus-card {
  background: var(--cream);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.35s;
}

.csr-focus-card:hover {
  background: var(--navy);
  transform: translateY(-8px);
}

.csr-focus-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.csr-focus-card:hover .csr-focus-icon {
  background: var(--gold);
}

.csr-focus-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.csr-focus-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.csr-focus-card:hover h3 {
  color: var(--white);
}

.csr-focus-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

.csr-focus-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================
   LEGAL FEES PAGE
   ================================ */
.fees-section {
  background: var(--white);
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.fee-card {
  background: var(--cream);
  padding: 40px;
  transition: all 0.35s;
}

.fee-card:hover {
  background: var(--navy);
}

.fee-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.fee-card:hover h3 {
  color: var(--gold-light);
}

.fee-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.fee-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================
   INSIGHTS PAGE
   ================================ */
.insights-section {
  background: var(--white);
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  background: var(--cream);
}

.featured-img {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.article-meta span {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 12px;
  color: var(--gold);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.35s;
}

.article-card:hover {
  box-shadow: 0 15px 40px rgba(11, 37, 69, 0.1);
  transform: translateY(-5px);
}

.article-img {
  height: 200px;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .article-img img {
  transform: scale(1.05);
}

.article-body {
  padding: 28px;
}

.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================
   CAREERS PAGE
   ================================ */
.careers-intro-section {
  background: var(--cream);
}

.careers-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.careers-visual {
  position: relative;
}

.careers-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.careers-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.careers-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.careers-quote {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--navy);
  color: var(--white);
  padding: 28px 32px;
  z-index: 3;
  max-width: 320px;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.quote-author {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.programs-section {
  background: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.program-card:hover {
  box-shadow: 0 20px 50px rgba(11, 37, 69, 0.1);
  border-color: transparent;
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.program-card:hover .program-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.program-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
  transition: color 0.3s;
}

.program-card:hover .program-icon svg {
  color: var(--gold);
}

.program-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.program-card p {
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

.program-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.program-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.program-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.application-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.application-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 95, 168, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.application-section .sec-title {
  color: var(--white);
}

.application-section .eyebrow-txt {
  color: var(--gold-light);
}

.application-section .eyebrow-line {
  background: var(--gold-light);
}

.application-section .sec-body {
  color: rgba(255, 255, 255, 0.6);
}

.application-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.application-info {
  padding-right: 20px;
}

.application-benefits {
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: rgba(184, 150, 74, 0.1);
  border: 1px solid rgba(184, 150, 74, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.benefit-body h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.benefit-body p {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.53);
  line-height: 1.7;
}

.application-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
}

.application-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.application-form .form-group {
  margin-bottom: 24px;
}

.application-form .form-group label {
  color: rgba(255, 255, 255, 0.7);
}

.application-form .form-group input,
.application-form .form-group select,
.application-form .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.application-form .form-group input:focus,
.application-form .form-group select:focus,
.application-form .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(184, 150, 74, 0.18);
}

.application-form .form-group input::placeholder,
.application-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.application-form .form-group select option {
  background: var(--navy);
  color: var(--white);
}

.application-form .form-group select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
    linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
}

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.file-upload:hover .file-upload-label {
  border-color: var(--gold);
  color: var(--gold-light);
}

.file-upload-label svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.values-section {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.35s;
}

.value-card:hover {
  box-shadow: 0 15px 40px rgba(11, 37, 69, 0.08);
  border-color: transparent;
  transform: translateY(-5px);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.value-card:hover .value-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
  transition: color 0.3s;
}

.value-card:hover .value-icon svg {
  color: var(--gold);
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-detail-section {
  background: var(--cream);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.35s;
}

.contact-card:hover {
  box-shadow: 0 15px 40px rgba(11, 37, 69, 0.08);
  border-color: transparent;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-card-header .contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.contact-card:hover .contact-card-header .contact-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.contact-card-header .contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
  transition: color 0.3s;
}

.contact-card:hover .contact-card-header .contact-icon svg {
  color: var(--gold);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-card a {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--gold);
}

.map-section {
  padding: 0;
  background: var(--white);
}

.map-container {
  width: 100%;
  height: 450px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 24px 28px;
  box-shadow: 0 10px 40px rgba(11, 37, 69, 0.15);
  max-width: 300px;
  z-index: 10;
}

.map-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.map-overlay p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: var(--text-light);
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}

.directions-link:hover {
  color: var(--gold);
}

.directions-link svg {
  width: 16px;
  height: 16px;
}

.hours-section {
  background: var(--white);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hours-content {
  padding-right: 20px;
}

.hours-list {
  margin-top: 32px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}

.hours-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.hours-day {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hours-time {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  background: var(--cream);
}

.hours-note svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.hours-note p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-light);
}

.hours-visual {
  position: relative;
}

.hours-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.hours-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hours-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.hours-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

/* ================================
   QUALITY ASSURANCE PAGE
   ================================ */
.quality-detail-section {
  background: var(--white);
}

.quality-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.quality-feature-card {
  background: var(--cream);
  padding: 40px;
  transition: all 0.35s;
}

.quality-feature-card:hover {
  background: var(--navy);
}

.quality-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.quality-feature-card:hover .quality-feature-icon {
  background: var(--gold);
}

.quality-feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
}

.quality-feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.quality-feature-card:hover h3 {
  color: var(--white);
}

.quality-feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.quality-feature-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================
   RESPONSIVE STYLES
   ================================ */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mob-nav {
    display: flex;
  }
  
  .hero-img-panel {
    display: none;
  }
  
  .hero-inner {
    padding: 80px 30px 60px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
  }

  .stat-cell {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-cell:nth-child(2n) {
    border-right: none;
  }
  
  .about-grid,
  .quality-grid,
  .csr-grid,
  .contact-grid,
  .practice-hdr,
  .practice-detail-grid,
  .team-lead-grid,
  .careers-intro-grid,
  .application-grid,
  .contact-detail-grid,
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .practice-grid,
  .team-grid,
  .clients-grid,
  .programs-grid,
  .values-grid,
  .articles-grid,
  .csr-focus-grid,
  .fees-grid,
  .quality-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .client-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-article {
    grid-template-columns: 1fr;
  }
  
  .featured-img {
    min-height: 250px;
  }
  
  .about-badge,
  .careers-quote {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    margin-top: 20px;
  }
  
  .indem-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .hero-panel-card {
    display: none;
  }

  .about-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .about-core-values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .qa-memberships-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .csr-impact-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 768px) {
  .topbar-right {
    display: none;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .nav-wrap {
    padding: 0 20px;
    height: 70px;
  }
  
  .hero-inner {
    padding: 65px 20px 50px;
  }
  
  .stats-inner {
    grid-template-columns: 1fr;
  }
  
  .stat-cell {
    padding: 30px 24px;
    border-right: none;
    text-align: center;
  }

  .stat-cell:last-child {
    border-bottom: none;
  }

  .stat-n {
    font-size: 2.2rem;
  }

  .about-mission-card {
    padding: 32px 24px !important;
  }

  .about-mission-card h3 {
    font-size: 1.5rem !important;
    line-height: 1.35;
  }

  .about-core-values-header {
    margin: 0 auto 36px !important;
  }

  .about-core-values-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .about-core-value-card {
    padding: 30px 22px !important;
  }

  .about-core-value-icon {
    margin-bottom: 18px !important;
  }

  .qa-memberships-header {
    margin: 0 auto 36px !important;
  }

  .qa-memberships-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .qa-membership-card {
    padding: 30px 20px !important;
  }

  .csr-impact-header {
    margin: 0 auto 36px !important;
  }

  .csr-impact-card {
    padding: 28px 22px !important;
  }

  .csr-impact-card h3 {
    font-size: 1.2rem !important;
  }

  .csr-impact-metrics {
    gap: 16px !important;
    flex-wrap: wrap;
  }

  .csr-impact-metrics > div {
    min-width: 120px;
  }
  
  .vals-grid,
  .practice-grid,
  .team-grid,
  .clients-grid,
  .programs-grid,
  .values-grid,
  .articles-grid,
  .csr-focus-grid,
  .fees-grid,
  .quality-features-grid,
  .client-list {
    grid-template-columns: 1fr;
  }
  
  .csr-stats {
    grid-template-columns: 1fr;
  }
  
  .team-credentials {
    grid-template-columns: 1fr;
  }
  
  .application-form .form-row,
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .map-overlay {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
    margin: 20px;
  }
  
  .featured-content {
    padding: 30px;
  }
  
  .application-form {
    padding: 30px;
  }
  
  .about-img,
  .quality-img,
  .csr-img,
  .careers-img,
  .hours-img {
    height: 300px;
  }
  
  .header-inner,
  .cta-inner {
    padding: 0 20px;
  }
  
  .page-header {
    padding: 100px 0 60px;
  }
  
  .cta-section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 24px;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .btn-gold,
  .btn-border {
    width: 100%;
    justify-content: center;
  }

  .stat-n {
    font-size: 2rem;
  }

  .stat-n span {
    font-size: 1.1rem;
  }

  .csr-impact-metrics {
    flex-direction: column;
    gap: 12px !important;
  }
}

/* ================================
   GLOBAL INDEX HEADER NAV STYLING
   ================================ */
.navbar {
  box-shadow: 0 10px 30px rgba(11,37,69,0.08), 0 1px 0 rgba(11,37,69,0.06) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(250,252,255,0.97) 100%) !important;
  border-bottom: 1px solid rgba(11,37,69,0.08) !important;
}

.nav-wrap {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr auto !important;
  align-items: center !important;
  gap: 0 !important;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
}

.nav-links-left {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
  padding-right: 20px;
}

.nav-links-right {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding-left: 20px;
}

.nav-links-left > li > a,
.nav-links-right > li > a {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  color: var(--navy) !important;
  padding: 7px 13px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(11,37,69,0.12) !important;
  box-shadow: 0 4px 10px rgba(11,37,69,0.10), 0 1px 2px rgba(11,37,69,0.06), inset 0 1px 0 rgba(255,255,255,1) !important;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease !important;
  white-space: nowrap;
}

.nav-links-left > li > a::after,
.nav-links-right > li > a::after {
  display: none !important;
}

.nav-links-left > li > a:hover,
.nav-links-right > li > a:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
  box-shadow: 0 8px 20px rgba(184,150,74,0.30), 0 2px 6px rgba(184,150,74,0.18), inset 0 1px 0 rgba(255,255,255,0.24) !important;
  transform: translateY(-3px) !important;
}

.nav-brand-center {
  justify-content: center !important;
  flex-shrink: 0;
  padding: 0 6px;
}

.nav-cta-rounded {
  position: static !important;
  transform: none !important;
  border-radius: 999px !important;
  padding: 9px 20px !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.12em !important;
  white-space: nowrap !important;
  margin-left: 12px;
  box-shadow: 0 6px 16px rgba(11,37,69,0.20) !important;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.22s !important;
}

.nav-cta-rounded:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 22px rgba(11,37,69,0.24) !important;
}

.hamburger {
  position: static !important;
  transform: none !important;
}

.dropdown a {
  text-transform: uppercase !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.09em !important;
}

@media (max-width: 1024px) {
  .nav-wrap {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
  }

  .nav-links-left,
  .nav-links-right {
    display: none !important;
  }

  .nav-brand-center {
    margin: 0 !important;
    padding: 0;
  }

  .nav-cta-rounded {
    display: none !important;
  }

  .nav-brand-text {
    display: block;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .nav-logo-img {
    height: 44px;
  }
}
