/* ============================================================
   M. Kasapi Notary Services — Shared Stylesheet
   ============================================================ */

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

:root {
  --navy:        #0C6B6E;
  --navy-dark:   #063E40;
  --navy-mid:    #138A8E;
  --gold:        #0C6B6E;
  --gold-light:  #18A8AD;
  --white:       #FFFFFF;
  --off-white:   #F0FAFA;
  --border:      #C5E5E7;
  --text:        #0A2E30;
  --muted:       #4A7577;
  --green:       #16A34A;
  --red:         #DC2626;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --max-w:       1160px;
  --t:           0.2s ease;
}

html { scroll-behavior: smooth; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 16px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ── GLOBAL FOCUS INDICATOR (WCAG 2.4.7) ── */
:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Override for form fields which have their own focus style */
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 9px 24px;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.announcement-bar a { color: var(--white); font-weight: 600; }
.announcement-bar a:hover { text-decoration: underline; }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo .brand { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; }
.nav-logo .brand span { color: var(--gold); }
.nav-logo .sub { font-size: 16px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 199;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a.active { color: var(--navy); font-weight: 700; }
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu .btn { margin-top: 16px; }

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.page-banner h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; }
.page-banner .sub { margin-top: 12px; font-size: 17px; color: rgba(255,255,255,0.72); max-width: 520px; margin-left: auto; margin-right: auto; }
.breadcrumb {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

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

.section-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-label.on-dark { color: var(--white); }

.section-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--navy);
}
.section-title.on-dark { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: #2d2d2d;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.65;
}
.section-sub.on-dark { color: var(--white); }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

.divider { width: 52px; height: 4px; background: var(--gold); border-radius: 2px; margin-top: 16px; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ── HERO ── */
.hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, #0A9099 100%);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(12,107,110,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(19,138,142,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12,107,110,0.15);
  border: 1px solid rgba(12,107,110,0.35);
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-top: 18px;
  line-height: 1.65;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.trust-badge .tb-icon {
  width: 28px;
  height: 28px;
  background: rgba(12,107,110,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Hero right side — service tiles */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(4px);
  transition: background var(--t);
  text-decoration: none;
}
.hero-card:hover { background: rgba(255,255,255,0.12); }
.hero-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(12,107,110,0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-card-text strong { display: block; font-size: 16px; font-weight: 700; color: var(--white); }
.hero-card-text span { font-size: 16px; color: rgba(255,255,255,0.58); }
.hero-card-arrow { margin-left: auto; color: rgba(255,255,255,0.35); font-size: 18px; }

/* ── SERVICES GRID (homepage) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--off-white) 0%, #D8F0F1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  position: relative;
}
.service-card-img .sc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.service-card-body p { font-size: 16px; color: #2d2d2d; margin-top: 8px; line-height: 1.6; flex: 1; }
.service-card-link {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t);
}
.service-card:hover .service-card-link { gap: 8px; }

/* ── CREDENTIALS ── */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cred-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--t), transform var(--t);
}
.cred-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cred-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.cred-item h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
.cred-item p { font-size: 16px; color: #2d2d2d; margin-top: 6px; line-height: 1.55; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy); }
.step p { font-size: 16px; color: #2d2d2d; margin-top: 8px; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--t);
}
.testimonial:hover { box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-text { font-size: 16px; color: var(--text); line-height: 1.68; font-style: italic; }
.testimonial-author {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 16px; font-weight: 700; color: var(--navy); }
.testimonial-author span { font-size: 16px; color: var(--muted); }

/* ── SERVICE AREA ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.area-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; }
.cta-strip p { font-size: 18px; color: rgba(255,255,255,0.7); margin-top: 12px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-strip .cta-actions { display: flex; justify-content: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ── SERVICES PAGE ── */
.service-detail {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse .sd-img { order: 2; }
.service-detail.reverse .sd-content { order: 1; }
.sd-img {
  background: linear-gradient(135deg, var(--off-white) 0%, #D8F0F1 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 88px;
  box-shadow: var(--shadow);
}
.sd-content { text-align: center; }
.sd-content .section-label { margin-bottom: 12px; }
.sd-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.sd-content .divider { margin: 16px auto 20px; }
.sd-content .sd-sub {
  font-size: 16px;
  color: #2d2d2d;
  margin-top: 12px;
  line-height: 1.75;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.sd-includes {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}
.sd-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.sd-includes li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sd-content .btn { margin-top: 32px; }

/* ── ABOUT PAGE ── */
.about-intro-centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.about-intro-centered p {
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.75;
  margin-top: 16px;
  text-align: left;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon { font-size: 34px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); }
.value-card p { font-size: 16px; color: #2d2d2d; margin-top: 8px; line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cf-header { background: var(--navy); color: var(--white); padding: 24px 32px; }
.cf-header h2 { font-size: 20px; font-weight: 700; }
.cf-header p { font-size: 16px; color: rgba(255,255,255,0.68); margin-top: 4px; }
.cf-body { padding: 32px; }

.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 16px; font-weight: 600; color: var(--text); }
.form-field label .req { color: var(--red); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%234A7577'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,107,110,0.1);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input.error, .form-field select.error { border-color: var(--red); }
.field-error { font-size: 16px; color: var(--red); margin-top: 2px; display: none; }
.has-error .field-error { display: block; }
.has-error input, .has-error select, .has-error textarea { border-color: var(--red); }

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--navy-mid); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.submit-note { font-size: 16px; color: #2d2d2d; text-align: center; margin-top: 12px; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: var(--green);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 0; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.contact-info-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.ci-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ci-text span, .ci-text a { font-size: 16px; color: var(--text); line-height: 1.5; display: block; }
.ci-text a:hover { color: var(--navy); text-decoration: underline; }

.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--t), transform var(--t);
  text-decoration: none;
}
.social-link:hover { background: var(--navy-mid); transform: translateY(-2px); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-logo { font-size: 20px; font-weight: 800; color: var(--white); }
.footer-logo span { color: var(--white); }
.footer-tagline { font-size: 16px; color: rgba(255,255,255,0.92); line-height: 1.7; margin-top: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  transition: background var(--t), color var(--t);
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 16px; color: rgba(255,255,255,0.92); transition: color var(--t); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.fci { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: rgba(255,255,255,0.92); line-height: 1.5; }
.fci a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: rgba(255,255,255,1);
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 24px;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  text-align: center;
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
}

/* ── PHONE & LOCATION ICON COLORS ── */
.icon-ph, .icon-loc {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--navy);
}
footer .icon-ph,
footer .icon-loc,
.cta-strip .icon-ph,
.cta-strip .icon-loc,
.section-navy .icon-ph,
.section-navy .icon-loc,
.page-banner .icon-ph,
.page-banner .icon-loc { color: var(--white); }

/* ── APOSTILLE COLLAPSIBLE FORM ── */
.apostille-form-collapse {
  display: none;
  overflow: hidden;
  margin-top: 32px;
  padding-bottom: 16px;
  border-top: 2px solid var(--border);
  padding-top: 40px;
  animation: slideDown 0.35s ease forwards;
}
.apostille-form-collapse.open {
  display: block;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Arrow on toggle button rotates when open */
.btn-toggle-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  margin-left: 4px;
}
[aria-expanded="true"] .btn-toggle-arrow {
  transform: rotate(180deg);
}

/* ── SERVICE INTAKE FORMS ── */
.service-form-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.service-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}
.sf-header {
  background: var(--navy);
  color: var(--white);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sf-header-icon { font-size: 28px; }
.sf-header h3 { font-size: 20px; font-weight: 700; }
.sf-header p { font-size: 16px; color: rgba(255,255,255,0.68); margin-top: 3px; }
.sf-body { padding: 32px; }

.info-note {
  background: #E8F7F7;
  border: 1px solid #8ECFD2;
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 16px;
  color: #0A2E30;
  line-height: 1.55;
  margin-top: 8px;
}
.info-note strong { color: #063E40; }

.radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
  font-weight: 500;
}
.radio-option:has(input:checked) {
  border-color: var(--navy);
  background: rgba(12,107,110,0.05);
}
.radio-option input[type="radio"] { accent-color: var(--navy); width: 16px; height: 16px; }

/* Radio group stacked vertically (for long option labels) */
.radio-group-col {
  flex-direction: column;
  gap: 10px;
}
.radio-group-col .radio-option {
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
.radio-group-col .radio-option input[type="radio"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.radio-group-col .radio-option > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.radio-group-col .radio-option strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.radio-desc {
  font-size: 16px;
  color: #2d2d2d;
  font-weight: 400;
  line-height: 1.45;
}

.conditional-field {
  display: none;
  margin-top: 14px;
  padding: 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.conditional-field.visible { display: block; }

.req-note {
  font-size: 16px;
  color: #2d2d2d;
  margin-bottom: 16px;
}

.form-section-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  display: block;
}

.agreement-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 8px;
}
.agreement-box p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.agreement-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

/* ── FILE DROPZONE ── */
.dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  position: relative;
  background: var(--off-white);
}
.dropzone:hover, .dropzone.dragover {
  border-color: var(--navy);
  background: rgba(12,107,110,0.04);
}
.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.dropzone-icon { font-size: 36px; margin-bottom: 8px; }
.dropzone-text { font-size: 16px; color: var(--muted); line-height: 1.5; }
.dropzone-text strong { color: var(--navy); }
.dropzone-hint { font-size: 16px; color: #999; margin-top: 8px; }

.tr-file-list { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.tr-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 16px;
  color: var(--text);
}
.tr-file-item span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-right: 10px; }
.tr-file-item button {
  background: none;
  border: none;
  color: var(--red);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
}
.tr-file-item button:hover { opacity: 0.7; }

.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 38px; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.reverse .sd-img { order: unset; }
  .service-detail.reverse .sd-content { order: unset; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 28px; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip h2 { font-size: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .nav-links, .nav-phone { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .page-banner h1 { font-size: 28px; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-strip .cta-actions { flex-direction: column; align-items: center; }
  .about-badge { right: 0; bottom: -16px; }
}
