/* ══════════════════════════════════════════════════
   ILCOH — Design System v2.0
   TrueHelp Layout · ILCOH Brand Palette
   Navy #003d8f · Blue #0060c0 · Sky #0096bb
   Teal #1a9e78 · Amber #d99a18
   ══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:     #003d8f;
  --blue:     #0060c0;
  --sky:      #0096bb;
  --teal:     #1a9e78;
  --amber:    #d99a18;
  --amber-lt: #f5c842;
  --dark:     #0b1f3a;
  --text:     #554d5e;
  --text-lt:  #7a8fa8;
  --border:   #d8e6f0;
  --bg-soft:  #eef4fb;
  --white:    #ffffff;
  --nav-h:    82px;
  --r:        12px;
  --r-lg:     20px;
  --r-xl:     32px;
  --shadow:   0 4px 24px rgba(0,61,143,.10);
  --shadow-lg:0 12px 48px rgba(0,61,143,.16);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-space { padding: 100px 0; }
.section-space-top { padding-top: 100px; }
.section-space-bottom { padding-bottom: 100px; }
h1,h2,h3,h4,h5 {
  font-family: 'Geologica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ── TAGS & LABELS ── */
.sec-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,96,192,.08); border: 1px solid rgba(0,96,192,.2);
  color: var(--blue); padding: .3rem .9rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.sec-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sky); }
.sec-tag.amber  { background: rgba(217,154,24,.1);  border-color: rgba(217,154,24,.3);  color: #a07010; }
.sec-tag.amber::before  { background: var(--amber); }
.sec-tag.teal   { background: rgba(26,158,120,.1);  border-color: rgba(26,158,120,.3);  color: var(--teal); }
.sec-tag.teal::before   { background: var(--teal); }
.sec-tag.white  { background: rgba(255,255,255,.15);border-color: rgba(255,255,255,.35);color: rgba(255,255,255,.9); }
.sec-tag.white::before  { background: var(--amber-lt); }
.sec-title   { font-size: clamp(2rem,3.5vw,3rem); font-weight: 800; margin-bottom: 1rem; }
.sec-title span { color: var(--blue); }
.sec-title.white { color: #fff; }
.sec-title.white span { color: var(--amber-lt); }
.sec-subtitle { font-size: 1rem; color: var(--text-lt); line-height: 1.75; max-width: 540px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border: none; cursor: pointer; font-family: inherit;
  font-weight: 700; border-radius: 50px;
  transition: all .25s; text-decoration: none; font-size: .9rem;
  padding: .85rem 2.2rem;
}
.btn::after { content: "→"; transition: transform .2s; }
.btn:hover::after { transform: translateX(4px); }
.btn-no-arrow::after { display: none; }
.btn-primary   { background: var(--blue);  color: #fff; }
.btn-primary:hover   { background: var(--navy); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,96,192,.35); }
.btn-amber     { background: var(--amber); color: var(--dark); }
.btn-amber:hover     { background: var(--amber-lt); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,154,24,.4); }
.btn-outline   { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover   { background: var(--blue); color: #fff; }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-sm { padding: .55rem 1.4rem; font-size: .8rem; }

/* ══════════════════════
   1. HEADER
══════════════════════ */
.main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216,230,240,.6);
  transition: box-shadow .3s;
}
.main-header.sticky { box-shadow: 0 2px 24px rgba(0,61,143,.1); }
.header-inner {
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.25rem;
}
.site-logo {
  display: flex; align-items: center; gap: .85rem;
  min-width: 210px; text-decoration: none;
}
.site-logo img { height: 48px; width: auto; flex-shrink: 0; }
.logo-text { min-width: 0; }
.logo-text strong { display: block; font-family: 'Geologica', sans-serif; font-size: .92rem; font-weight: 800; color: var(--navy); letter-spacing: .04em; line-height: 1.1; }
.logo-text span   { display: block; font-size: .62rem; color: var(--text-lt); letter-spacing: .09em; text-transform: uppercase; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.main-nav ul { display: flex; align-items: center; gap: .25rem; list-style: none; }
.main-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: .65rem 1rem; font-size: .9rem;
  font-weight: 700; color: var(--text); border-radius: 999px;
  transition: color .2s, background .2s, box-shadow .2s, transform .2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy); background: rgba(0,96,192,.08);
  box-shadow: inset 0 0 0 1px rgba(0,96,192,.08);
}
.main-nav a.active { font-weight: 800; }
.header-actions { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: .35rem;
  min-height: 40px; padding: 0 .9rem; border-radius: 999px;
  background: rgba(0,61,143,.06); border: 1px solid rgba(0,61,143,.06);
  font-size: .8rem; font-weight: 700; color: var(--navy);
}
.header-phone::before { content: '📱'; font-size: .85rem; line-height: 1; }
.mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  background: rgba(0,61,143,.06); border: 1px solid rgba(0,61,143,.08);
  cursor: pointer; padding: .6rem; border-radius: 12px;
}
.mobile-btn:hover { background: rgba(0,96,192,.08); }
.mobile-btn span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.main-header.menu-open { box-shadow: 0 10px 36px rgba(0,61,143,.14); }
.scroll-bar {
  height: 3px;
  background: linear-gradient(90deg,var(--navy),var(--blue),var(--sky),var(--teal),var(--amber));
  transform-origin: left; transform: scaleX(0);
}

/* ══════════════════════
   2. HERO
══════════════════════ */
.hero {
  background: var(--dark); padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero-bg-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 100% 20%, rgba(0,150,187,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 80%,  rgba(0,96,192,.25)  0%, transparent 55%);
}
.hero-dots {
  position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(var(--white) 1.5px, transparent 1.5px);
  background-size: 36px 36px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 3rem 0 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(217,154,24,.15); border: 1px solid rgba(217,154,24,.35);
  color: var(--amber-lt); padding: .35rem 1rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 1.6rem;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-lt); animation: pulse-dot 2s infinite; }
.hero h1 {
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2.6rem,4.5vw,5rem);
  font-weight: 900; line-height: .95;
  color: #fff; letter-spacing: -.03em; margin-bottom: 1.4rem;
}
.hero h1 .accent { display: block; color: var(--amber-lt); }
.hero h1 .light  { font-weight: 300; font-size: .6em; color: rgba(255,255,255,.7); display: block; line-height: 1.3; letter-spacing: .01em; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.68); line-height: 1.8; max-width: 480px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num  { font-family: 'Geologica', sans-serif; font-size: 2rem; font-weight: 800; color: var(--amber-lt); line-height: 1; }
.hero-stat-label{ font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }
/* Hero right card */
.hero-card {
  border-radius: var(--r-xl); overflow: visible; position: relative;
}
.hero-card-main {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(0,96,192,.5) 0%, rgba(0,150,187,.35) 50%, rgba(26,158,120,.25) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: 1rem; padding: 0; overflow: hidden; border-radius: var(--r-xl); position: relative;
}
.hero-card-main img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; border-radius: var(--r-xl);
}
.hero-card-main .hero-card-text {
  position: relative; z-index: 2; text-shadow: 0 2px 12px rgba(0,0,0,.7);
  background: linear-gradient(transparent, rgba(0,0,0,.6)); padding: 1.5rem 1.8rem 1.8rem;
  width: 100%; border-radius: 0 0 var(--r-xl) var(--r-xl); text-align: center;
}
.hero-card-logo { width: 140px; filter: drop-shadow(0 4px 20px rgba(0,0,0,.3)); position: relative; z-index: 2; }
.hero-card-text { font-family: 'Geologica', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.hero-float-1 {
  position: absolute; bottom: -1.2rem; left: -1.2rem; z-index: 3;
  background: var(--white); border-radius: var(--r); padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .9rem; min-width: 200px;
}
.hero-float-icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg,var(--sky),var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hero-float-num   { font-family: 'Geologica', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
.hero-float-lbl   { font-size: .7rem; color: var(--text-lt); }
.hero-float-2 {
  position: absolute; top: -1rem; right: -1.5rem; z-index: 3;
  background: linear-gradient(135deg,var(--amber),#e09010);
  border-radius: var(--r); padding: 1rem 1.4rem;
  box-shadow: 0 8px 30px rgba(217,154,24,.4); color: var(--dark);
}
.hero-float-2-num { font-family: 'Geologica', sans-serif; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.hero-float-2-lbl { font-size: .68rem; font-weight: 700; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }


/* ── DROPDOWN NAV ── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-arrow { font-size: .65rem; opacity: .6; transition: transform .2s; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 16px; padding: 10px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.12); border: 1px solid #e8eef3;
  min-width: 220px; opacity: 0; visibility: hidden;
  transition: opacity .2s, transform .2s;
  z-index: 100; list-style: none;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li a {
  display: block; padding: 10px 14px; margin: 0 8px; font-size: .88rem; color: #475569;
  text-decoration: none; transition: all .15s; white-space: nowrap; border-radius: 10px;
}
.dropdown li a:hover { background: #eef4ff; color: var(--navy); padding-left: 16px; }
.dropdown li:first-child a { border-radius: 10px 10px 0 0; }
.dropdown li:last-child a { border-radius: 0 0 10px 10px; }

/* Mobile dropdown */
@media (max-width: 991px) {
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; background: rgba(0,0,0,.03);
    border-radius: 8px; margin: 6px 0 6px 16px; padding: 4px 0;
  }
  .dropdown li a { font-size: .85rem; padding: 8px 16px; margin: 0 6px; }
  .dropdown li a:hover { padding-left: 18px; }
  .nav-arrow { display: inline-block; }
}

/* ── WAVE ── */
.wave { line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 100%; height: 60px; }

/* ══════════════════════
   3. ABOUT
══════════════════════ */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-box {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 50%, var(--sky) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; padding: 3rem;
}
.about-img-box img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--r-xl);
}
.about-img-box { position: relative; }
.about-img-box .about-img-quote {
  position: relative; z-index: 1; text-shadow: 0 2px 8px rgba(0,0,0,.5);
  margin-top: auto; background: linear-gradient(transparent, rgba(0,0,0,.45)); 
  padding: 1.5rem; margin: auto -3rem -3rem; width: calc(100% + 6rem);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.about-img-quote { font-size: .88rem; color: rgba(255,255,255,.8); font-style: italic; text-align: center; line-height: 1.6; }
.about-badge-top {
  position: absolute; top: 2rem; right: -1.8rem;
  background: linear-gradient(135deg,var(--amber),#e09010);
  border-radius: var(--r); padding: 1rem 1.3rem;
  box-shadow: 0 8px 24px rgba(217,154,24,.35); color: var(--dark);
}
.about-badge-top-num { font-family: 'Geologica', sans-serif; font-size: 1.7rem; font-weight: 900; line-height: 1; }
.about-badge-top-lbl { font-size: .68rem; font-weight: 700; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }
.about-badge-bot {
  position: absolute; bottom: 2.5rem; right: -1.8rem;
  background: var(--white); border-radius: var(--r);
  padding: 1.2rem 1.5rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .8rem; min-width: 190px;
}
.about-badge-icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg,var(--blue),var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.about-badge-num  { font-family: 'Geologica', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
.about-badge-lbl  { font-size: .7rem; color: var(--text-lt); }
.about-body { font-size: .98rem; line-height: 1.85; color: var(--text); margin: 1.2rem 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.8rem 0 2rem; }
.about-feat { display: flex; align-items: flex-start; gap: .7rem; padding: .8rem; background: var(--bg-soft); border-radius: var(--r); border-left: 3px solid var(--sky); }
.about-feat-icon { font-size: 1.1rem; flex-shrink: 0; }
.about-feat-text { font-size: .83rem; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* ══════════════════════
   4. PROJECTS
══════════════════════ */
.projects { background: var(--bg-soft); }
.section-header-flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.section-header-center { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.proj-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 2px 16px rgba(0,61,143,.06); transition: all .3s; }
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-img { aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.proj-card:hover .proj-img img { transform: scale(1.05); }
.proj-img-placeholder { font-size: 3rem; opacity: .5; }
.proj-cat { position: absolute; top: 1rem; left: 1rem; background: var(--amber); color: var(--dark); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .25rem .7rem; border-radius: 50px; }
.proj-body { padding: 1.6rem; }
.proj-title { font-family: 'Geologica', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: .8rem; }
.proj-bar-wrap { height: 6px; background: #e2ecf8; border-radius: 3px; overflow: hidden; margin-bottom: .6rem; }
.proj-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg,var(--blue),var(--sky)); }
.proj-amounts { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-lt); margin-bottom: 1.2rem; }
.proj-amounts strong { color: var(--dark); font-weight: 700; }
.proj-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.proj-status { font-size: .82rem; color: var(--text-lt); }
.proj-status strong { color: var(--teal); font-weight: 700; }

/* ══════════════════════
   5. GET INVOLVED
══════════════════════ */
.involved { background: var(--navy); position: relative; overflow: hidden; }
.involved::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 100% 50%,rgba(0,150,187,.2) 0%,transparent 55%); }
.involved-inner { position: relative; z-index: 1; }
.involved-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.inv-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 2.2rem; transition: all .3s; }
.inv-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); border-color: rgba(245,200,66,.4); }
.inv-icon { width: 54px; height: 54px; border-radius: var(--r); background: linear-gradient(135deg,var(--blue),var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.inv-title { font-family: 'Geologica', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .7rem; }
.inv-text  { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.75; }
.inv-link  { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-size: .82rem; font-weight: 700; color: var(--amber-lt); transition: gap .2s; }
.inv-link:hover { gap: .7rem; }
.inv-link::after { content: "→"; }

/* ══════════════════════
   6. CATEGORIES
══════════════════════ */
.categories { background: var(--white); }
.cats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.cat-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; text-align: center; transition: all .3s; position: relative; overflow: hidden; }
.cat-card::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--blue),var(--sky)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0,96,192,.2); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon { width: 62px; height: 62px; border-radius: var(--r); background: linear-gradient(135deg,rgba(0,96,192,.1),rgba(0,150,187,.1)); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 1.2rem; transition: background .3s; }
.cat-card:hover .cat-icon { background: linear-gradient(135deg,var(--blue),var(--sky)); }
.cat-title { font-family: 'Geologica', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.cat-text  { font-size: .82rem; color: var(--text-lt); line-height: 1.65; }

/* ══════════════════════
   7. COUNTERS
══════════════════════ */
.counters { background: var(--dark); padding: 80px 0; position: relative; overflow: hidden; }
.counters::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 30%,rgba(0,150,187,.12) 0%,transparent 55%); }
.counters-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; }
.counters-left p { font-size: .97rem; color: rgba(255,255,255,.65); line-height: 1.8; margin: 1.2rem 0 2rem; }
.counters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--r-lg); overflow: hidden; }
.counter-cell { background: rgba(255,255,255,.04); padding: 2rem 1.5rem; text-align: center; transition: background .2s; }
.counter-cell:hover { background: rgba(255,255,255,.08); }
.counter-num   { font-family: 'Geologica', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--amber-lt); line-height: 1; letter-spacing: -.03em; }
.counter-label { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: .4rem; }
.counters-right { display: flex; flex-direction: column; gap: 1.2rem; }
.cta-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 2rem; transition: all .3s; }
.cta-card:hover { background: rgba(255,255,255,.1); border-color: rgba(245,200,66,.3); }
.cta-icon  { width: 46px; height: 46px; border-radius: 10px; background: linear-gradient(135deg,var(--sky),var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.cta-title { font-family: 'Geologica', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.cta-text  { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 1.2rem; }

/* ══════════════════════
   8. EVENTS
══════════════════════ */
.events { background: var(--bg-soft); }
.events-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.event-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); display: flex; overflow: hidden; transition: all .3s; }
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.event-date { background: linear-gradient(180deg,var(--blue),var(--navy)); padding: 1.5rem 1.2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 78px; flex-shrink: 0; }
.event-day   { font-family: 'Geologica', sans-serif; font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.event-month { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }
.event-body  { padding: 1.4rem 1.6rem; flex: 1; }
.event-cat   { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--sky); margin-bottom: .4rem; }
.event-title { font-family: 'Geologica', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: .6rem; }
.event-meta  { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.event-meta span { font-size: .78rem; color: var(--text-lt); }

/* ══════════════════════
   9. TESTIMONIALS
══════════════════════ */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; transition: all .3s; }
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(0,96,192,.2); background: var(--white); }
.testi-stars  { color: var(--amber); font-size: .8rem; margin-bottom: .9rem; }
.testi-quote  { font-size: 2.5rem; color: var(--sky); line-height: 1; font-family: Georgia, serif; margin-bottom: .6rem; }
.testi-text   { font-size: .9rem; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; font-weight: 700; flex-shrink: 0; }
.testi-name   { font-family: 'Geologica', sans-serif; font-size: .88rem; font-weight: 700; color: var(--dark); }
.testi-role   { font-size: .73rem; color: var(--text-lt); }

/* ══════════════════════
   10. FAQ
══════════════════════ */
.faq { background: var(--bg-soft); }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.faq-visual { background: linear-gradient(160deg,var(--navy),var(--blue) 60%,var(--sky)); border-radius: var(--r-xl); aspect-ratio: 4/5; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem; gap: 2rem; }
.faq-visual img { width: 130px; filter: drop-shadow(0 4px 20px rgba(0,0,0,.3)); }
.faq-stat-num { font-family: 'Geologica', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--amber-lt); line-height: 1; text-align: center; }
.faq-stat-lbl { font-size: .8rem; color: rgba(255,255,255,.7); text-align: center; margin-top: .3rem; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; font-family: 'Geologica', sans-serif; font-size: .95rem; font-weight: 700; color: var(--dark); background: none; border: none; cursor: pointer; text-align: left; gap: 1rem; transition: color .2s; }
.faq-q:hover { color: var(--blue); }
.faq-chevron { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; color: var(--blue); transition: all .3s; }
.faq-item.open .faq-chevron { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.4rem 1.2rem; }
.faq-a p { font-size: .88rem; color: var(--text); line-height: 1.8; }

/* ══════════════════════
   11. BLOG
══════════════════════ */
.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all .3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img { aspect-ratio: 16/9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-ph { font-size: 2.5rem; opacity: .4; }
.blog-date { position: absolute; top: 1rem; left: 1rem; background: var(--amber); color: var(--dark); font-size: .68rem; font-weight: 800; padding: .25rem .7rem; border-radius: 50px; }
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: .7rem; font-size: .72rem; color: var(--text-lt); font-weight: 600; }
.blog-title { font-family: 'Geologica', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: .7rem; transition: color .2s; }
.blog-card:hover .blog-title { color: var(--blue); }
.blog-excerpt { font-size: .83rem; color: var(--text-lt); line-height: 1.65; margin-bottom: 1rem; }
.read-more { font-size: .8rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.read-more:hover { gap: .6rem; }
.read-more::after { content: "→"; }

/* ══════════════════════
   12. NEWSLETTER
══════════════════════ */
.newsletter { background: linear-gradient(135deg,var(--navy) 0%,var(--blue) 50%,var(--sky) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.newsletter::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 50%,rgba(255,255,255,.06) 0%,transparent 60%); }
.newsletter-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.newsletter p { font-size: .97rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-top: 1rem; }
.newsletter-form { display: flex; gap: .8rem; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 200px; padding: .85rem 1.2rem; border: 2px solid rgba(255,255,255,.25); border-radius: 50px; background: rgba(255,255,255,.1); color: #fff; font-size: .9rem; font-family: inherit; transition: border-color .2s; }
.newsletter-input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-input:focus { outline: none; border-color: rgba(255,255,255,.7); }
.newsletter-note { font-size: .73rem; color: rgba(255,255,255,.45); margin-top: .7rem; }
.contact-chips { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.contact-chip { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); padding: .45rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600; text-decoration: none; transition: all .2s; }
.contact-chip:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ══════════════════════
   13. FOOTER
══════════════════════ */
.site-footer { background: #070e18; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand img { width: min(260px, 100%); height: auto; margin-bottom: 1.2rem; display: block; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 250px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; color: rgba(255,255,255,.6); text-decoration: none; transition: all .2s; }
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-col h4 { font-family: 'Geologica', sans-serif; font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 2px solid var(--blue); display: inline-block; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s, padding-left .2s; display: flex; align-items: center; gap: .4rem; }
.footer-col a::before { content: "›"; color: var(--sky); font-size: 1rem; }
.footer-col a:hover { color: var(--amber-lt); padding-left: .4rem; }
.footer-contact-item { display: flex; gap: .7rem; margin-bottom: .9rem; font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-bottom { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-btm-links { display: flex; gap: 1.5rem; }
.footer-btm-links a { font-size: .75rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-btm-links a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════
   BACK TO TOP
══════════════════════ */
#back-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(0,96,192,.4); opacity: 0; transform: translateY(20px); transition: all .3s; z-index: 300; }
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ══════════════════════
   REVEAL ANIMATIONS
══════════════════════ */
.reveal      { opacity: 0; transform: translateY(30px);  transition: opacity .65s ease, transform .65s ease; }
.reveal-l    { opacity: 0; transform: translateX(-30px); transition: opacity .65s ease, transform .65s ease; }
.reveal-r    { opacity: 0; transform: translateX(30px);  transition: opacity .65s ease, transform .65s ease; }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}

@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.5)} }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media(max-width:1024px){
  .hero-inner,.about-inner,.counters-inner,.newsletter-inner,.faq-inner{grid-template-columns:1fr}
  .projects-grid,.involved-grid,.cats-grid,.testi-grid,.blog-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero-card{display:none}
  .about-badge-top,.about-badge-bot{right:0}
}
@media(max-width:768px){
  body.menu-open{overflow:hidden}
  .header-inner{gap:.55rem}
  .site-logo{min-width:0;flex:1 1 auto;max-width:none;gap:.62rem}
  .site-logo img{height:38px}
  .logo-text strong{font-size:.84rem}
  .logo-text span{font-size:.52rem;letter-spacing:.04em;max-width:118px}
  .header-actions{gap:.45rem}
  .header-actions .btn{min-height:42px;padding:.72rem .95rem;font-size:.8rem}
  .main-nav,.header-phone{display:none}
  .main-nav.open{
    display:block;
    position:absolute;
    top:calc(var(--nav-h) + 3px);
    left:0;
    right:0;
    z-index:560;
    background:#f7fbff;
    padding:.5rem 1.15rem 1.5rem;
    box-shadow:0 24px 40px rgba(0,0,0,.12);
    border-top:1px solid var(--border);
    height:calc(100dvh - var(--nav-h) - 3px);
    min-height:calc(100vh - var(--nav-h) - 3px);
    overflow-y:auto;
    overflow-x:hidden;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
  }
  .main-nav.open > ul{
    display:block;
    width:100%;
    list-style:none;
  }
  .main-nav.open > ul > li{
    width:100%;
    list-style:none;
    border-bottom:1px solid rgba(0,61,143,.08);
  }
  .main-nav.open > ul > li:first-child{border-top:1px solid rgba(0,61,143,.08)}
  .main-nav.open > ul > li > a{
    width:100%;
    min-height:52px;
    padding:1rem 0;
    border-radius:0;
    justify-content:space-between;
    font-size:1rem;
    font-weight:800;
    color:var(--dark);
    background:transparent;
    box-shadow:none;
  }
  .main-nav.open a{
    transform:none!important;
    box-shadow:none!important;
    transition:background .2s,color .2s,border-color .2s!important;
  }
  .main-nav.open > ul > li > a:hover,
  .main-nav.open > ul > li > a.active{
    background:transparent;
    color:var(--navy);
  }
  .main-nav.open .has-dropdown > a{
    align-items:center;
  }
  .main-nav.open .nav-arrow{
    width:24px;
    height:24px;
    border-radius:999px;
    background:transparent;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:.85rem;
    opacity:1;
    flex-shrink:0;
    transition:transform .2s, background .2s, color .2s;
  }
  .main-nav.open .has-dropdown.expanded > a .nav-arrow{
    transform:rotate(180deg);
    background:rgba(0,96,192,.08);
    color:var(--navy);
  }
  .main-nav.open .has-dropdown:hover .dropdown,
  .main-nav.open .has-dropdown.expanded .dropdown{
    transform:none!important;
    left:auto;
    top:auto;
    opacity:1!important;
    visibility:visible!important;
  }
  .main-nav.open .has-dropdown:hover > a .nav-arrow{
    transform:none;
  }
  .main-nav.open .has-dropdown.expanded:hover > a .nav-arrow{
    transform:rotate(180deg);
  }
  .main-nav.open .dropdown{
    display:none;
    margin:0;
    padding:0 0 .9rem 1rem;
    background:transparent;
    border:none;
    box-shadow:none;
    border-left:2px solid rgba(0,96,192,.12);
  }
  .main-nav.open .has-dropdown.expanded .dropdown{
    display:grid;
    gap:.2rem;
  }
  .main-nav.open .dropdown li{
    list-style:none;
  }
  .main-nav.open .dropdown li a{
    display:block;
    min-height:44px;
    padding:.72rem 0 .72rem .95rem;
    margin:0;
    background:transparent;
    border:none;
    border-radius:0;
    font-size:.92rem;
    font-weight:700;
    color:var(--dark)!important;
    white-space:normal;
    line-height:1.35;
  }
  .main-nav.open .dropdown li a::before{
    content:"";
    display:inline-block;
    width:6px;
    height:6px;
    margin-right:.7rem;
    border-radius:999px;
    background:rgba(0,96,192,.28);
    vertical-align:middle;
  }
  .main-nav.open .dropdown li a:hover{
    background:transparent;
    color:var(--navy)!important;
    padding:.72rem 0 .72rem .95rem;
  }
  .mobile-btn{
    display:flex;
    width:48px;
    height:48px;
    align-items:center;
    justify-content:center;
    padding:0;
    border-radius:16px;
    flex-shrink:0;
  }
  .projects-grid,.involved-grid,.cats-grid,.testi-grid,.blog-grid,.events-grid,.counters-grid{grid-template-columns:1fr}
  .section-space{padding:70px 0}
  .footer-grid{grid-template-columns:1fr}
  .newsletter-form{flex-direction:column}
  .about-features{grid-template-columns:1fr}
}
@media(max-width:520px){
  .site-logo{gap:.52rem}
  .site-logo img{height:34px}
  .logo-text strong{font-size:.76rem}
  .logo-text span{max-width:92px;font-size:.48rem;letter-spacing:.02em}
  .header-actions .btn{padding:.68rem .78rem;font-size:.74rem}
  .mobile-btn{width:44px;height:44px;border-radius:11px}
}

/* ══════════════════════
   INTERNAL PAGES
══════════════════════ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 56px) 0 112px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--sky) 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 100% 10%, rgba(255,255,255,.12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 0% 85%, rgba(26,158,120,.15) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: left;
}
.page-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}
.page-hero-wave svg {
  display: block;
  width: 100%;
  height: 64px;
}
.page-hero h1 {
  color: #fff !important;
  font-family: 'Geologica', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  text-shadow: 0 10px 28px rgba(0,0,0,.28);
  margin-bottom: 1rem;
  max-width: 820px;
}
.page-hero p {
  color: rgba(255,255,255,.86) !important;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 760px;
  margin: 0;
}
.page-main {
  padding: 72px 0 96px;
}
.page-main .page-card,
.page-main .page-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.page-grid {
  display: grid;
  gap: 1.5rem;
}
.page-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-section {
  margin-top: 2.5rem;
}
.page-section:first-child {
  margin-top: 0;
}
.page-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(0,96,192,.08);
  color: var(--blue);
  border: 1px solid rgba(0,96,192,.14);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-lead {
  font-size: 1rem;
  color: var(--text-lt);
  line-height: 1.8;
}
.page-hero .sec-tag {
  margin-bottom: 1.15rem;
}
@media (max-width: 1024px) {
  .page-grid.three,
  .page-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-h) + 38px) 0 92px;
  }
  .page-hero h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }
  .page-grid.three,
  .page-grid.two {
    grid-template-columns: 1fr;
  }
}
