/* ============================================
   Amazing HR — Brand Stylesheet
   amazinghr.org | inspire@amazinghr.org
   Navy #1B2B6B | Teal #0EA5E9 | Blue #3B82F6
   ============================================ */

:root {
  --ahr-navy:       #1B2B6B;
  --ahr-navy-dark:  #132050;
  --ahr-navy-light: #2D3F8C;
  --ahr-teal:       #0EA5E9;
  --ahr-blue:       #3B82F6;
  --ahr-text:       #1E293B;
  --ahr-muted:      #64748B;
  --ahr-bg:         #F8FAFC;
  --ahr-border:     #E2E8F0;
  --ahr-shadow:     0 4px 24px rgba(27,43,107,0.08);
  --ahr-shadow-lg:  0 8px 40px rgba(27,43,107,0.16);
  --transition:     all 0.3s ease;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ahr-text);
  font-size: 0.95rem;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--ahr-navy);
  line-height: 1.3;
}

a { transition: var(--transition); }

/* ---- Navbar ---- */
.ahr-navbar {
  background-color: #ffffff !important;
  border-bottom: 1px solid #E8EDF5;
  padding: 0.75rem 0;
  box-shadow: 0 1px 10px rgba(27,43,107,0.07);
  transition: var(--transition);
}
.ahr-navbar.scrolled {
  padding: 0.45rem 0;
  box-shadow: 0 3px 20px rgba(27,43,107,0.12);
}
.brand-name {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ahr-navy);
  letter-spacing: -0.2px;
  font-style: normal;
  line-height: 1;
}
.brand-tagline {
  display: block;
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--ahr-muted);
  padding: 0;
  border-radius: 0;
  margin-top: 3px;
}
.ahr-navbar .nav-link {
  color: var(--ahr-text) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem !important;
  letter-spacing: 0.2px;
  transition: var(--transition);
}
.ahr-navbar .nav-link:hover { color: var(--ahr-navy) !important; }
.ahr-navbar .nav-link.active {
  color: var(--ahr-navy) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--ahr-teal);
}
.ahr-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%2827%2C 43%2C 107%2C 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-nav-cta {
  background: var(--ahr-navy);
  color: #fff;
  border: 1.5px solid var(--ahr-navy);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}
.btn-nav-cta:hover {
  background: var(--ahr-navy-dark);
  border-color: var(--ahr-navy-dark);
  color: #fff;
}

/* ---- Buttons ---- */
.btn-ahr {
  font-weight: 600;
  padding: 0.7rem 1.85rem;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-ahr-primary {
  background: var(--ahr-navy);
  color: #fff;
  border-color: var(--ahr-navy);
}
.btn-ahr-primary:hover {
  background: var(--ahr-navy-dark);
  border-color: var(--ahr-navy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27,43,107,0.3);
}
.btn-ahr-teal {
  background: var(--ahr-teal);
  color: #fff;
  border-color: var(--ahr-teal);
}
.btn-ahr-teal:hover {
  background: #0284C7;
  border-color: #0284C7;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14,165,233,0.35);
}
.btn-ahr-outline {
  background: transparent;
  color: var(--ahr-navy);
  border-color: var(--ahr-navy);
}
.btn-ahr-outline:hover {
  background: var(--ahr-navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ahr-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ahr-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ---- Hero Home ---- */
.hero-home {
  min-height: 100vh;
  background-color: #1a3554;
  background-image:
    radial-gradient(ellipse at 20% 65%, rgba(14,165,233,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(59,130,246,0.13) 0%, transparent 50%),
    radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to bottom right, transparent 49.5%, #fff 50%);
}
.hero-badge {
  display: inline-block;
  background: rgba(14,165,233,0.15);
  color: #7DD3FC;
  border: 1px solid rgba(14,165,233,0.3);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--ahr-teal); }
.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 2.75rem;
  line-height: 1.85;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background-color: var(--ahr-navy);
  background-image:
    radial-gradient(ellipse at 8% 60%, rgba(14,165,233,0.09) 0%, transparent 50%),
    radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 55px;
  background: linear-gradient(to bottom right, transparent 49.5%, #fff 50%);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 600px;
}
.page-hero.bg-light-alt::after {
  background: linear-gradient(to bottom right, transparent 49.5%, var(--ahr-bg) 50%);
}
.breadcrumb-ahr { background: transparent; padding: 0; margin-bottom: 1rem; }
.breadcrumb-ahr .breadcrumb-item { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.breadcrumb-ahr .breadcrumb-item.active { color: var(--ahr-teal); }
.breadcrumb-ahr .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ---- Stats Bar ---- */
.stats-bar {
  background: #fff;
  box-shadow: var(--ahr-shadow);
  padding: 2.25rem 0;
  position: relative;
  z-index: 10;
}
.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
  border-right: 1px solid var(--ahr-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ahr-navy);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.73rem;
  color: var(--ahr-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 0.4rem;
  display: block;
}

/* ---- Sections ---- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 65px 0; }
.section-bg { background-color: var(--ahr-bg); }
.section-navy { background-color: var(--ahr-navy); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ahr-teal);
  display: block;
  margin-bottom: 0.65rem;
}
.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--ahr-navy);
  margin-bottom: 1rem;
}
.section-title-light { color: #fff !important; }
.section-divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(to right, var(--ahr-teal), var(--ahr-blue));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.section-lead {
  color: var(--ahr-muted);
  font-size: 1.05rem;
  max-width: 650px;
  line-height: 1.85;
}

/* ---- Service Cards (home) ---- */
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--ahr-border);
  border-top: 4px solid var(--ahr-navy);
  box-shadow: var(--ahr-shadow);
  transition: var(--transition);
  height: 100%;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  border-top-color: var(--ahr-teal);
  transform: translateY(-5px);
  box-shadow: var(--ahr-shadow-lg);
  color: inherit;
}
.service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--ahr-navy), var(--ahr-navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: #fff;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--ahr-teal), var(--ahr-blue));
}
.service-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ahr-navy);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--ahr-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.service-card .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ahr-teal);
  text-decoration: none;
}
.service-card .card-link i { transition: var(--transition); }
.service-card:hover .card-link i { transform: translateX(4px); }

/* ---- Value Cards ---- */
.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: var(--ahr-shadow);
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--ahr-border);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ahr-shadow-lg);
}
.value-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #fff;
}
.vi-navy  { background: linear-gradient(135deg, var(--ahr-navy), var(--ahr-navy-light)); }
.vi-teal  { background: linear-gradient(135deg, var(--ahr-teal), #0369A1); }
.vi-blue  { background: linear-gradient(135deg, var(--ahr-blue), #1D4ED8); }
.value-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ahr-navy);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--ahr-muted);
  line-height: 1.8;
  margin: 0;
}

/* ---- Policy Cards (navy bg) ---- */
.policy-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.policy-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}
.policy-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ahr-teal);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}
.policy-card h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.policy-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}

/* ---- Team Cards ---- */
.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--ahr-border);
  box-shadow: var(--ahr-shadow);
  transition: var(--transition);
  height: 100%;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ahr-shadow-lg);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.25rem;
  font-style: italic;
}
.av-navy { background: linear-gradient(135deg, var(--ahr-navy), var(--ahr-navy-light)); }
.av-teal { background: linear-gradient(135deg, var(--ahr-teal), #0369A1); }
.av-blue { background: linear-gradient(135deg, var(--ahr-blue), #1D4ED8); }
.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ahr-teal);
  margin-bottom: 0.2rem;
}
.team-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ahr-navy);
  margin-bottom: 0.75rem;
}
.team-quote {
  font-size: 0.85rem;
  color: var(--ahr-muted);
  font-style: italic;
  line-height: 1.75;
  border-left: 3px solid var(--ahr-teal);
  padding-left: 1rem;
  text-align: left;
  margin-top: 1rem;
}

/* ---- Testimonial Cards ---- */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--ahr-border);
  box-shadow: var(--ahr-shadow);
  position: relative;
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ahr-shadow-lg);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0; left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--ahr-teal);
  font-weight: 900;
  opacity: 0.25;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--ahr-muted);
  font-style: italic;
  line-height: 1.85;
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.testimonial-author { font-weight: 700; color: var(--ahr-navy); font-size: 0.9rem; }
.testimonial-company { font-size: 0.78rem; color: var(--ahr-muted); }
.stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 0.75rem; }

/* ---- Insight / Blog Cards ---- */
.insight-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--ahr-border);
  overflow: hidden;
  box-shadow: var(--ahr-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ahr-shadow-lg);
}
.insight-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
}
.insight-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.insight-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ahr-teal);
  margin-bottom: 0.5rem;
}
.insight-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ahr-navy);
  margin-bottom: 0.65rem;
  line-height: 1.45;
}
.insight-excerpt {
  font-size: 0.84rem;
  color: var(--ahr-muted);
  line-height: 1.75;
  flex: 1;
}
.insight-meta {
  font-size: 0.76rem;
  color: var(--ahr-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ahr-border);
}

/* ---- Services Detail Page ---- */
.service-section-detail { padding: 80px 0; }
.service-section-detail:nth-child(even) { background-color: var(--ahr-bg); }
.svc-big-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.svc-sub {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--ahr-border);
}
.svc-sub:last-child { border-bottom: none; }
.svc-sub .check { color: var(--ahr-teal); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.svc-sub span { font-size: 0.9rem; color: var(--ahr-text); }
.svc-quote {
  background: rgba(14,165,233,0.05);
  border-left: 4px solid var(--ahr-teal);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}
.svc-quote p {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ahr-muted);
  margin-bottom: 0.5rem;
}
.svc-quote cite {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ahr-navy);
  font-style: normal;
}
.svc-nav-pill a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  background: var(--ahr-bg);
  border: 1px solid var(--ahr-border);
  color: var(--ahr-navy);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
}
.svc-nav-pill a:hover {
  background: var(--ahr-navy);
  color: #fff;
  border-color: var(--ahr-navy);
}

/* ---- Office Cards ---- */
.office-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid var(--ahr-border);
  border-top: 4px solid var(--ahr-navy);
  box-shadow: var(--ahr-shadow);
  height: 100%;
  transition: var(--transition);
}
.office-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ahr-shadow-lg);
  border-top-color: var(--ahr-teal);
}
.office-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ahr-teal);
  margin-bottom: 0.5rem;
}

/* ---- Contact Form ---- */
.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--ahr-border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--ahr-text);
  transition: var(--transition);
  background: #fff;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--ahr-teal);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.14);
  outline: none;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--ahr-navy);
  margin-bottom: 0.4rem;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--ahr-navy) 0%, var(--ahr-navy-light) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(14,165,233,0.1) 0%, transparent 60%);
}
.cta-section > * { position: relative; z-index: 1; }

/* ---- About Page ---- */
.about-highlight-box {
  background: var(--ahr-navy);
  border-radius: 12px;
  padding: 2.5rem;
  color: #fff;
}
.about-highlight-box .stat { font-size: 3rem; font-weight: 900; color: var(--ahr-teal); line-height: 1; }
.about-highlight-box .stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }

.mission-card, .vision-card {
  border-radius: 12px;
  padding: 2.25rem;
  height: 100%;
}
.mission-card {
  background: var(--ahr-navy);
  color: #fff;
}
.mission-card h4 { color: var(--ahr-teal); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.mission-card p { color: rgba(255,255,255,0.8); line-height: 1.85; margin: 0; }
.vision-card {
  background: var(--ahr-bg);
  border: 1px solid var(--ahr-border);
}
.vision-card h4 { color: var(--ahr-navy); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.vision-card p { color: var(--ahr-muted); line-height: 1.85; margin: 0; }

/* ---- Leadership Detail ---- */
.leader-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid var(--ahr-border);
  box-shadow: var(--ahr-shadow);
  transition: var(--transition);
}
.leader-card:hover { box-shadow: var(--ahr-shadow-lg); }
.leader-avatar-lg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
}
.leader-quote {
  background: var(--ahr-bg);
  border-left: 4px solid var(--ahr-teal);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--ahr-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  position: relative;
}
.leader-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--ahr-teal);
  opacity: 0.3;
  position: absolute;
  top: -8px;
  left: 12px;
  line-height: 1;
  font-style: normal;
}

/* ---- Footer ---- */
.ahr-footer { background-color: #0F1A42; color: rgba(255,255,255,0.65); }
.footer-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.86rem;
  display: block;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--ahr-teal);
  padding-left: 5px;
}
.footer-head {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.1rem;
}

/* ---- Utils ---- */
.text-ahr-navy  { color: var(--ahr-navy)  !important; }
.text-ahr-teal  { color: var(--ahr-teal)  !important; }
.text-ahr-muted { color: var(--ahr-muted) !important; }
.bg-ahr-navy    { background-color: var(--ahr-navy) !important; }
.bg-ahr-bg      { background-color: var(--ahr-bg)   !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

/* ---- Fade-in ---- */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .ahr-navbar .nav-link.active { border-bottom: none; color: var(--ahr-teal) !important; }
}
@media (max-width: 767px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--ahr-border); }
  .stat-item:last-child { border-bottom: none; }
  .hero-home::after, .page-hero::after { display: none; }
  .hero-home { padding-bottom: 60px; }
  .section-pad { padding: 65px 0; }
}
