/* ═══════════════════════════════════════════════
   Radar Jacksonville — Design System
   Last updated: 2026-07-19
   ═══════════════════════════════════════════════ */

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

/* ── Design Tokens ── */
:root {
  --gold: #D4AF37;
  --gold-light: #f4e4b8;
  --gold-dark: #b8952e;
  --dark: #0a0a0a;
  --dark-mid: #141414;
  --dark-card: #1a1a1a;
  --dark-border: #2a2a2a;
  --charcoal: #222;
  --text: #e8e8e8;
  --text-mid: #b0b0b0;
  --text-light: #777;
  --bg: #0e0e0e;
  --bg-white: #141414;
  --border: #2a2a2a;
  --danger: #c0392b;
  --success: #27ae60;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.15);
  --max-w: 1140px;
  --transition: 0.25s ease;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── Futuristic Tech Background ── */
.tech-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(212,175,55,0.2) 0%, transparent 60%),
    var(--bg);
}

/* Sections need translucent bg so circuit board shows through */
section {
  background: rgba(14,14,14,0.6);
  position: relative;
}
section:nth-child(even) {
  background: rgba(20,20,20,0.65);
}

/* ── Tech Background Effects ── */

/* Section divider accents */
.section-accent {
  position: relative;
}
.section-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Radar pulse keyframe for hero */
@keyframes radar-sweep {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.15; }
  100% { opacity: 0; transform: scale(1.5); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

/* ── Skip Nav (Accessibility) ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  z-index: 9999;
  border-radius: var(--radius);
}
.skip-nav:focus { top: 0.5rem; }

/* ── Focus Visible ── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Screen Reader Only ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════ */
.top-bar {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.top-bar a { color: var(--dark); font-weight: 700; }
.top-bar a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════ */
header {
  background: var(--dark);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
}

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

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 56px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
}

nav { display: flex; align-items: center; }
nav ul {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}
nav a {
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
  position: relative;
}
nav a:hover, nav a.active {
  color: var(--gold);
}

.header-phone {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold-light); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  background: linear-gradient(rgba(10,10,10,0.65), rgba(10,10,10,0.75)),
              url('assets/images/hero-gpr-scanning.jpg') center/cover no-repeat;
  color: #fff;
  padding: 5rem 1.25rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  margin: -400px 0 0 -400px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.2);
  animation: radar-sweep 4s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  margin: -250px 0 0 -250px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.15);
  animation: radar-sweep 4s ease-in-out 1.5s infinite;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.5; }

.hero h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  background: rgba(212,175,55,0.03);
}
.hero-stat .num {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
}

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

.btn-dark {
  background: #0a0a0a;
  color: var(--gold);
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-dark:hover {
  background: #1a1a1a;
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
section { padding: 4.5rem 1.25rem; }

/* Visible section borders on dark theme */
section + section {
  border-top: 1px solid rgba(212,175,55,0.1);
}

/* Override nth-child for special sections */
section.cta-section,
section.form-section {
  border-top: none;
}

.section-eyebrow {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Barlow', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 700px;
  line-height: 1.7;
}

/* ── Centered Section Header ── */
.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--dark-border);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.service-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.service-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

/* Gold line dividers between sections */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  border: none;
  margin: 0;
}

/* Subtle card glow on dark bg */
.service-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before {
  opacity: 1;
}

/* ══════════════════════════════════════
   TRUST / WHY CHOOSE
   ══════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.trust-item .trust-num {
  font-family: 'Barlow', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(212,175,55,0.2);
}
.trust-item .trust-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   CONTENT SECTIONS (about, process, etc.)
   ══════════════════════════════════════ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(212,175,55,0.1);
  border: 1px solid var(--dark-border);
  position: relative;
}
.content-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.content-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-text h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.content-text p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.content-text ul {
  list-style: none;
  margin: 1rem 0;
}
.content-text ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text-mid);
}
.content-text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ══════════════════════════════════════
   PROCESS STEPS
   ══════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.process-step {
  background: var(--dark-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--dark-border);
  position: relative;
}
.step-num {
  font-family: 'Barlow', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   SERVICE AREAS
   ══════════════════════════════════════ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.area-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.area-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 2px solid rgba(212,175,55,0.3);
}
.area-card-body {
  padding: 1.25rem;
}
.area-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.area-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.area-card .card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ══════════════════════════════════════
   FORMS
   ══════════════════════════════════════ */
.form-section {
  background: rgba(10,10,10,0.65);
  padding: 4rem 1.25rem;
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--dark-border);
}
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.form-header h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-header p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

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

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: rgba(255,255,255,0.1);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.form-status {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 600;
  display: none;
}
.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--dark-card);
  padding: 1.75rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.faq-item h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.faq-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
section.cta-section {
  background: linear-gradient(135deg, #e6c34a 0%, #D4AF37 50%, #c49d2e 100%);
  color: #0a0a0a;
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
  box-shadow: 0 -4px 40px rgba(212,175,55,0.15), 0 4px 40px rgba(212,175,55,0.15);
}
section.cta-section h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #000;
}
section.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #000;
  opacity: 0.8;
}

/* ══════════════════════════════════════
   AUTHOR BIO
   ══════════════════════════════════════ */
.author-bio {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}
.bio-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.bio-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-initials {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.bio-info h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.bio-info h3 a { color: var(--text); }
.bio-info h3 a:hover { color: var(--gold-dark); }
.bio-credentials {
  font-size: 0.75rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.bio-info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: rgba(5,5,5,0.7);
  color: var(--gold-light);
  padding: 3.5rem 1.25rem 1.5rem;
  border-top: 3px solid var(--gold);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gold-light);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-phone {
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-mid);
  font-size: 0.82rem;
  color: var(--text-light);
}
.footer-bottom a { color: var(--gold-light); }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

/* Tablet */
@media (max-width: 992px) {
  .hamburger { display: flex; }

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  nav ul.open { display: flex; }
  nav a { font-size: 1.25rem; }

  .hero h1 { font-size: 2.2rem; }
  .services-grid,
  .trust-grid,
  .areas-grid,
  .process-grid { grid-template-columns: 1fr !important; }

  .content-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .content-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Phone */
@media (max-width: 768px) {
  .logo img { height: 44px; }
  .logo-name { font-size: 1rem; }
  .logo-tagline { font-size: 0.62rem; }

  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .num { font-size: 1.5rem; }

  section { padding: 3rem 1.25rem; }
  .section-title { font-size: 1.6rem; }

  .services-grid,
  .trust-grid,
  .areas-grid,
  .process-grid { grid-template-columns: 1fr !important; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 1.75rem 1.25rem; }

  .bio-card { flex-direction: column; align-items: center; text-align: center; }
  .bio-credentials { text-align: center; }

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

  .top-bar .tb-hide-mobile { display: none; }
  .header-phone { font-size: 1rem; }
}

/* Small phone */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
}
