/* ============================================================
   ETS MANAL PARTNERS — Main Stylesheet

   HOW TO EDIT:
   - Colours are defined at the top under :root
   - Change --navy, --gold etc. to update the whole site
   - Each section is labelled with a comment
   ============================================================ */

/* Fonts are loaded in the HTML <head> for better performance */

/* ── COLOUR & FONT VARIABLES ─────────────────────────────── */
/*
  COLOURS — edit these hex values to change the whole site.
  --navy      = dark blue-grey (main colour)
  --gold      = warm gold (accent colour)
  --grey-50   = lightest grey (section backgrounds)
  --grey-200  = border colour
  --grey-600  = body text colour
*/
:root {
  --navy:        #1B2B3A;
  --navy-deep:   #111D27;
  --navy-mid:    #243649;
  --gold:        #C07D2B;
  --gold-light:  #D4943E;
  --gold-pale:   #FAF0DF;
  --white:       #FFFFFF;
  --grey-50:     #F4F6F8;
  --grey-100:    #EEF1F4;
  --grey-200:    #DDE1E6;
  --grey-400:    #8A9BB0;
  --grey-600:    #6B7A8B;
  --cmr-green:   #007A5E;
  --cmr-red:     #CE1126;
  --cmr-yellow:  #FCD116;
  --font-display: 'Syne', 'Segoe UI', Arial, sans-serif;
  --font-body:    'DM Sans', 'Segoe UI', Arial, sans-serif;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --max-w:       1140px;
  --section-py:  88px;
  --nav-h:       68px;
}

/* ── RESET ───────────────────────────────────────────────── */
/* Remove default browser spacing */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }
p  { font-size: 0.975rem; color: var(--grey-600); line-height: 1.8; }

/* The small label that appears above section titles */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
/* Centred eyebrow (remove the left line) */
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }

/* Gold underline decoration */
.gold-line { width: 44px; height: 3px; background: var(--gold); border-radius: 3px; margin: 14px 0 22px; }
.gold-line-center { margin: 14px auto 22px; }

/* ── LAYOUT ──────────────────────────────────────────────── */
/* Centres content and limits max width */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 36px; }
/* Section spacing */
.section     { padding: var(--section-py) 0; }
.section-alt { background: var(--grey-50); }  /* Light grey background */
.section-dark{ background: var(--navy); }      /* Dark navy background */
/* Centre-align a section header */
.section-header-center { text-align: center; }
.section-header-center p { margin: 12px auto 0; max-width: 560px; }

/* Subtle dot pattern on backgrounds */
.pattern-dots { position: relative; }
.pattern-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27,43,58,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.pattern-dots > * { position: relative; z-index: 1; }

/* ── CAMEROON FLAG STRIPE ─────────────────────────────────── */
/* The 3-colour stripe at top of About page */
.cmr-stripe {
  height: 4px;
  background: linear-gradient(
    to right,
    var(--cmr-green)  33.33%,
    var(--cmr-red)    33.33% 66.66%,
    var(--cmr-yellow) 66.66%
  );
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: sticky;       /* Stays at top when scrolling */
  top: 0;
  z-index: 100;
  background: #1B2B3A;    /* Fallback if CSS variables fail */
  background: var(--navy);
  height: 68px;           /* Fallback */
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.28); }
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Logo area */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-wordmark { line-height: 1.1; }
.nav-wordmark .ets      { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.16em; color: rgba(255,255,255,0.38); }
.nav-wordmark .manal    { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.05em; color: var(--white); font-family: var(--font-display); line-height: 1; }
.nav-wordmark .partners { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.22em; color: var(--gold); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; position: relative; padding-bottom: 4px; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width 0.25s; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* FR / EN language switcher button */
.nav-lang {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  transition: all 0.2s;
  cursor: pointer;
}
.nav-lang:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* Mobile hamburger icon — hidden on desktop */
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; display: block; }

/* ── BREADCRUMB (back navigation on inner pages) ─────────── */
.breadcrumb { background: var(--navy-deep); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; }
.breadcrumb-back { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb-back:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.breadcrumb-current { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.22s;
  cursor: pointer;
}
/* Gold filled button - main CTA */
.btn-primary { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,125,43,0.35); }
/* White outline on dark backgrounds */
.btn-outline-w { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-w:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.07); transform: translateY(-1px); }
/* Navy outline on light backgrounds */
.btn-outline-n { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-n:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
/* White filled (used on gold backgrounds) */
.btn-white { background: var(--white); color: var(--gold); border: 2px solid var(--white); font-weight: 700; }
.btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); }
/* Smaller button size */
.btn-sm { padding: 8px 16px; font-size: 0.825rem; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: 0 8px 32px rgba(27,43,58,0.11); transform: translateY(-3px); border-color: rgba(192,125,43,0.28); }
/* Icon container at top of card */
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(192,125,43,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
/* Dark card variant (used on navy sections) */
.card-dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.09); }
.card-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(192,125,43,0.3); transform: translateY(-3px); }

/* ── BADGES (small labels on cards) ─────────────────────── */
.badge { display: inline-block; font-size: 0.68rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-gold  { background: var(--gold-pale); color: #7A5018; }
.badge-navy  { background: var(--grey-100);  color: var(--navy); }
.badge-green { background: #E6F4EC; color: #1A5C32; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.825rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(192,125,43,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── TRUST BAR (scrolling ticker) ────────────────────────── */
.trust-bar { background: var(--navy-deep); padding: 11px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.trust-bar-inner { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.trust-bar-inner:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-item { display: flex; align-items: center; gap: 9px; padding: 0 32px; white-space: nowrap; }
.trust-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.trust-name { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.5); }

/* ── REFERENCE BOX (highlighted quote/callout) ───────────── */
.reference-box {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--gold-pale);
  border: 1px solid rgba(192,125,43,0.22);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin-top: 36px;
}
.reference-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.reference-text { font-size: 0.9rem; font-weight: 500; color: #5A3A0A; line-height: 1.65; }
.reference-sub  { font-size: 0.75rem; color: #9A6A2A; margin-top: 5px; }

/* ── INDUSTRY CARDS ──────────────────────────────────────── */
.industry-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.industry-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(192,125,43,0.12); transform: translateY(-2px); }
.industry-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(192,125,43,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.industry-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* ── PAGE HEADER (dark banner at top of inner pages) ─────── */
.page-header {
  background: var(--navy);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}
/* Decorative circles in page header */
.page-header::after  { content: ''; position: absolute; right: -60px;  bottom: -60px; width: 320px; height: 320px; border-radius: 50%; border: 60px solid rgba(192,125,43,0.07); pointer-events: none; }
.page-header::before { content: ''; position: absolute; right:  80px;  top:   -80px; width: 200px; height: 200px; border-radius: 50%; border: 40px solid rgba(192,125,43,0.05); pointer-events: none; }
.page-header h1 { color: var(--white); }
.page-header p  { color: rgba(255,255,255,0.58); margin-top: 14px; max-width: 580px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--navy-deep); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand-desc { font-size: 0.825rem; color: rgba(255,255,255,0.38); line-height: 1.8; margin-top: 16px; }
.footer-col-title  { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 16px; }
.footer-link       { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.52); margin-bottom: 11px; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }
.footer-link.gold  { color: var(--gold); }
.footer-link.gold:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy, .footer-rccm { font-size: 0.73rem; color: rgba(255,255,255,0.25); }

/* ── WHATSAPP FLOATING BUTTON ────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── CSS GRID HELPERS ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ── SPACING HELPERS ─────────────────────────────────────── */
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }

/* ── SCROLL REVEAL ANIMATION ─────────────────────────────── */
/* Elements fade in when you scroll to them */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── HERO SECTION ────────────────────────────────────────── */
.hero { background: #1B2B3A; background: var(--navy); position: relative; overflow: hidden; }
.hero-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-bg-c1 { width: 500px; height: 500px; right: -120px; top: -140px; border: 80px solid rgba(192,125,43,0.06); }
.hero-bg-c2 { width: 280px; height: 280px; left: -60px; bottom: -80px; border: 50px solid rgba(255,255,255,0.03); }
.hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; padding: 80px 0 72px; position: relative; z-index: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,125,43,0.14); border: 1px solid rgba(192,125,43,0.28); border-radius: 20px; padding: 5px 14px; margin-bottom: 20px; }
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero-tag-text { font-size: 0.72rem; font-weight: 600; color: var(--gold); letter-spacing: 0.07em; }
.hero h1       { color: var(--white); margin-bottom: 6px; }
.hero h1 .accent { color: var(--gold); display: block; }
.hero-sub { color: rgba(255,255,255,0.62); margin: 18px 0 32px; font-size: 1rem; max-width: 500px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-wa { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: rgba(255,255,255,0.42); margin-top: 14px; transition: color 0.2s; }
.hero-wa:hover { color: #25D366; }
.hero-right { display: flex; flex-direction: column; gap: 14px; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-stat-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); padding: 18px 16px; transition: background 0.2s; }
.hero-stat-box:hover { background: rgba(255,255,255,0.09); }
.hero-stat-num  { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-desc { font-size: 0.72rem; color: rgba(255,255,255,0.42); margin-top: 4px; }
.hero-pad-ref   { background: rgba(192,125,43,0.12); border: 1px solid rgba(192,125,43,0.22); border-radius: var(--radius-lg); padding: 16px; display: flex; align-items: center; gap: 12px; }
.hero-pad-dot   { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-pad-text  { font-size: 0.8rem; color: var(--gold); font-weight: 500; line-height: 1.45; }

/* ── CAROUSEL ────────────────────────────────────────────── */
.carousel-section { background: var(--grey-50); padding: 72px 0; }
.carousel-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.carousel-info-col { padding-top: 16px; }
.mp-carousel { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: var(--navy); }
.mp-track { display: flex; width: 100%; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.mp-slide { min-width: 100%; width: 100%; position: relative; flex-shrink: 0; }
.mp-slide img { width: 100%; height: 380px; object-fit: cover; display: block; }
.mp-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px 22px; background: linear-gradient(to top, rgba(17,29,39,0.92) 0%, transparent 100%); }
.mp-caption-tag   { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.mp-caption-title { font-size: 1.1rem; font-weight: 800; color: #fff; font-family: var(--font-display); line-height: 1.2; }
.mp-caption-sub   { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 5px; }
.mp-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; background: rgba(17,29,39,0.6); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: background 0.2s; }
.mp-arrow:hover { background: rgba(192,125,43,0.8); }
.mp-arrow-prev { left: 12px; }
.mp-arrow-next { right: 12px; }
.mp-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.mp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-200); border: none; cursor: pointer; padding: 0; transition: all 0.25s; }
.mp-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.mp-thumbs { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mp-thumb { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--radius-md); border: 1.5px solid var(--grey-200); cursor: pointer; transition: all 0.2s; background: var(--white); }
.mp-thumb.active { border-color: var(--gold); background: var(--gold-pale); }
.mp-thumb-num { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; color: var(--grey-400); min-width: 22px; }
.mp-thumb.active .mp-thumb-num { color: var(--gold); }
.mp-thumb-body { flex: 1; }
.mp-thumb-label { font-size: 0.85rem; font-weight: 600; color: var(--grey-600); margin-bottom: 6px; }
.mp-thumb.active .mp-thumb-label { color: var(--navy); }
.mp-thumb-bar  { height: 2px; background: var(--grey-200); border-radius: 2px; overflow: hidden; }
.mp-thumb-fill { height: 100%; width: 0; background: var(--gold); border-radius: 2px; }
.mp-thumb.active .mp-thumb-fill { animation: fillBar 4.5s linear forwards; }
@keyframes fillBar { from { width: 0; } to { width: 100%; } }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.service-card .badge { margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p  { margin-bottom: 18px; font-size: 0.875rem; }
.service-link { font-size: 0.825rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.service-link:hover { gap: 9px; }

/* ── WHY US PILLARS ──────────────────────────────────────── */
.pillars-wrap { background: var(--navy); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.pillars-wrap::before { content:''; position:absolute; right:-100px; top:-100px; width:400px; height:400px; border-radius:50%; border:70px solid rgba(192,125,43,0.05); pointer-events:none; }
.pillar-card { border-radius: var(--radius-lg); padding: 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: background 0.22s, border-color 0.22s, transform 0.22s; }
.pillar-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(192,125,43,0.3); transform: translateY(-3px); }
.pillar-num   { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: rgba(192,125,43,0.28); line-height: 1; margin-bottom: 12px; }
.pillar-title { font-size: 0.975rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pillar-desc  { font-size: 0.825rem; color: rgba(255,255,255,0.48); line-height: 1.7; }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; margin-top: 52px; }
.process-step { padding: 28px 22px; border-right: 1px solid rgba(255,255,255,0.08); transition: background 0.2s; }
.process-step:hover { background: rgba(255,255,255,0.04); }
.process-step:last-child { border-right: none; }
.step-num   { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: rgba(192,125,43,0.25); line-height: 1; margin-bottom: 10px; }
.step-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-desc  { font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 1.65; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band { background: var(--gold); padding: 56px 0; position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; right:-80px; top:-80px; width:300px; height:300px; border-radius:50%; border:60px solid rgba(255,255,255,0.08); pointer-events:none; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p  { color: rgba(255,255,255,0.75); margin-top: 6px; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.svc-block { padding: 80px 0; border-bottom: 1px solid var(--grey-200); }
.svc-block:last-of-type { border-bottom: none; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.svc-grid.flip { direction: rtl; }   /* Flip layout on alternating blocks */
.svc-grid.flip > * { direction: ltr; }
.svc-visual { border-radius: var(--radius-xl); overflow: hidden; }
.svc-visual-grey { background: var(--grey-50); border: 1px solid var(--grey-200); }
.svc-visual-navy { background: var(--navy); }
.svc-visual-inner { padding: 28px; }
.product-tag { display: inline-block; border-radius: var(--radius-sm); padding: 7px 13px; font-size: 0.8rem; font-weight: 500; margin: 4px; }
.tag-gold { background: var(--gold-pale); color: #7A5018; border: 1px solid rgba(192,125,43,0.2); }
.tag-navy { background: var(--grey-100);  color: var(--navy); border: 1px solid var(--grey-200); }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; font-size: 0.875rem; color: var(--grey-600); }
.feature-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(192,125,43,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.step-num-badge { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--white); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-family: var(--font-display); }
.step-text strong { color: #ffffff; font-weight: 700; display: block; margin-bottom: 3px; }
.step-text span   { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; display: block; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.scope-item { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-md); padding: 16px; transition: border-color 0.2s; }
.scope-item:hover { border-color: var(--gold); }
.scope-title { font-size: 0.83rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.scope-desc  { font-size: 0.76rem; color: var(--grey-400); line-height: 1.5; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cmr-pride-block { background: var(--navy); border-radius: var(--radius-xl); padding: 36px; position: relative; overflow: hidden; }
.cmr-pride-block::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(to right, var(--cmr-green) 33.33%, var(--cmr-red) 33.33% 66.66%, var(--cmr-yellow) 66.66%); }
.cmr-flag-pills { display: flex; gap: 8px; margin: 20px 0 16px; flex-wrap: wrap; }
.cmr-pill { display: inline-flex; align-items: center; gap: 7px; border-radius: 20px; padding: 6px 14px; font-size: 0.78rem; font-weight: 600; }
.cmr-pill-g { background: rgba(0,122,94,0.2);   border: 1px solid rgba(0,122,94,0.35);   color: #5DCAA5; }
.cmr-pill-r { background: rgba(206,17,38,0.18);  border: 1px solid rgba(206,17,38,0.3);   color: #F09595; }
.cmr-pill-y { background: rgba(252,209,22,0.18); border: 1px solid rgba(252,209,22,0.3);  color: #FCD116; }
.cmr-pill-dot { width: 7px; height: 7px; border-radius: 50%; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.exp-tag { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 6px 14px; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--grey-200); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); overflow: hidden; }
.stat-box { background: var(--white); padding: 28px 16px; text-align: center; transition: background 0.2s; }
.stat-box:hover { background: var(--gold-pale); }
.stat-num   { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.73rem; color: var(--grey-400); margin-top: 7px; }
.value-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 24px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.value-card:hover { box-shadow: 0 6px 24px rgba(27,43,58,0.1); transform: translateY(-2px); border-color: rgba(192,125,43,0.25); }
.value-num   { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: rgba(192,125,43,0.25); margin-bottom: 10px; line-height: 1; }
.value-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.value-desc  { font-size: 0.83rem; color: var(--grey-600); line-height: 1.7; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content:''; position:absolute; left:7px; top:8px; bottom:8px; width:2px; background:var(--grey-200); }
.timeline-item { position: relative; margin-bottom: 24px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -28px; top: 4px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--gold); background: var(--white); }
.timeline-item.active .timeline-dot { background: var(--gold); }
.timeline-year { font-size: 0.68rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 3px; }
.timeline-text { font-size: 0.875rem; color: var(--navy); font-weight: 500; }
.timeline-sub  { font-size: 0.78rem; color: var(--grey-400); margin-top: 2px; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-xl); padding: 36px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn { width: 100%; background: var(--navy); color: var(--white); border: none; border-radius: var(--radius-sm); padding: 14px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 6px; }
.submit-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }
.info-card { background: var(--navy); border-radius: var(--radius-xl); padding: 36px; position: relative; overflow: hidden; }
.info-card::before { content:''; position:absolute; right:-40px; bottom:-40px; width:200px; height:200px; border-radius:50%; border:40px solid rgba(192,125,43,0.07); pointer-events:none; }
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; position: relative; z-index: 1; }
.info-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.info-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.info-value { font-size: 0.9rem; color: var(--white); line-height: 1.6; }
.info-value a { color: var(--gold); }
.wa-box { display: flex; align-items: center; gap: 12px; background: #E8F8EE; border: 1px solid #B7E4C7; border-radius: var(--radius-md); padding: 16px 18px; margin-top: 20px; }
.wa-box-text { font-size: 0.85rem; color: #1A5C32; line-height: 1.5; }
.wa-box-link { font-weight: 700; color: #25D366; }
.note-box { background: var(--gold-pale); border-radius: var(--radius-md); padding: 14px 18px; margin-top: 16px; display: flex; gap: 10px; align-items: flex-start; }
.note-text { font-size: 0.82rem; color: #7A5018; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   Breakpoints: 960px = tablet, 600px = mobile
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  :root { --section-py: 64px; }

  /* Stack hero vertically */
  .hero-inner { grid-template-columns: 1fr; padding: 56px 0 48px; }
  .hero-right  { display: grid; grid-template-columns: repeat(2, 1fr); }
  .hero-stat-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-pad-ref { grid-column: 1 / -1; }

  /* Stack carousel vertically */
  .carousel-wrap { grid-template-columns: 1fr; }

  /* Stack process steps 2x2 */
  .process-row { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }

  /* Stack services grid 2 columns */
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Stack services page layout */
  .svc-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid.flip { direction: ltr; }

  /* Stack about page layout */
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .stat-row { grid-template-columns: 1fr 1fr; }

  /* Stack contact layout */
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Hide desktop nav, show hamburger */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-deep);
    padding: 16px 24px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 99;
  }
  .nav-mobile-toggle { display: flex; }
  .nav { position: relative; }
}

@media (max-width: 600px) {
  :root { --section-py: 52px; }
  .container { padding: 0 20px; }

  /* Single column on mobile */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .scope-grid  { grid-template-columns: 1fr; }

  /* Stack hero stats */
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-right { grid-template-columns: 1fr; }

  /* Stack process single column */
  .process-row { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .process-step:first-child { border-top: none; }

  /* Smaller carousel image on mobile */
  .mp-slide img { height: 260px; }

  /* Values grid single column */
  .values-grid { grid-template-columns: 1fr; }
}
