/* ============================================================
   BIFA — Bangladesh Infrastructure Facilitation Agency
   Shared stylesheet  (clean, commented for future updates)
   ------------------------------------------------------------
   Palette : deep Bangladesh GREEN (primary) + corporate BLUE
             (secondary), on white / light-grey neutrals.
   Type    : Roboto Slab (headings) + Open Sans (body / UI).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Green ramp (primary brand) */
  --green-900: #042B22;
  --green-800: #073C30;
  --green-700: #0A5240;
  --green-600: #0C6B53;
  --green-500: #109C77;
  --green-100: #DDEFE9;
  --green-50:  #EFF7F4;

  /* Blue ramp (secondary / corporate accent) */
  --blue-900: #0B2A43;
  --blue-800: #0E3A5C;
  --blue-700: #134E7A;
  --blue-600: #15679F;   /* primary action blue */
  --blue-500: #2E86C9;
  --blue-300: #7FB6E3;   /* light accent on dark backgrounds */
  --blue-100: #E5EFF8;
  --blue-50:  #F1F7FC;

  /* Neutrals */
  --ink:       #1A2420;
  --ink-soft:  #45534D;
  --ink-mute:  #6C7A73;
  --line:      rgba(10, 82, 64, 0.13);
  --line-soft: rgba(10, 82, 64, 0.07);

  --paper:      #FFFFFF;
  --paper-grey: #F5F7F6;
  --paper-blue: #F1F7FC;
  --paper-green:#EFF7F4;

  --radius:    10px;
  --radius-sm: 7px;
  --radius-lg: 18px;
  --maxw: 1200px;

  --shadow-sm: 0 1px 3px rgba(4,43,34,0.06), 0 1px 2px rgba(4,43,34,0.04);
  --shadow-md: 0 6px 24px rgba(4,43,34,0.10);
  --shadow-lg: 0 20px 60px rgba(4,43,34,0.16);

  --font-display: 'Roboto Slab', Georgia, serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;

  /* Royalty-free hero/section imagery (Unsplash License — free, no attribution).
     Swap these URLs, or drop your own files in assets/img/ and point here. */
  --img-hero: url('https://images.unsplash.com/photo-1501902555269-61c45cc73bfd?auto=format&fit=crop&w=1920&q=80');
  --img-city: url('https://images.unsplash.com/photo-1653932133705-851f4547eb2b?auto=format&fit=crop&w=1920&q=80');
}

/* ---------- 2. BASE ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink); background: var(--paper);
  line-height: 1.65; font-size: 16px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- 3. TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-600); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--blue-600); display: inline-block; }
.eyebrow.center { justify-content: center; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.16; letter-spacing: -0.01em;
  color: var(--green-800); margin-top: 14px;
}
.section-lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 640px; line-height: 1.7; margin-top: 16px; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 8px; cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.2s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }
/* Blue = primary action on light backgrounds */
.btn-primary { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* Green = alternate solid */
.btn-green { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.btn-green:hover { background: var(--green-700); border-color: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* White = primary action on dark backgrounds */
.btn-light { background: #fff; color: var(--green-800); border-color: #fff; }
.btn-light:hover { background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* Outline on dark */
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.10); }
/* Ghost on light */
.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue-600); color: var(--blue-700); background: var(--blue-50); }

/* ============================================================
   5. HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark svg { width: 38px; height: 42px; display: block; }
/* footer sits on dark green — put the colourful logo on a white chip so it stays legible */
.footer-brand .brand-mark { width: 46px; height: 46px; background: #fff; border-radius: 9px; }
.footer-brand .brand-mark svg { width: 34px; height: 38px; }
.brand-text { line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--green-800); letter-spacing: 0.01em; }
.brand-tag { font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 7px; transition: all 0.18s; position: relative;
}
.nav-links a:hover { color: var(--green-700); background: var(--green-50); }
.nav-links a.active { color: var(--green-800); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  background: var(--blue-600); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--green-800); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn:not(.nav-cta-primary) { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 12px 20px 20px; gap: 2px; box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 13px 14px; border-radius: 8px; font-size: 16px; }
  .nav-links.open a.active::after { display: none; }
  .nav-links.open a.active { background: var(--green-50); }
}

/* ============================================================
   6. HERO (home) — photographic, with brand gradient overlay
   ============================================================ */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background-color: var(--green-900);  /* fallback if image fails */
  background-image:
    linear-gradient(150deg, rgba(4,43,34,0.93) 0%, rgba(7,60,48,0.86) 50%, rgba(10,82,64,0.78) 100%),
    var(--img-hero);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  padding: 92px 28px 104px;
}
.hero-flag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px; padding: 7px 16px 7px 8px; margin-bottom: 24px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; color: rgba(255,255,255,0.92);
}
.hero-flag-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 50% 50%, #F42A41 0 7px, transparent 7px), var(--green-500);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 3.7rem); line-height: 1.1; letter-spacing: -0.015em; color: #fff;
}
.hero h1 .accent { color: var(--blue-300); }
.hero-sub { font-size: clamp(1.04rem, 1.5vw, 1.18rem); color: rgba(255,255,255,0.85); max-width: 540px; margin: 20px 0 14px; line-height: 1.65; }
.hero-pitch {
  display: inline-block; font-size: 14.5px; color: var(--blue-300); font-weight: 600;
  letter-spacing: 0.01em; margin-bottom: 30px; border-left: 3px solid var(--blue-500); padding-left: 14px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--blue-300); }

/* Hero clarity panel — answers "what is BIFA" immediately */
.hero-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(8px);
}
.hero-card-label { font-size: 11.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--blue-300); font-weight: 700; margin-bottom: 16px; }
.hero-steps { display: flex; flex-direction: column; }
.hero-step { display: flex; gap: 15px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
.hero-step:last-child { border-bottom: none; }
.hero-step-num { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--blue-300); width: 26px; flex-shrink: 0; padding-top: 1px; }
.hero-step h4 { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.hero-step p { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.5; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 38px; padding: 60px 28px 76px; }
  .hero-card { order: 2; }
}

/* ============================================================
   7. IMPACT STAT BAR
   ============================================================ */
.impact-bar { background: var(--green-800); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.impact-item { padding: 34px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,0.09); }
.impact-item:last-child { border-right: none; }
.impact-num { font-family: var(--font-display); font-size: clamp(1.9rem, 2.9vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1; }
.impact-num .unit { color: var(--blue-300); }
.impact-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 8px; }
@media (max-width: 720px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-item:nth-child(2) { border-right: none; }
  .impact-item:nth-child(1), .impact-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.09); }
}

/* ============================================================
   8. GENERIC SECTIONS
   ============================================================ */
section.block { padding: 88px 0; }
.bg-grey { background: var(--paper-grey); }
.bg-blue { background: var(--paper-blue); }
.bg-green { background: var(--paper-green); }
.section-head { max-width: 720px; }
.section-head.center { max-width: 760px; margin: 0 auto; text-align: center; }

/* Clarity / value-prop strip */
.clarity { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.clarity-statement { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.95rem); line-height: 1.34; color: var(--green-800); }
.clarity-statement .hl { color: var(--blue-600); }
.clarity-points { display: flex; flex-direction: column; gap: 18px; }
.clarity-point { display: flex; gap: 16px; align-items: flex-start; }
.clarity-ico { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; }
.clarity-ico svg { width: 22px; height: 22px; }
.clarity-point h4 { font-size: 15.5px; font-weight: 700; color: var(--green-800); margin-bottom: 3px; }
.clarity-point p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 820px) { .clarity { grid-template-columns: 1fr; gap: 34px; } }

/* Card grid */
.card-grid { display: grid; gap: 22px; margin-top: 46px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .card-grid.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; } }

.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: all 0.22s ease; }
.feature-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-ico { width: 50px; height: 50px; border-radius: 12px; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-ico svg { width: 25px; height: 25px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--green-800); margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.62; }
.feature-stat { margin-top: 15px; font-size: 13px; color: var(--blue-700); font-weight: 700; }

/* Sector card with stats */
.sector-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: all 0.22s; position: relative; overflow: hidden; }
.sector-card::after { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--green-600), var(--blue-600)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.sector-card:hover::after { transform: scaleX(1); }
.sector-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.sector-ico { width: 50px; height: 50px; border-radius: 11px; flex-shrink: 0; background: var(--blue-700); color: #fff; display: flex; align-items: center; justify-content: center; }
.sector-ico svg { width: 25px; height: 25px; }
.sector-card h3 { font-family: var(--font-display); font-size: 1.14rem; font-weight: 600; color: var(--green-800); line-height: 1.2; }
.sector-card > p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.sector-stats { display: flex; gap: 20px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.sector-stat-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--green-700); line-height: 1; }
.sector-stat-lbl { font-size: 11px; color: var(--ink-mute); margin-top: 4px; }

/* Process / steps */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 50px; }
.process-step { padding: 28px 24px; border-left: 1px solid var(--line); }
.process-step:first-child { border-left: none; padding-left: 0; }
.process-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green-100); line-height: 1; margin-bottom: 12px; }
.process-step h4 { font-size: 15.5px; font-weight: 700; color: var(--green-800); margin-bottom: 7px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.58; }
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process-step { border-left: none; border-top: 1px solid var(--line); padding: 24px 0; }
  .process-step:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
}
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } .process-step:nth-child(even) { border-left: none; padding-left: 0; } }

/* Accolades */
.accolade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 46px; }
.accolade { background: #fff; padding: 30px 26px; }
.accolade-quote { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--green-800); line-height: 1.38; }
.accolade-source { margin-top: 12px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue-700); }
@media (max-width: 820px) { .accolade-grid { grid-template-columns: 1fr; } }

/* Coordination hub-and-spoke diagram */
.coord-diagram { margin-top: 46px; background: linear-gradient(160deg, var(--green-800), var(--blue-800)); border-radius: var(--radius-lg); padding: 40px 40px 30px; position: relative; overflow: hidden; }
.coord-diagram .grid-lines { position: absolute; inset: 0; opacity: 0.07; background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px); background-size: 40px 40px; }
.coord-diagram svg { position: relative; z-index: 1; width: 100%; height: auto; display: block; }
.coord-note { position: relative; z-index: 1; text-align: center; color: rgba(255,255,255,0.78); font-size: 14px; margin-top: 18px; max-width: 620px; margin-left: auto; margin-right: auto; }
.agency-pills.coord-pills { justify-content: center; max-width: 880px; margin: 34px auto 0; }
.agency-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.agency-pill { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px; font-size: 13.5px; color: var(--green-800); transition: all 0.18s; }
.agency-pill:hover { border-color: var(--blue-500); background: var(--blue-50); transform: translateY(-2px); }
.agency-pill b { font-weight: 700; }
.agency-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-600); flex-shrink: 0; }

/* CTA band */
.cta-band { background-color: var(--green-900); background-image: linear-gradient(135deg, rgba(4,43,34,0.95), rgba(14,58,92,0.92)), var(--img-city); background-size: cover; background-position: center; color: #fff; position: relative; overflow: hidden; }
.cta-band .grid-lines { position: absolute; inset: 0; opacity: 0.06; background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px); background-size: 56px 56px; }
.cta-inner { position: relative; z-index: 1; text-align: center; padding: 76px 28px; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.16; margin-bottom: 14px; }
.cta-inner h2 .accent { color: var(--blue-300); }
.cta-inner p { font-size: 1.06rem; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 30px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   9. PAGE HERO (interior pages)
   ============================================================ */
.page-hero { background-color: var(--green-900); background-image: linear-gradient(150deg, var(--green-900), var(--blue-800)); color: #fff; padding: 66px 0 70px; position: relative; overflow: hidden; }
.page-hero.with-photo { background-image: linear-gradient(150deg, rgba(4,43,34,0.93), rgba(14,58,92,0.85)), var(--img-city); background-size: cover; background-position: center; }
.page-hero .grid-lines { position: absolute; inset: 0; opacity: 0.06; background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent); -webkit-mask-image: linear-gradient(to bottom, black, transparent); }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -0.015em; color: #fff; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-top: 16px; line-height: 1.65; }

/* ============================================================
   10. ABOUT / PRESIDENT
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; gap: 34px; } }
.vision-stack { display: flex; flex-direction: column; gap: 20px; }
.vision-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; border-left: 4px solid var(--blue-600); }
.vision-card .vl { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-700); font-weight: 700; margin-bottom: 9px; }
.vision-card p { font-family: var(--font-display); font-size: 1.12rem; font-weight: 500; color: var(--green-800); line-height: 1.42; }

.president { display: grid; grid-template-columns: 320px 1fr; gap: 50px; align-items: start; }
@media (max-width: 820px) { .president { grid-template-columns: 1fr; gap: 30px; } }
.president-photo-wrap { position: relative; }
.president-photo { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 1; object-fit: cover; object-position: center 18%; box-shadow: var(--shadow-lg); }
.president-photo-badge { position: absolute; bottom: -16px; left: 24px; right: 24px; background: #fff; border-radius: var(--radius); padding: 15px 20px; box-shadow: var(--shadow-md); border: 1px solid var(--line); text-align: center; }
.president-photo-badge .pn { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--green-800); }
.president-photo-badge .pt { font-size: 12.5px; color: var(--blue-700); font-weight: 700; }
.president-letter .greeting { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--green-800); margin-bottom: 16px; }
.president-letter p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.78; margin-bottom: 17px; }
.president-sign { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.president-sign .sn { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--green-800); }
.president-sign .sr { font-size: 13.5px; color: var(--ink-mute); margin-top: 2px; }

/* ============================================================
   11. LAWS
   ============================================================ */
.law-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.law-badge { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue-700); background: var(--blue-50); padding: 5px 12px; border-radius: 6px; margin-bottom: 14px; }
.law-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--green-800); margin-bottom: 13px; line-height: 1.28; }
.law-list { list-style: none; }
.law-list li { font-size: 14px; color: var(--ink-soft); padding: 6px 0 6px 26px; position: relative; line-height: 1.5; }
.law-list li::before { content: ''; position: absolute; left: 2px; top: 11px; width: 13px; height: 7px; border-left: 2px solid var(--blue-600); border-bottom: 2px solid var(--blue-600); transform: rotate(-45deg); }

/* ============================================================
   12. CONTACT
   ============================================================ */
.contact-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: start; }
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; gap: 38px; } }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--green-800); margin-bottom: 7px; }
.field label .req { color: #C0392B; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 14.5px; color: var(--ink); padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-grey); outline: none; transition: all 0.18s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 3px rgba(46,134,201,0.14); }
.field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--ink-mute); margin-top: 13px; text-align: center; }
.form-status { display: none; margin-top: 15px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; }
.form-status.ok { display: block; background: var(--green-50); border: 1px solid var(--green-100); color: var(--green-700); }
.form-status.err { display: block; background: #FDECEA; border: 1px solid #F5C6C2; color: #B03A2E; }

.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--green-800); margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 26px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 15px 0; border-top: 1px solid var(--line-soft); }
.info-row:first-of-type { border-top: none; }
.info-ico { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; }
.info-ico svg { width: 22px; height: 22px; }
.info-row .lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 3px; }
.info-row a, .info-row p { font-size: 15px; color: var(--green-800); font-weight: 600; display: block; }
.info-row a:hover { color: var(--blue-700); }

/* Business card placeholder */
.biz-card { margin-top: 28px; border: 1px dashed var(--line); border-radius: var(--radius); padding: 22px; background: var(--paper-grey); }
.biz-card .bc-label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.biz-card img { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.biz-card .bc-ph { display: flex; align-items: center; justify-content: center; aspect-ratio: 1.75; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink-mute); font-size: 13px; text-align: center; padding: 16px; }

/* Google Map embed */
.map-embed { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.62); padding: 60px 0 26px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 42px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); transition: all 0.18s; }
.social-link:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.58); transition: color 0.18s; }
.footer-col a:hover { color: var(--blue-300); }
.footer-contact-line { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-contact-line a:hover { color: var(--blue-300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   14. MOTION / A11Y
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .feature-card:hover, .sector-card:hover, .agency-pill:hover, .social-link:hover { transform: none; }
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
/* keep anchor-linked sections clear of the sticky header */
[id] { scroll-margin-top: 90px; }
