/* ============================================================
   ABBCON ASSOCIATES — Main Stylesheet
   Palette: Deep navy, warm gold accent, clean white
   ============================================================ */

/* Self-hosted fonts — no external requests to Google */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-normal-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-normal-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-normal-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-italic-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-italic-600.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-normal-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-normal-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-normal-600.woff2') format('woff2');
}

:root {
  --navy:        #0d1f3c;
  --navy-mid:    #1a3358;
  --navy-light:  #254a7a;
  --gold:        #b8933a;
  --gold-light:  #d4ae5e;
  --white:       #ffffff;
  --off-white:   #f7f5f0;
  --light-grey:  #edeae3;
  --mid-grey:    #8a8a8a;
  --dark-text:   #1a1a2e;
  --body-text:   #2d2d2d;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-width: 1200px;
  --section-pad: 80px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

ul { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

/* ── LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--tint { background: var(--off-white); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title { margin-bottom: 1rem; }
.section-intro {
  font-size: 1.1rem;
  color: var(--mid-grey);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--navy);
  z-index: 1000;
  border-bottom: 1px solid rgba(184,147,58,0.25);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.site-logo img {
  height: 54px;
  width: auto;
  display: block;
}
.site-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.site-logo .logo-main span { color: var(--gold); }
.site-logo .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone:hover { color: var(--gold-light); }

/* ── NAV ─────────────────────────────────────────────────── */
.main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  padding: 8px 13px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { background: rgba(255,255,255,0.1); color: var(--white); }

/* Dropdown */
.main-nav .has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.6;
}
.dropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--navy-mid);
  border: 1px solid rgba(184,147,58,0.2);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  padding: 6px 0;
  z-index: 100;
  flex-direction: column;
  gap: 0;
}
.has-dropdown:hover .dropdown { display: block !important; }
.dropdown a {
  padding: 9px 18px;
  border-radius: 0;
  font-size: 0.82rem;
}

.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  border-radius: 5px !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,31,60,0.97) 0%, rgba(13,31,60,0.75) 60%, rgba(13,31,60,0.6) 100%),
    url('../assets/images/hero-bg.jpg') center/cover no-repeat;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,147,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-since {
  position: absolute;
  right: 48px;
  bottom: 0;
  text-align: right;
  z-index: 2;
}
.hero-since .year {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.hero-since .since-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,147,58,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.75);
  transition: filter 0.2s;
}
.trust-bar img:hover { filter: grayscale(0%) opacity(1); }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── SERVICES GRID ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-grey);
  border: 2px solid var(--light-grey);
  border-radius: 10px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.25s;
}
.service-card:hover { background: var(--off-white); }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-link:hover::after { transform: translateX(4px); }

/* ── DEPRECIATION FEATURE ───────────────────────────────── */
.depr-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.depr-feature .feature-text { }
.depr-feature .feature-visual {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,58,0.15), transparent);
}
.depr-steps {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}
.depr-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  margin: 0;
}
.depr-steps li:last-child { border-bottom: none; }
.depr-steps li::before {
  content: counter(steps);
  min-width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── TESTIMONIAL ─────────────────────────────────────────── */
.testimonial-section { background: var(--navy); }
.testimonial-wrap {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.8rem;
}
.testimonial-author {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 48px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.cta-strip p { color: rgba(13,31,60,0.7); margin: 0; }

/* ── ACCORDION (FAQ) ─────────────────────────────────────── */
.accordion { border-top: 1px solid var(--light-grey); }
.accordion-item { border-bottom: 1px solid var(--light-grey); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.accordion-item.open .accordion-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.accordion-body {
  display: none;
  padding: 0 0 24px;
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.8;
}
.accordion-item.open .accordion-body { display: block; }

/* ── PROJECTS TABLE ──────────────────────────────────────── */
.projects-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tab-btn {
  padding: 8px 18px;
  border: 1px solid var(--light-grey);
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mid-grey);
  transition: all 0.2s;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.project-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}
.project-list li {
  background: var(--off-white);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  margin: 0;
}
.project-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  font-size: 1rem;
}

/* ── EXPERIENCE CATEGORIES ──────────────────────────────── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.exp-cat {
  background: var(--off-white);
  border-radius: 8px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 44px 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(184,147,58,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-detail-value {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.contact-detail-value a { color: rgba(255,255,255,0.85); }
.contact-detail-value a:hover { color: var(--gold); }

/* Form */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,60,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}
.form-checkbox input { width: auto; }
.form-note {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-top: 10px;
}
.form-success {
  display: none;
  background: #e6f4ea;
  border: 1px solid #82c884;
  border-radius: 8px;
  padding: 20px 24px;
  color: #2d6a30;
  margin-top: 20px;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 56px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy-light), var(--gold));
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .page-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.8;
  margin: 0;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-text);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); font-weight: 700; }
.footer-brand .logo-main span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }
.accred-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 20px;
}
.accred-logos img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(20%);
  transition: opacity 0.2s;
}
.accred-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .depr-feature { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--navy-mid); padding: 16px 24px 24px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 12px 8px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown { display: none !important; position: static; background: rgba(0,0,0,0.2); box-shadow: none; border: none; border-radius: 0; }
  .has-dropdown.open .dropdown { display: block !important; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .hero-since { display: none; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .projects-tabs { gap: 4px; }
  .form-checkbox-group { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 20px; }
  .trust-bar img { height: 32px; }
}
