/*
Theme Name: Cedar Mountain Medical
Theme URI: https://cedarmountainmedical.com
Author: Cedar Mountain Medical Impairments
Description: Custom theme for Cedar Mountain Medical Impairments - EEOICPA Specialists
Version: 1.0.0
License: Private
Text Domain: cedar-mountain
*/

/* ===================== VARIABLES ===================== */
:root {
  --navy:       #1E3A5F;
  --navy-mid:   #2C5282;
  --navy-light: #3B6CB7;
  --gold:       #E8A020;
  --gold-light: #F5C842;
  --gold-pale:  #FFF8E7;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --gray-light: #EEF2F7;
  --gray-mid:   #8A9BB5;
  --text-dark:  #1A2B3C;
  --text-body:  #3D4F63;
  --shadow-sm:  0 2px 8px rgba(30,58,95,0.08);
  --shadow-md:  0 8px 24px rgba(30,58,95,0.12);
  --shadow-lg:  0 16px 48px rgba(30,58,95,0.16);
  --radius:     10px;
  --radius-lg:  16px;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.2;
}
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ===================== NAVIGATION ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-phone {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold-light); }

/* ===================== SECTION DEFAULTS ===================== */
section { padding: 90px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.75;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.divider { width: 56px; height: 3px; background: var(--gold); margin-bottom: 22px; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 34px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}
.btn-secondary {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 13px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  transition: all 0.25s;
}
.btn-navy:hover { background: #0D2240; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0D2240 0%, #1E3A5F 45%, #2A4A7A 100%);
  display: flex;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}
.hero-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 42%;
  opacity: 0.07;
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.1;
}
.hero h1 span { color: var(--gold-light); }
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 38px;
  line-height: 1.75;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 38px;
  backdrop-filter: blur(4px);
}
.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-stat {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ===================== WHAT WE DO ===================== */
.what-we-do { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--gold-light); }
.service-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.94rem; color: var(--text-body); line-height: 1.7; }

/* ===================== STATS STRIP ===================== */
.stats-strip { background: var(--navy); padding: 60px 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.4; }

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image-wrap img { width: 100%; height: 460px; object-fit: cover; display: block; }
.about-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.about-image-badge-icon { font-size: 1.4rem; }
.about-image-badge-text { color: var(--gold-light); font-size: 0.85rem; font-weight: 600; line-height: 1.4; }
.about-text p { font-size: 1.02rem; margin-bottom: 16px; line-height: 1.8; color: var(--text-body); }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.pillar {
  background: var(--off-white);
  border-radius: 8px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
}
.pillar h4 { font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pillar p { font-size: 0.83rem; color: var(--text-body); line-height: 1.5; margin: 0; }

/* ===================== EEOICPA ===================== */
.eeoicpa { background: var(--off-white); }
.eeoicpa-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.eeoicpa-content h3 {
  font-size: 1.45rem; color: var(--navy);
  margin-bottom: 14px; margin-top: 30px; font-weight: 600;
}
.eeoicpa-content h3:first-of-type { margin-top: 0; }
.eeoicpa-content p { font-size: 0.97rem; color: var(--text-body); line-height: 1.8; margin-bottom: 12px; }
.eeoicpa-content ul { padding: 0; margin-bottom: 18px; }
.eeoicpa-content ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.94rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-light);
}
.eeoicpa-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  padding: 34px;
  color: var(--white);
  margin-bottom: 20px;
}
.highlight-box h3 { font-size: 1.3rem; color: var(--gold-light); margin-bottom: 14px; font-weight: 600; margin-top: 0; }
.highlight-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.highlight-desc { color: rgba(255,255,255,0.75); font-size: 0.93rem; line-height: 1.6; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 26px;
  border: 1px solid var(--gray-light);
  margin-bottom: 14px;
}
.info-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.info-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; margin: 0; }

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 31px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 62px; height: 62px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold-light);
  margin: 0 auto 18px;
  border: 3px solid var(--gold);
}
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 0.87rem; color: var(--text-body); line-height: 1.65; }

/* ===================== TEAM ===================== */
.team { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 38px 32px;
  text-align: center;
}
.team-avatar {
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--navy);
  margin: 0 auto 18px;
  border: 4px solid rgba(255,255,255,0.2);
  overflow: hidden;
  padding: 0;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; color: var(--white); font-weight: 700; margin-bottom: 5px; }
.team-title { color: var(--gold-light); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.team-body { padding: 30px 32px; }
.team-body p { font-size: 0.93rem; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }
.team-credentials { border-top: 1px solid var(--gray-light); padding-top: 18px; margin-top: 6px; }
.team-cred-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 10px; }
.credential-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.credential-tag {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--navy);
  font-size: 0.78rem; font-weight: 600;
  padding: 4px 11px; border-radius: 20px;
}

/* ===================== RESOURCES ===================== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  display: flex; flex-direction: column; gap: 12px;
}
.resource-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.resource-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale);
  padding: 3px 10px; border-radius: 2px; align-self: flex-start;
}
.resource-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.resource-card p { font-size: 0.86rem; color: var(--text-body); line-height: 1.6; flex: 1; margin: 0; }
.resource-link {
  color: var(--navy-mid); font-size: 0.84rem; font-weight: 700;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s;
}
.resource-link:hover { color: var(--gold); }
.resource-link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ===================== CTA STRIP ===================== */
.cta-strip { background: var(--gold); padding: 64px 24px; text-align: center; }
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--navy); margin-bottom: 14px;
}
.cta-strip p { color: rgba(30,58,95,0.8); font-size: 1.02rem; max-width: 520px; margin: 0 auto 28px; line-height: 1.7; }

/* ===================== CONTACT ===================== */
.contact { background: var(--navy); }
.contact .section-title { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.7); }
.contact .section-eyebrow { background: rgba(232,160,32,0.15); border-color: rgba(232,160,32,0.3); color: var(--gold-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--gold-light); }
.contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-info-value { font-size: 0.97rem; color: var(--white); line-height: 1.5; }
.contact-note {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 26px; margin-top: 28px;
}
.contact-note-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-light); font-weight: 600; margin-bottom: 10px; }
.contact-note p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.7; margin: 0; }
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 38px;
}
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; color: var(--white); font-weight: 600; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px; padding: 12px 14px;
  color: var(--white);
  font-size: 0.94rem; outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 108px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; padding: 15px;
  font-size: 0.97rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 6px; cursor: pointer;
  transition: all 0.25s; margin-top: 6px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.76rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-success {
  display: none;
  background: rgba(46, 160, 67, 0.15);
  border: 1px solid rgba(46,160,67,0.4);
  border-radius: 6px; padding: 16px;
  color: #7de89b; text-align: center;
  font-weight: 600; margin-top: 14px;
}
.form-error {
  display: none;
  background: rgba(220,53,69,0.15);
  border: 1px solid rgba(220,53,69,0.4);
  border-radius: 6px; padding: 16px;
  color: #ff8fa3; text-align: center;
  font-weight: 600; margin-top: 14px;
}

/* ===================== FOOTER ===================== */
footer { background: #0D2240; padding: 60px 24px 32px; color: rgba(255,255,255,0.6); }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand img { height: 50px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 0; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--white); font-weight: 600; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-disclaimer {
  max-width: 1200px; margin: 20px auto 0;
  font-size: 0.76rem; color: rgba(255,255,255,0.3);
  line-height: 1.6;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .eeoicpa-layout { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone { display: none; }
}

@media (max-width: 768px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 18px; }
  .hero { min-height: auto; padding-top: 76px; }
  .hero-content { padding: 56px 18px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  section { padding: 52px 16px; }
  .hero-content { padding: 44px 16px; }
  .hero h1 { font-size: 1.95rem; }
  .hero-desc { font-size: 1rem; }
  .contact-form { padding: 26px 20px; }
  .team-body { padding: 24px 22px; }
  .team-card-header { padding: 30px 22px; }
  .stat-number { font-size: 2.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
