/* ============================================================
   ProTecht IP & Law LLP — Main Stylesheet
   Navy & Gold Professional Theme
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navy-deep:    #071223;
  --navy-dark:    #0a1a2e;
  --navy-mid:     #112240;
  --navy-light:   #1d3461;
  --gold:         #c9a84c;
  --gold-light:   #e2c47a;
  --gold-dark:    #a07830;
  --gold-pale:    #f5edda;
  --white:        #ffffff;
  --off-white:    #f8f7f3;
  --grey-light:   #efefef;
  --grey-mid:     #9a9a9a;
  --text-dark:    #1a1a1a;
  --text-body:    #3d3d3d;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --transition:   all 0.3s ease;
  --radius:       6px;
  --radius-lg:    12px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--navy-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-mid);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy-dark) !important; }

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.25rem 0 2rem;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: var(--navy-deep);
  padding: 0.85rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  padding-left: 0.1rem;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 1rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 82vh;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(29,52,97,0.5) 0%, transparent 60%);
}

/* Decorative grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
}

/* Large logo emblem in hero */
.hero-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(201,168,76,0.06) 55%, transparent 100%);
  border: 1.5px solid rgba(201,168,76,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 90px rgba(201,168,76,0.22), inset 0 0 60px rgba(201,168,76,0.08);
  animation: logoGlow 4s ease-in-out infinite;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.14);
}

.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
}

.hero-logo-ring img {
  width: 290px;
  height: 290px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  padding: 12px;
  filter: drop-shadow(0 6px 32px rgba(201,168,76,0.5));
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 80px rgba(201,168,76,0.18), inset 0 0 50px rgba(201,168,76,0.06); }
  50%       { box-shadow: 0 0 110px rgba(201,168,76,0.30), inset 0 0 60px rgba(201,168,76,0.10); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Floating decoration */
.hero-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-deep);
  padding: 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.04); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Practice Areas Preview (Home) ───────────────────────── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.practice-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.practice-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.practice-card:hover::before { transform: scaleX(1); }

.pc-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.practice-card:hover .pc-icon {
  background: var(--gold);
}

.pc-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-dark);
  transition: var(--transition);
}

.practice-card:hover .pc-icon svg {
  stroke: var(--navy-deep);
}

.practice-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--navy-dark);
}

.practice-card p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.65;
  margin: 0;
}

.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  transition: var(--transition);
}
.pc-link:hover { gap: 0.6rem; }

/* ── Why Choose Us (Home) ─────────────────────────────────── */
.why-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text .section-heading,
.why-text .section-tag { color: inherit; }

.why-text .section-heading { color: var(--white); }
.why-text .divider { margin: 1.25rem 0 1.75rem; }

.why-text p { color: rgba(255,255,255,0.7); }

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.wp-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.4rem;
}

.wp-text h4 {
  font-size: 0.92rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.wp-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.wv-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.35);
}

.wv-card:nth-child(2) { margin-top: 1.5rem; }
.wv-card:nth-child(3) { margin-top: -1.5rem; }

.wv-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.wv-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 70px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(7,18,35,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ── Services Page ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 110px 0 55px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 3rem;
}

.page-hero-content { text-align: left; }

.page-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-logo img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  border-radius: 50%;
  padding: 20px;
  background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, rgba(201,168,76,0.05) 70%, transparent 100%);
  border: 1.5px solid rgba(201,168,76,0.4);
  box-shadow: 0 0 60px rgba(201,168,76,0.20);
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.45));
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Services list */
.services-list { padding: 90px 0; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--grey-light);
}

.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-visual {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.12) 0%, transparent 60%);
}

.sv-icon {
  width: 90px;
  height: 90px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sv-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.service-content h2 { margin-bottom: 0.5rem; }

.service-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.sf-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.sf-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold-dark);
  stroke-width: 3;
}

/* ── About Page ───────────────────────────────────────────── */
.about-intro {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-logo-display {
  width: 270px;
  height: 270px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  padding: 16px;
  filter: drop-shadow(0 8px 40px rgba(201,168,76,0.55));
  position: relative;
  z-index: 1;
}

.about-img-main {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.1) 0%, transparent 65%);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.72rem;
  color: rgba(7,18,35,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Values */
.values-section {
  background: var(--off-white);
  padding: 90px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

.vc-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}

.vc-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-dark);
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin: 0;
}

/* Mission */
.mission-section { padding: 90px 0; }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.mission-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.mission-card.dark {
  background: var(--navy-dark);
}

.mission-card.dark h3,
.mission-card.dark p { color: var(--white); }
.mission-card.dark p { color: rgba(255,255,255,0.7); }
.mission-card.dark::after {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-section { padding: 90px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { color: var(--grey-mid); margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cd-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cd-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-dark);
}

.cd-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}

.cd-value {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.cd-value a { transition: var(--transition); }
.cd-value a:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-heading {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.form-success {
  display: none;
  background: #f0faf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #166534;
  font-size: 0.9rem;
  margin-top: 1rem;
  align-items: center;
  gap: 0.5rem;
}

.form-success.visible { display: flex; }

/* Map */
.map-section {
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
}

.map-label {
  background: var(--navy-deep);
  color: var(--gold);
  text-align: center;
  padding: 1.1rem 1rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo-name { font-size: 1.3rem; }
.footer-brand .nav-logo-sub  { margin-top: 0.25rem; }

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-top: 1rem;
  color: rgba(255,255,255,0.45);
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--gold); }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual    { grid-template-columns: repeat(4, 1fr); }
  .wv-card:nth-child(2),
  .wv-card:nth-child(3) { margin-top: 0; }
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block.reverse { direction: ltr; }
  .service-visual { height: 240px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-logo-display { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-img-main { height: 300px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .mission-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 1.25rem; }

  .nav-links, .nav-cta { display: none; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
  }

  .nav-links.mobile-open a {
    font-size: 1.3rem;
    padding: 0.75rem 2rem;
  }

  .nav-cta.mobile-open {
    display: flex;
    margin-top: 1.5rem;
  }

  .nav-toggle { display: flex; z-index: 1001; }

  .practice-grid { grid-template-columns: 1fr; }
  .why-points    { grid-template-columns: 1fr; }
  .why-visual    { grid-template-columns: repeat(2, 1fr); }
  .wv-card:nth-child(2),
  .wv-card:nth-child(3) { margin-top: 0; }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row      { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero     { padding: 100px 0 48px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-logo  { display: none; }
  .page-hero-content { text-align: center; }
  .about-badge   { position: static; margin-top: 1.5rem; display: inline-block; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; }
  .btn           { justify-content: center; }
  .values-grid   { grid-template-columns: 1fr; }
  .stats-inner   { grid-template-columns: 1fr 1fr; }
}
