/* ═══════════════════════════════════════════════════════════════════
   AFRICA TALENT GROUP — style.css
   Palette : Navy #1B3A6B | Gold #C9A42A | Teal #1A7A6E
   Fonts   : Playfair Display (display) + DM Sans (body)
═══════════════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #1B3A6B;
  --navy-dark:  #0D1F3C;
  --navy-light: #2a4f8f;
  --gold:       #C9A42A;
  --gold-light: #e8c14a;
  --gold-pale:  #FDF3D0;
  --teal:       #1A7A6E;
  --teal-light: #22a090;
  --teal-pale:  #D6F0EC;
  --off-white:  #F8F6F0;
  --mid-grey:   #8a90a0;
  --light-grey: #f0f2f5;
  --dark:       #0D1F3C;
  --text:       #2c3346;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(13,31,60,.12);
  --shadow-lg:  0 12px 48px rgba(13,31,60,.18);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
}
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }

/* Google Translate: hide original-text popup/tooltip */
#goog-gt-tt,
.goog-te-balloon-frame,
iframe.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Navbar ──────────────────────────────────────────────────────── */
.atg-navbar {
  background: var(--navy-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}
.atg-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.atg-navbar .brand-logo-box {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-dark);
  letter-spacing: .5px;
}
.atg-navbar .brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.atg-navbar .brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}
.atg-navbar .brand-sub {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.atg-navbar .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .3px;
  padding: 1.25rem .9rem !important;
  transition: color var(--transition), border-bottom var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.atg-navbar .nav-link:hover,
.atg-navbar .nav-link.active {
  color: var(--gold) !important;
  border-bottom-color: var(--gold);
}
.atg-navbar .dropdown-menu {
  background: var(--navy);
  border: 1px solid rgba(201,164,42,.3);
  border-radius: var(--radius);
  padding: 8px 0;
  margin-top: 3px;
  min-width: 220px;
}
.atg-navbar .dropdown-item {
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  padding: .55rem 1.2rem;
  transition: background var(--transition), color var(--transition);
}
.atg-navbar .dropdown-item:hover {
  background: rgba(201,164,42,.15);
  color: var(--gold);
}
.atg-navbar .dropdown-divider { border-color: rgba(255,255,255,.12); }
.atg-navbar .navbar-toggler {
  border-color: rgba(201,164,42,.5);
  padding: .4rem .6rem;
}
.atg-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,164,42,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.atg-navbar .btn-contact-nav {
  background: var(--gold);
  color: var(--navy-dark) !important;
  border-radius: 4px;
  padding: .45rem 1.1rem !important;
  font-weight: 600;
  font-size: .85rem;
  border-bottom: none !important;
  transition: background var(--transition), transform var(--transition);
  margin-left: .5rem;
}
.atg-navbar .btn-contact-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,122,110,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,164,42,.10) 0%, transparent 55%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,.025) 60px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,164,42,.15);
  border: 1px solid rgba(201,164,42,.35);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero .lead {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-bottom: 2.2rem;
  font-weight: 300;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-image-col {
  display: flex; align-items: center; justify-content: center;
}
.hero-main-image {
  width: 50%;
  max-width: 260px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Page heroes (inner pages) */
.page-hero {
  background: var(--navy-dark);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,164,42,.1) 0%, transparent 55%);
}
.page-hero .badge-service {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .8rem; }
.page-hero .lead { color: rgba(255,255,255,.68); font-size: 1.05rem; max-width: 650px; margin-bottom: 0; }
.page-hero .breadcrumb { background: transparent; padding: 0; margin-bottom: 1.5rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* Gold bar separator */
.gold-bar {
  width: 60px; height: 4px;
  background: var(--gold);
  margin: 1.2rem 0;
  border-radius: 2px;
}
.gold-bar.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn-atg {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .3px;
}
.btn-atg-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-atg-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,164,42,.35);
}
.btn-atg-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-atg-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}
.btn-atg-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-atg-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,58,107,.3);
}
.btn-atg-teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-atg-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Sections ─────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--navy-dark); }
.section-navy { background: var(--navy); }
.section-off { background: var(--off-white); }
.section-light { background: var(--light-grey); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: .5rem;
}
.section-title.light { color: #fff; }
.section-subtitle {
  color: var(--mid-grey);
  font-size: 1.05rem;
  max-width: 600px;
}
.section-subtitle.light { color: rgba(255,255,255,.65); }

/* ── Image placeholder ──────────────────────────────────────────── */
.img-placeholder {
  background: #e2e6ec;
  border: 2px dashed #b0b9c8;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #8a90a0;
  font-size: .85rem;
  font-weight: 500;
  gap: 10px;
  text-align: center;
  padding: 1rem;
}
.img-placeholder svg { opacity: .45; }
.img-placeholder.hero-ph { min-height: 400px; border-radius: 12px; }
.img-placeholder.card-ph { min-height: 220px; border-radius: var(--radius) var(--radius) 0 0; }
.img-placeholder.page-ph { min-height: 320px; }
.img-placeholder.sm-ph { min-height: 180px; }
.img-placeholder.team-ph { min-height: 260px; border-radius: 50%; width: 260px; max-width: 100%; margin: 0 auto; }

/* ── Service Cards ────────────────────────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--gold);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.service-card .card-icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
}
.service-card .card-icon.gold { background: var(--gold-pale); color: var(--gold); }
.service-card .card-icon.teal { background: var(--teal-pale); color: var(--teal); }
.service-card .card-icon.navy { background: rgba(27,58,107,.1); color: var(--navy); }
.service-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card p { color: #666; font-size: .9rem; flex: 1; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: .875rem;
  margin-top: auto;
  padding-top: 1rem;
  transition: gap var(--transition), color var(--transition);
}
.service-card .card-link:hover { gap: 10px; color: var(--navy); }
.service-card .card-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  margin-bottom: .8rem;
}

/* ── Stats bar ───────────────────────────────────────────────────── */
.stats-bar { background: var(--gold); padding: 2rem 0; }
.stats-bar .stat-item { text-align: center; }
.stats-bar .stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  display: block;
}
.stats-bar .stat-label {
  font-size: .8rem;
  color: rgba(13,31,60,.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stats-bar .stat-divider {
  width: 1px; background: rgba(13,31,60,.2);
  align-self: stretch; margin: .5rem 0;
}

/* ── Countries flags band ────────────────────────────────────────── */
.countries-band { background: var(--light-grey); padding: 1.5rem 0; }
.countries-band .country-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.countries-band .country-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-track {
  display: flex; gap: 2.5rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Process Steps ──────────────────────────────────────────────── */
.step-card {
  display: flex; gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  margin-bottom: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover { border-left-color: var(--gold); transform: translateX(4px); }
.step-num {
  min-width: 42px; height: 42px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-card h4 { font-size: 1rem; margin-bottom: .25rem; color: var(--navy); }
.step-card p { font-size: .875rem; color: #666; margin-bottom: 0; }

/* ── Pillar cards ────────────────────────────────────────────────── */
.pillar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-top: 3px solid var(--teal);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-card .pillar-icon {
  font-size: 1.8rem;
  margin-bottom: .8rem;
}
.pillar-card h4 { font-size: .98rem; color: var(--navy); margin-bottom: .4rem; }
.pillar-card p { font-size: .85rem; color: #666; margin-bottom: 0; }
.pillar-card.gold-top { border-top-color: var(--gold); }

/* ── Comparison table ────────────────────────────────────────────── */
.compare-table th { background: var(--navy); color: #fff; font-family: var(--font-body); font-weight: 600; }
.compare-table td { vertical-align: middle; font-size: .9rem; }
.compare-table .col-atg { background: rgba(26,122,110,.06); }
.compare-table .badge-yes { color: var(--teal); font-weight: 700; }
.compare-table .badge-no { color: #ccc; }

/* ── Pricing card ────────────────────────────────────────────────── */
.pricing-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
  border-top: 4px solid var(--gold);
  text-align: center;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}
.pricing-card .price-unit { font-size: .9rem; color: var(--mid-grey); font-family: var(--font-body); }
.pricing-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.pricing-card .price-desc { font-size: .85rem; color: #666; }

/* ── Quote / callout ─────────────────────────────────────────────── */
.callout-box {
  background: var(--teal-pale);
  border-left: 5px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0;
}
.callout-box.gold { background: var(--gold-pale); border-left-color: var(--gold); }
.callout-box.navy { background: rgba(27,58,107,.08); border-left-color: var(--navy); }
.callout-box h5 { color: var(--navy); font-size: 1rem; margin-bottom: .4rem; }
.callout-box p, .callout-box ul { font-size: .9rem; color: var(--text); margin-bottom: 0; }
.callout-box ul { padding-left: 1.2rem; }

/* ── List with gold checks ───────────────────────────────────────── */
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .92rem; padding: .4rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.list-check li:last-child { border-bottom: none; }
.list-check li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.list-check.gold li::before { color: var(--gold); }

/* ── Contact form ────────────────────────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.form-label { font-weight: 600; font-size: .875rem; color: var(--navy); margin-bottom: .35rem; }
.form-control, .form-select {
  border: 1.5px solid #d8dde6;
  border-radius: var(--radius);
  padding: .65rem 1rem;
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,110,.12);
  outline: none;
}
.captcha-box {
  background: var(--light-grey);
  border: 1.5px solid #d8dde6;
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.captcha-question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.captcha-input {
  width: 80px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.contact-info-card {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  border-radius: 12px;
  padding: 2rem;
}
.contact-info-card h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.2rem; }
.contact-info-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-info-icon {
  width: 38px; height: 38px;
  background: rgba(201,164,42,.18);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item .info-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.45); margin-bottom: .1rem; }
.contact-info-item .info-value { font-size: .92rem; color: rgba(255,255,255,.9); }
.contact-info-item .info-value a { color: var(--gold); }
.alert-success-atg {
  background: var(--teal-pale);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  padding: 1rem 1.4rem;
  font-weight: 500;
}
.alert-error-atg {
  background: #fdeaea;
  border: 1.5px solid #e05050;
  border-radius: var(--radius);
  color: #c03030;
  padding: 1rem 1.4rem;
  font-weight: 500;
}

/* ── CTA section ─────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,164,42,.1) 0%, transparent 40%),
                    radial-gradient(circle at 80% 50%, rgba(201,164,42,.08) 0%, transparent 40%);
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); position: relative; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.05rem; position: relative; max-width: 580px; margin: 0 auto 2rem; }

/* ── Testimonial / quote pull ────────────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.6rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.atg-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}
.atg-footer .footer-brand { margin-bottom: 1.2rem; }
.atg-footer .footer-desc { font-size: .875rem; max-width: 280px; margin-bottom: 1.5rem; }
.atg-footer .footer-social { display: flex; gap: 10px; }
.atg-footer .social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.atg-footer .social-link:hover { background: var(--gold); color: var(--navy-dark); }
.atg-footer h6 {
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.atg-footer ul { list-style: none; padding: 0; margin: 0; }
.atg-footer ul li { margin-bottom: .55rem; }
.atg-footer ul li a {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  transition: color var(--transition);
  text-decoration: none;
}
.atg-footer ul li a:hover { color: var(--gold); }
.atg-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 3rem;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
}
.atg-footer .footer-bottom p { font-size: .8rem; margin: 0; color: rgba(255,255,255,.4); }
.atg-footer .footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.atg-footer .footer-legal a { font-size: .78rem; color: rgba(255,255,255,.4); }
.atg-footer .footer-legal a:hover { color: var(--gold); }
.atg-footer .footer-divider { width: 1px; height: 14px; background: rgba(255,255,255,.15); }

/* ── Legal pages ─────────────────────────────────────────────────── */
.legal-content h2 { font-size: 1.4rem; color: var(--navy); margin-top: 2rem; margin-bottom: .6rem; }
.legal-content h3 { font-size: 1.1rem; color: var(--teal); margin-top: 1.5rem; margin-bottom: .4rem; }
.legal-content p, .legal-content li { font-size: .92rem; }
.legal-content ul { padding-left: 1.4rem; }
.legal-content .legal-header { background: var(--light-grey); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem; }
.legal-content .legal-header .company-info { font-size: .88rem; line-height: 1.9; }

/* ── Responsive tweaks ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 4rem 0; }
  .hero-image-col { margin-top: 2.5rem; }
  .hero-main-image { width: 70%; max-width: 320px; }
  .stats-bar .stat-divider { display: none; }
  .atg-navbar .nav-link { padding: .7rem 1rem !important; border-bottom: none; }
  .atg-navbar .btn-contact-nav { margin: .5rem 0 .5rem 1rem; }
}
@media (max-width: 575.98px) {
  .section { padding: 3rem 0; }
  .contact-form-wrap { padding: 1.5rem; }
  .hero-main-image { width: 86%; max-width: 280px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-atg { width: 100%; justify-content: center; }
  .callout-box { padding: 1rem; }
  .step-card { flex-direction: column; }
}

/* ── Utility ─────────────────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.text-teal { color: var(--teal) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-navy-dark { background: var(--navy-dark) !important; }
.bg-gold { background: var(--gold) !important; }
.bg-off { background: var(--off-white) !important; }
.border-gold { border-color: var(--gold) !important; }
.fw-600 { font-weight: 600; }
.font-display { font-family: var(--font-display); }
.ls-1 { letter-spacing: 1px; }

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
