/* =========================================================
   BASE TOKENS (IFRC BRAND)
   ========================================================= */
:root {
  /* IFRC brand colours */
  --ifrc-red: #ee2435;
  --ifrc-dark-blue: #011E41;
  --ifrc-black: #000000;
  --ifrc-white: #ffffff;

  /* Theme neutrals */
  --bg: #f3f6fa;
  --text: #212121;
  --card-bg: #ffffff;

  /* Layout tokens */
  --radius: 14px;
  --shadow: 0 8px 28px rgba(1, 30, 65, .12),
            0 1.5px 8px rgba(0, 0, 0, .06);

  /* Extras */
  --orange: #FF7A00;
  --blue-route: #2B6DFF;
}

/* =========================================================
   GLOBAL BASE
   ========================================================= */

* { box-sizing:border-box; }

html {
  scroll-behavior: smooth;
}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  margin: 0;
}

/* =========================================================
   GENERIC PAGE HERO (About, etc.)
   ========================================================= */

.page-hero{
  position: relative;
  min-height: 88vh; /* key difference */
  color: #fff;
  display: flex;
  align-items: center; /* center like Fleet */
  padding: 0 60px;
}
.page-hero-inner{
  max-width: 720px;
}

.page-hero-eyebrow{
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.page-hero-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-size: clamp(25px, 5vw, 52px);
  margin: 0 0 20px;
}

.page-hero-subtitle{
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* shift balance */
  gap: 64px;
  align-items: center;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* LEFT */
.hero-left .page-hero-title {
  font-size: 3rem;
  line-height: 1.15;
}

.hero-checks {
  margin-top: 16px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-checks li {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-checks li::before {
  content: "✓";
  margin-right: 6px;
}

/* RIGHT */
.hero-right {
  margin-left: auto;
  max-width: 480px;   /* wider = fewer line breaks */
  padding-left: 40px;
}

.hero-side-text {
  font-size: 1rem;
  line-height: 1.75;   /* calmer reading */
  opacity: 0.85;
  margin-bottom: 20px;
}
.hero-side-text strong {
  font-weight: 600;
  color: #ffffff;
}

/* =========================================================
   HERO BUTTONS – IFRC RED
   ========================================================= */
.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px; /* pill style like Fleet */
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero-actions .btn-primary {
  background: var(--ifrc-red);
  color: #ffffff;
  border: 2px solid var(--ifrc-red);
}
.hero-actions .btn-outline {
  background: var(--ifrc-red);
  color: #ffffff;
  border: 2px solid var(--ifrc-red);
}

.hero-actions .btn-outline:hover {
  background: var(--ifrc-red);
  color: #ffffff;
}

.hero-actions .btn-primary:hover {
  background: #c81f2d; /* slightly darker IFRC red */
  border-color: #c81f2d;
}
/* Mobile */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .hero-left .page-hero-title {
    font-size: 2.2rem;
  }

  .hero-right {
    margin-left: 0;
    padding-left: 0;
    max-width: none;
  }
}

/* Responsive tweaks */
@media (max-width: 1024px){
  .page-hero{
    padding: 30px;
  }
}

@media (max-width: 767px){
  .page-hero{
    min-height: 90vh;
    padding: 20px;
    align-items: flex-start;
  }

  .page-hero-title{
    letter-spacing: -1px;
  }
}
/* =========================================================
   HERO VIDEO – FINAL FIX (FULLSCREEN, CLEAN)
   ========================================================= */

.hero-video {
  position: relative;
  overflow: hidden;
}

/* VIDEO FULL BLEED */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 🔥 THIS FIXES CROPPING */
  object-position: center;
  z-index: 0;
}

/* 50% DARK OVERLAY */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 30, 65, 0.5); /* EXACT 50% */
  z-index: 1;
}

/* CONTENT ABOVE VIDEO */
.hero-video .hero-grid {
  position: relative;
  z-index: 2;
}

/* HERO HEIGHT MATCHES FLEET */
.page-hero.hero-video {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

/* MOBILE */
@media (max-width: 900px) {
  .page-hero.hero-video {
    min-height: 90vh;
    padding: 0 24px;
  }
}
/* =========================================================
   OUR MISSION – ONE RED SUPPLY CHAIN
   ========================================================= */

.mission-section {
  background: var(--ifrc-dark-blue);
  color: #ffffff;
  padding: 100px 0;
}

/* HEADER */
.mission-header {
  text-align: center;
  margin-bottom: 64px;
}

.mission-eyebrow {
  display: block;
  color: var(--ifrc-red);
  letter-spacing: 0.18em;
  font-size: 2.30rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mission-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0;
}

/* GRID */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ITEM */
.mission-item {
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

/* ICON */
.mission-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: #ffffff;          /* WHITE CIRCLE ✅ */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon img {
  max-width: 100%;
  height: auto;
}

/* Individual icon sizing */
.mission-icon--heart {
  width: 56px;
}

.mission-icon--hospital {
  width: 60px;
}

.mission-icon--plane {  
  width: 92px;
  transform: translateY(2px);
}

/* DIVIDER */
.mission-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto 20px;
}

/* TEXT */
.mission-text {
  font-size: 1.35rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mission-section {
    padding: 80px 24px;
  }
}
/* =========================================================
   WHO WE ARE – MODERN SPLIT LAYOUT
   ========================================================= */

.who-we-are {
  background: #ffffff;
  padding: 130px 0 100px;
}

/* Header */
.who-we-are-header {
  text-align: center;
  margin-bottom: 80px;
}

.who-we-are-label {
  display: inline-block;
  background: #0b1a33;
  color: #ffffff;
  padding: 14px 36px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Layout */
.who-we-are-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text */
.who-we-are-text p {
  font-size: 1.45rem;
  line-height: 1.9;
  color: #2b2b2b;
  margin-bottom: 28px;
}

/* Image Side */
.who-we-are-visual {
  position: relative;
  height: 520px;
}

/* Main Image */
.who-image-main {
  position: absolute;
  inset: 0;
  background-image: url('../images/kramair.png');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  animation: floatMain 6s ease-in-out infinite;
}

/* Accent Layer */
.who-image-accent {
  position: absolute;
  width: 85%;
  height: 85%;
  top: -30px;
  left: -30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(11,26,51,0.15), rgba(11,26,51,0.05));
  z-index: -1;
}

/* Subtle floating animation */
@keyframes floatMain {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 1000px) {
  .who-we-are-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .who-we-are-visual {
    height: 420px;
  }

  .who-image-accent {
    display: none;
  }
}

/* =========================================================
   WHAT WE DO – CLEAN EDITORIAL (OPTIMIZED)
   ========================================================= */

.what-we-do {
  padding: 110px 6vw;
  background: #fff;
  will-change: contents;
}

.what-we-do__header {
  text-align: center;
  margin-bottom: 70px;
}

.what-we-do__header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0b1a33;
}

.what-we-do__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* CARD OPTIMIZATION */
.what-card {
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.07);
  transition: transform .35s ease-out, box-shadow .35s ease-out;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

@media (hover: hover) {
  .what-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
  }
}

.what-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

@media (hover: hover) {
  .what-card:hover .what-card__bg {
    transform: scale(1.05);
  }
}

.what-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,26,51,.8), rgba(11,26,51,.95));
}

.what-card__content {
  position: absolute;
  bottom: 60px;
  left: 36px;
  right: 36px;
  color: #fff;
  will-change: transform, opacity;
  transition: transform .4s ease;
}

@media (hover: hover) {
  .what-card:hover .what-card__content {
    transform: translateY(-8px);
  }
}

.what-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.what-card p {
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease-out, transform .3s ease-out;
}

@media (hover: hover) {
  .what-card:hover p {
    opacity: 1;
    transform: translateY(0);
  }
}

.what-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--ifrc-red);
  margin-bottom: 16px;
  transition: width .35s ease;
}

@media (hover: hover) {
  .what-card:hover .what-accent {
    width: 80px;
  }
}

/* Reveal animation optimization */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .what-we-do__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .what-we-do__grid {
    grid-template-columns: 1fr;
  }
  .what-card {
    height: 360px;
  }
}

/* =========================================
   HOME – EDITORIAL WORK SECTION (IFRC)
   ========================================= */

.home-work-editorial {
  padding: 110px 0;
  background: #f4f6f8;
}

.home-work-editorial__header {
  margin-bottom: 70px;
  max-width: 700px;
}

.home-work-editorial__header h2 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: #002b45;
  position: relative;
}

.home-work-editorial__header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #e30613;
  margin-top: 14px;
}

.home-work-editorial__header p {
  font-size: 1.1rem;
  color: #4a4a4a;
}

/* LAYOUT */

.editorial-block {
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  margin-bottom: 130px;
}

.editorial-block--reverse {
  grid-template-columns: 45% 55%;
}

.editorial-block--reverse .editorial-image {
  order: 2;
}

.editorial-block--reverse .editorial-content {
  order: 1;
}

/* IMAGE */

.editorial-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* FLOATING PANEL */

.editorial-content {
  background: #ffffff;
  padding: 55px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  position: relative;
  left: -70px;
  z-index: 2;
}

.editorial-block--reverse .editorial-content {
  left: 70px;
}

.editorial-content h3 {
  font-size: 1.9rem;
  margin-bottom: 14px;
  color: #003b5c;
}

.editorial-country {
  font-weight: 700;
  margin-bottom: 14px;
  color: #e30613;
}

.editorial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.editorial-content a {
  font-weight: 700;
  text-decoration: none;
  color: #e30613;
  border-bottom: 2px solid #e30613;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

.editorial-content a:hover {
  opacity: 0.7;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .editorial-block,
  .editorial-block--reverse {
    grid-template-columns: 1fr;
  }

  .editorial-content {
    left: 0 !important;
    margin-top: -50px;
  }

  .editorial-image img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .editorial-image img {
    height: 300px;
  }

  .editorial-content {
    padding: 35px;
  }
}



/* =========================================================
   HOME PAGE - SCM RESOURCES – CATALOGUE / SUPPLIERS / OPPORTUNITIES
   ========================================================= */

.scm-resources {
  background: #ffffff;
}

/* ================= TOP GRID ================= */

.scm-resources__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: linear-gradient(
    135deg,
    #011E41 0%,
    #0b274f 60%,
    #102f5a 100%
  );
}

.scm-resource-box {
  padding: 80px 72px;
  color: #ffffff;
}

.scm-resource-box h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.scm-resource-box p {
  max-width: 520px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Divider line effect */
.scm-resource-box + .scm-resource-box {
  border-left: 1px solid rgba(255,255,255,0.15);
}

/* ================= BUTTON ================= */

.scm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.scm-btn:hover {
  background: #ffffff;
  color: #011E41;
}

/* ================= BOTTOM BANNER ================= */

.scm-resources__bottom {
  position: relative;
  min-height: 360px;
  background-image: url('../images/aircraft_bg.jpg');
  background-size: cover;
  background-position: center;
}

.scm-resources__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 30, 65, 0.6);
}

.scm-resources__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
  color: #ffffff;
}

.scm-resources__content h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.scm-resources__content p {
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
  opacity: 0.9;
}

/* Outline button for contrast */
.scm-btn--outline {
  border-color: #ffffff;
  background: transparent;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .scm-resources__top {
    grid-template-columns: 1fr;
  }

  .scm-resource-box {
    padding: 60px 32px;
  }

  .scm-resource-box + .scm-resource-box {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .scm-resources__content {
    padding: 80px 24px;
  }

  .scm-resources__content h2 {
    font-size: 2rem;
  }
}


/* =========================================================
   HEADER – IFRC STYLE (WHITE)
   ========================================================= */
 
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e6e9ef;
  z-index: 9999;
}
 
body {
  padding-top: 90px;
}
 
/* Layout */
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 90px;
  padding: 0 24px;
}
 
/* LEFT – Logo */
.header-left {
  display: flex;
  align-items: center;
}
 
.logo {
  height: 73px;
  width: auto;
  display: block;
}
 
/* CENTER – Desktop Nav */
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
 
.main-nav a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #011E41;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}
 
.main-nav a:hover { background: #f1f4f8; }
.main-nav a.active { background: #011E41; color: #ffffff; }
 
/* RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
 
/* Hamburger button – hidden on desktop */
.menu-icon {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
 
.menu-icon span {
  width: 24px;
  height: 3px;
  background: #011E41;
  border-radius: 2px;
  display: block;
  transition: transform .25s, opacity .25s;
}
 
/* Animate hamburger → X when open */
.menu-icon.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-icon.is-open span:nth-child(2) { opacity: 0; }
.menu-icon.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
 
/* Hamburger dropdown */
.hamburger-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e6e9ef;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: none;
  z-index: 9998;
}
 
.hamburger-menu.open { display: block; }
 
.hamburger-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 16px 16px;
}
 
.hamburger-menu li a {
  display: block;
  padding: 13px 14px;
  color: #011E41;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  border-bottom: 1px solid #f1f4f8;
}
 
.hamburger-menu li:last-child a { border-bottom: none; }
.hamburger-menu li a:hover { background: #f1f4f8; }
 
/* Hamburger sub-item (Partnership) */
.hamburger-sub a {
  padding-left: 32px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #ee2435 !important;
  opacity: 1;
}
 
.hamburger-sub a:hover {
  background: #fff4f5 !important;
}
 
/* =========================================================
   NAV DROPDOWN – GLOBAL STRUCTURE
   ========================================================= */
 
.nav-has-dropdown {
  position: relative;
}
 
/* Chevron icon next to "Global Structure" */
.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 5px;
}
 
.nav-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
 
.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}
 
/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 300px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}
 
/* Small arrow pointing up toward the nav */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top: none;
  border-bottom-color: #ffffff;
}
 
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
 
.nav-dropdown-inner {
  padding: 18px;
}
 
/* Main card — Global Structure overview */
.nav-dropdown-card {
  border-radius: 10px;
  background: #f4f6f8;
  overflow: hidden;
}
 
.nav-dropdown-main-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease;
}
 
.nav-dropdown-main-link:hover {
  background: #e8edf2 !important;
}
 
.nav-dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #011E41;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.nav-dropdown-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}
 
.nav-dropdown-card-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #011E41;
}
 
.nav-dropdown-card-desc {
  font-size: 0.78rem;
  color: #666;
  margin-top: 2px;
}
 
/* Divider */
.nav-dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 14px 0 10px;
}
 
/* "Under Global Structure" label */
.nav-dropdown-sub-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
  padding: 0 4px;
}
 
/* Partnership sub-item */
.nav-dropdown-sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #011E41;
  transition: background 0.2s ease;
}
 
.nav-dropdown-sub-item:hover {
  background: #fff4f5 !important;
}
 
.nav-dropdown-sub-item:hover .nav-dropdown-sub-title {
  color: #ee2435;
}
 
.nav-dropdown-sub-item:hover .nav-dropdown-arrow {
  transform: translateX(4px);
}
 
.nav-dropdown-sub-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(238, 36, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.nav-dropdown-sub-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ee2435;
}
 
.nav-dropdown-sub-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #011E41;
  transition: color 0.2s ease;
}
 
.nav-dropdown-sub-desc {
  font-size: 0.76rem;
  color: #888;
  margin-top: 1px;
}
 
.nav-dropdown-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  stroke: #bbb;
  transition: transform 0.2s ease, stroke 0.2s ease;
}
 
.nav-dropdown-sub-item:hover .nav-dropdown-arrow {
  stroke: #ee2435;
}
 
/* =========================================================
   RESPONSIVE
   ========================================================= */
 
/* Tablet – shrink nav text */
@media (max-width: 1100px) {
  .main-nav a {
    font-size: .8rem;
    padding: 0 10px;
  }
}
 
/* Mobile – hide nav, show hamburger only */
@media (max-width: 768px) {
 
  body { padding-top: 70px; }
 
  .header-inner {
    grid-template-columns: auto 1fr auto;
    height: 70px;
    padding: 0 16px;
  }
 
  /* Hide desktop nav + dropdown completely */
  .main-nav { display: none; }
  .nav-dropdown { display: none !important; }
 
  /* Show hamburger on the RIGHT */
  .menu-icon {
    display: flex;
    margin-left: auto;
  }
 
  /* Smaller logo */
  .logo { height: 46px; }
 
  /* Dropdown starts just below the 70px header */
  .hamburger-menu { top: 70px; }
}
/* =========================================================
   CONTAINER & CARD
   ========================================================= */

.container{
  max-width:1380px;
  margin:28px auto 44px;
  padding:0 28px;
}

.card {
  background:var(--card-bg);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px 30px 32px;
  margin:0 auto 28px;
}
.card h2,
.card h3 {
  color:#11224d;
  margin:0 0 14px;
  font-weight:800;
}
.card p {
  margin:0 0 16px;
  line-height:1.7;
  font-size:1.05rem;
}
.editorial-content h3 a {
  color: #0b1a33;
  text-decoration: none;
  transition: color .25s ease;
}

.editorial-content h3 a:hover {
  color: #ee2435;
}

.editorial-readmore {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: #ee2435;
  text-decoration: none;
}

.editorial-readmore:hover {
  text-decoration: underline;
}

.editorial-image a img {
  transition: transform .4s ease;
}

.editorial-image a:hover img {
  transform: scale(1.04);
}

/* Full-width card (team grid) */
.card--full { padding:0; }
.card--full > h2,
.card--full > p { padding:24px 30px 0; }
.card--full .team-grid { padding:0 30px 24px; }

/* =========================================================
   FOOTER – IFRC BRANDED (FINAL)
   ========================================================= */

.footer {
  background: var(--ifrc-dark-blue);
  margin-top: 64px;
  color: rgba(255, 255, 255, 0.85);
}

/* WRAPPER */
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 20px 32px;
}

/* =====================
   TOP SECTION
   Layout: Logo | About | Links
   ===================== */
.footer-top-3 {
  display: grid;
  grid-template-columns: auto 2fr 1.2fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 32px;
}

/* BRAND / LOGO */
.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  width: 200px;
  max-width: 100%;
}

/* HEADINGS */
.footer h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

/* ABOUT */
.footer-about {
  margin-top: 4px;
}

.footer-about p {
  margin: 0;
  max-width: 620px;
  line-height: 1.8;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

/* QUICK LINKS */
.footer-links ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* FedNet Login (under links) */
.footer-login {
  display: inline-block;
  margin-top: 14px;
  background: var(--ifrc-red);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.footer-login:hover {
  background: #c4171c;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 32px 0 24px;
}

/* =====================
   BOTTOM SECTION
   ===================== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-copy {
  white-space: nowrap;
}

/* LEGAL LINKS */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .footer-top-3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =========================================================
   MEET THE TEAM – CLEAN WHITE LEADERSHIP GRID
   ========================================================= */

/* ================= HERO ================= */

.mt-hero {
  position: relative;
  min-height: 88vh;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 80px;

  background-image:
    linear-gradient(
      115deg,
      rgba(1,30,65,.96) 0%,
      rgba(1,30,65,.85) 35%,
      rgba(1,30,65,.45) 70%,
      rgba(1,30,65,.15) 100%
    ),
    url('../images/scmteam.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mt-hero .scu-hero-inner {
  max-width: 720px;
}

.scu-hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}

.scu-hero-title {
  font-size: 3rem;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 800;
}

.scu-hero-subtitle {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

/* ================= SECTION ================= */

.team-section {
  background: #ffffff;
  padding: 120px 80px;
}

.team-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.team-intro h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: #0b1a33;
}

.team-intro p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* ================= GRID ================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 1000px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-section { padding: 80px 24px; }
}

/* ================= CARD ================= */

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transform: translateY(40px);
  opacity: 0;
  transition: all .6s cubic-bezier(.22,1,.36,1);
}

.team-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* ================= IMAGE ================= */

.team-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ================= CONTENT ================= */

.team-content {
  padding: 26px;
}

.team-content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0b1a33;
}

.team-role {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #555;
}

.team-location {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 18px;
}

/* ================= RED ACCENT ================= */

.team-content h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: #ee2435;
  margin-top: 10px;
  transition: width .3s ease;
}

.team-card:hover h3::after {
  width: 60px;
}

/* ================= BUTTON ================= */

.team-toggle {
  background: none;
  border: none;
  color: #ee2435;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
}

/* ================= BIO SLIDE ================= */

.team-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}

.team-card.open .team-bio {
  max-height: 200px;
  margin-top: 16px;
}

.team-bio-inner {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}

.team-bio a {
  color: #ee2435;
  text-decoration: none;
}

.team-bio a:hover {
  text-decoration: underline;
}


/* =========================================================
   global-structure.css
   ========================================================= */

.gs-page {
  background: #f4f6f8;
  overflow: hidden;
}

.gs-hero {
  background-image: url('../images/scmteam.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── LAYOUT ── */
.gs-hubs-full {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

/* ── LEFT PANEL ── */
.gs-hubs-info {
  padding: 48px 36px;
  color: #ffffff;
  background: linear-gradient(180deg, #0b1a33, #0e2550);
  overflow-y: auto;
}

.gs-hubs-info h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.gs-hubs-info > p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 8px;
}

.location-panel {
  margin-top: 28px;
}

.location-group-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  margin-top: 4px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.location-item:hover {
  background: rgba(255,255,255,0.07);
  padding-left: 14px;
}

.location-item.active {
  background: rgba(238,36,53,0.15);
  padding-left: 14px;
}

.location-item.active .loc-name {
  color: #ee2435;
}

.loc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.loc-dot--global {
  background: #ee2435;
  box-shadow: 0 0 0 3px rgba(238,36,53,0.25);
}

.loc-dot--regional {
  background: #ff7a1a;
  box-shadow: 0 0 0 3px rgba(255,122,26,0.2);
}

.loc-name {
  flex: 1;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  transition: color 0.2s ease;
}

.loc-tags {
  display: flex;
  gap: 5px;
}

.loc-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.gs-team-cta {
  margin-top: 32px;
}

.gs-team-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  background: #ee2435;
  color: #ffffff;
  transition: all 0.3s ease;
}

.gs-team-btn:hover {
  background: #ffffff;
  color: #ee2435;
  box-shadow: 0 0 0 2px #ee2435 inset;
}

/* ── MAP PANEL ── */
.gs-hubs-map {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f1f3f5;
  overflow: hidden;
}

.gs-hubs-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

#worldMap image {
  filter: grayscale(100%) contrast(0.95);
}

/* ── MARKERS ── */
.marker-halo {
  fill: rgba(238,36,53,0.12);
  pointer-events: none;
}

.marker-dot {
  cursor: pointer;
  transition: r 0.25s ease, filter 0.25s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.marker-dot--global  { fill: #ee2435; }
.marker-dot--regional { fill: #ff7a1a; }

.marker-dot:hover {
  filter: brightness(1.2) drop-shadow(0 0 4px rgba(0,0,0,0.3));
}

.marker-dot.active {
  filter: drop-shadow(0 0 8px rgba(238,36,53,0.7));
}

.marker-dot--regional.active {
  filter: drop-shadow(0 0 8px rgba(255,122,26,0.7));
}

/* ── RESET BUTTON ── */
.map-reset-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #ee2435;
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 10;
  padding: 0;
}

/* =========================================================
   HUB POPUP — light card, centered above the dot
   ========================================================= */

.hub-popup {
  position: absolute;
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.13),
    0 2px 8px rgba(0,0,0,0.07),
    0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden;
  z-index: 30;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.3,0.64,1);
}

.hub-popup.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Arrow tip pointing down toward dot */
.hub-popup-tip {
  position: absolute;
  bottom: -9px;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom: none;
  border-top-color: #ffffff;
  transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,0.06));
  z-index: 2;
}

/* Flip tip when popup is below the dot */
.hub-popup-tip--below {
  bottom: auto;
  top: -9px;
  border-top: none;
  border-bottom: 9px solid #ee2435;
}

/* Header */
.hub-popup-header {
  background: #ee2435;
  padding: 18px 20px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hub-popup-city {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.hub-popup-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.hub-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hub-tag--office {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.hub-tag--warehouse {
  background: #fff;
  color: #ee2435;
}

.hub-popup-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.hub-popup-close {
  background: rgba(255,255,255,0.18);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.15s;
}

.hub-popup-close:hover {
  background: rgba(255,255,255,0.32);
}

/* Address strip */
.hub-popup-addr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

.hub-addr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ee2435;
  flex-shrink: 0;
}

.hub-popup-addr svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Body */
.hub-popup-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Top 2-col row */
.hub-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Stat cards */
.hub-stat {
  background: #f7f8fa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
}

.hub-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #bbb;
  margin-bottom: 6px;
}

.hub-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: #1a2540;
  line-height: 1.1;
}

.hub-stat-val--md {
  font-size: 14px;
  line-height: 1.4;
}

/* Year comparison cards */
.hub-years {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hub-ycard {
  background: #f7f8fa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 14px;
}

.hub-ycard--25 {
  border-top: 3px solid #ee2435;
}

.hub-ycard--24 {
  border-top: 3px solid #ffb3b3;
}

.hub-ybadge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #bbb;
  margin-bottom: 10px;
}

.hub-ycard--25 .hub-ybadge { color: #ee2435; }
.hub-ycard--24 .hub-ybadge { color: #ffb3b3; }

.hub-ymetric {
  margin-bottom: 8px;
}

.hub-ymetric:last-child {
  margin-bottom: 0;
}

.hub-ym-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ccc;
  margin-bottom: 3px;
}

.hub-ym-val {
  font-size: 15px;
  font-weight: 800;
  color: #1a2540;
  line-height: 1.1;
}

.hub-ym-val--sm {
  font-size: 13px;
}

/* Response capacity row */
.hub-response {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff5f5;
  border: 1px solid #fdd;
  border-radius: 12px;
  padding: 12px 14px;
}

.hub-response-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hub-response-title {
  font-size: 13px;
  font-weight: 800;
  color: #1a2540;
  margin-bottom: 2px;
}

.hub-response-sub {
  font-size: 11px;
  color: #aaa;
}

/* Empty / coming soon */
.hub-empty {
  text-align: center;
  padding: 24px 12px;
  color: #bbb;
  font-size: 0.85rem;
  line-height: 1.6;
}

.hub-empty-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* ── PARTNERSHIP SECTION ── */
.partnership-section {
  background: #fff;
  padding: 90px 0 100px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.partnership-inner {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.partnership-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ee2435;
  margin-bottom: 14px;
}

.partnership-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1a33;
  margin-bottom: 14px;
}

.partnership-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}

.partnership-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fafafa;
  border: 1.5px dashed #ddd;
  border-radius: 16px;
  padding: 28px 36px;
  text-align: left;
}

.partnership-coming-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.partnership-coming-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0b1a33;
  margin-bottom: 5px;
}

.partnership-coming-text p {
  font-size: 0.88rem;
  color: #999;
  margin: 0;
  line-height: 1.5;
}

/* ── TEAM SECTION ── */
.office-team-section {
  background: #f4f6f8;
  padding: 100px 0 120px;
}

.office-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.office-team-header h2 {
  font-size: 2rem;
  color: #0b1a33;
  margin-bottom: 12px;
}

.office-team-header p { color: #555; }

.office-team-grid {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.office-team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.office-team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.office-team-card:hover {
  box-shadow: 0 30px 80px rgba(238,36,53,0.15);
  transform: translateY(-5px);
}

.office-team-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.office-team-info { padding: 22px; }

.office-team-info h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #0b1a33;
}

.office-team-role {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 6px;
}

.office-team-location {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 14px;
}

.office-team-toggle {
  background: none;
  border: none;
  color: #ee2435;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.88rem;
}

.office-team-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.office-team-card.open .office-team-bio {
  max-height: 200px;
  margin-top: 14px;
}

.office-team-bio-inner {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
}

.office-team-bio a {
  color: #ee2435;
  text-decoration: none;
}

.office-team-bio a:hover { text-decoration: underline; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .gs-hubs-full {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .gs-hubs-info { padding: 32px 24px; }
  .gs-hubs-map { height: 70vh; }

  .hub-popup {
    width: calc(100vw - 32px) !important;
    max-width: 420px;
  }
}
/* =========================================================
   SUPPLY CHAIN TOOLBOX – HERO
   ========================================================= */

.toolbox-hero {
  background-image: url('../images/scmteam.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================================
   TOOLBOX – INTRO SECTION
   ========================================================= */

.toolbox-editorial {
  position: relative;
  padding: 120px 0;
  background: #ffffff;
}

/* subtle bottom divider */
.toolbox-editorial::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,.08),
    transparent
  );
}

.toolbox-editorial-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.toolbox-editorial-content h2 {
  font-size: 2.6rem;
  color: #002b45;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.toolbox-editorial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

/* highlight box */

.toolbox-highlight-box {
  background: linear-gradient(
    160deg,
    #0b1a33 0%,
    #0e2550 100%
  );
  padding: 50px;
  border-radius: 22px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25),
    0 8px 25px rgba(220, 30, 38, 0.25); /* IFRC red glow */

  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
  overflow: hidden;
}
.toolbox-highlight-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.08);
}
.toolbox-highlight-box h3 {
  margin-bottom: 24px;
  font-size: 1.35rem;
  color: #ffffff;
}

.toolbox-highlight-box ul {
  padding-left: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
}

.toolbox-highlight-box li {
  margin-bottom: 8px;
}
.toolbox-highlight-box ul li::marker {
  color: var(--ifrc-red);
}
.toolbox-highlight-box:hover {
  transform: translateY(-10px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.35),
    0 15px 35px rgba(220, 30, 38, 0.35);
}
/* =========================================================
   DOCUMENT LIBRARY
   ========================================================= */

.toolbox-library {
  background: #f4f6f8;
  padding: 120px 0;
}

.toolbox-library h3,
.toolbox-library p {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.toolbox-library h3 {
  font-size: 2.3rem;
  margin-bottom: 12px;
  color: #002b45;
}

.toolbox-library p {
  margin-bottom: 60px;
  color: #4b5563;
}

/* accordion wrapper */

.accordion-section {
  max-width: 1100px;
  margin: 0 auto 24px auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  overflow: hidden;
}

/* category button */

.accordion-category {
  width: 100%;
  padding: 22px 40px;
  background: #ffffff;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background .2s ease;
}

.accordion-category:hover {
  background: #f1f3f5;
}

.accordion-icon {
  transition: transform .25s ease;
}

.accordion-category.open .accordion-icon {
  transform: rotate(45deg);
}

/* panel */

.accordion-panel {
  display: none;
}

.accordion-panel.active {
  display: block;
}

/* =========================================================
   FILE ROW
   ========================================================= */

.file-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  border-top: 1px solid #eef1f4;
  gap: 30px;
}

.file-row:first-child {
  border-top: none;
}

.file-main {
  flex: 1;
  min-width: 0;
}

.file-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.file-title a {
  text-decoration: none;
  color: #002b45;
  display: block;
}

.file-title a:hover {
  color: var(--ifrc-red);
}

.file-meta {
  font-size: 0.85rem;
  color: #6b7280;
}

.file-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.file-actions .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  background: var(--ifrc-red);
  color: #fff;
}

.file-actions .btn.outline {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #002b45;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

  .toolbox-editorial-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .file-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .file-actions {
    justify-content: flex-start;
  }

  .toolbox-library h3,
  .toolbox-library p,
  .toolbox-editorial-grid {
    padding: 0 30px;
  }

}

/* =========================================================
   ENTRANCE ANIMATION
   ========================================================= */

.toolbox-editorial-content,
.toolbox-highlight-box {
  opacity: 0;
  transform: translateY(40px);
  animation: toolboxFadeUp 0.8s ease forwards;
}

.toolbox-highlight-box {
  animation-delay: 0.2s;
}

@keyframes toolboxFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   SUPPLY CHAIN UNITS PAGE
   ========================================================= */

.scu-page{
  background:var(--bg);
}

/* SCU hero, IFRC colours */
.scu-hero {
  position: relative;
  min-height: 420px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 96px 80px;

  background-image:
    url('../images/scmteam.png'); /* you can change image */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* keep content column nice and narrow */
.scu-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.scu-hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.scu-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 8px 0 10px;
}
.scu-hero-subtitle {
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.7;
}
.scu-hero-title,
.scu-hero-subtitle,
.scu-hero-eyebrow {
  text-shadow: 0 9px 24px rgba(0,0,0,0.8);
}

@media (max-width: 900px) {
  .scu-hero {
    min-height: 360px;
    padding: 72px 32px 56px;
    align-items: flex-end;
  }
}
@media (max-width: 600px) {
  .scu-hero {
    padding: 64px 20px 48px;
  }
}

/* Intro card */
.scu-intro p:last-child{margin-bottom:0}

/* Units grid */
.scu-units{
  margin-top:22px;
}
.scu-units__header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-bottom:18px;
}
.scu-units__header h3{
  margin:0;
}
.scu-units__subtitle{
  margin:4px 0 0;
  font-size:.96rem;
  color:#4b5563;
}

/* cards grid */
.scu-units__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
@media (max-width:1024px){
  .scu-units__grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:700px){
  .scu-units__grid{grid-template-columns:1fr;}
}

/* individual card */
.scu-unit{
  background:#ffffff;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(15,23,42,0.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .18s ease, box-shadow .18s ease;
}
.scu-unit__image{
  height:150px;
  background-size:cover;
  background-position:center;
}
.scu-unit__body{
  padding:14px 16px 10px;
}
.scu-unit__body h4{
  margin:0 0 6px;
  font-size:1.05rem;
  color:#111827;
}
.scu-unit__body p{
  margin:0;
  font-size:.94rem;
  line-height:1.6;
  color:#4b5563;
}
.scu-unit__footer{
  padding:10px 16px 14px;
  margin-top:auto;
}

/* hover effect */
.scu-unit:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(15,23,42,0.16);
}

/* link in footer */
.scu-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.88rem;
  font-weight:600;
  text-decoration:none;
  color:#ee2435;
}
.scu-link::after{
  content:"›";
  font-size:1rem;
  transform:translateY(1px);
}
.scu-link:hover{
  text-decoration:underline;
}

/* =========================================================
   OTHER RESOURCES – SUPPLY CHAIN LEARNING
   Replace the old OR section in style.css with this
   ========================================================= */

/* ---------- HERO ---------- */
.or-hero {
  background-image: url('../images/scmteam.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================================
   PAGE & TWO-COLUMN LAYOUT
   ========================================================= */
.or-page { background: #f5f7f9; }

.or-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  align-items: start;
  gap: 0;
}

/* =========================================================
   SIDEBAR – WHITE / FEDNET STYLE
   ========================================================= */
.or-sidebar {
  position: sticky;
  top: 80px;
  padding: 32px 0;
  border-right: 1px solid #e5e7eb;
}

.or-sidenav { padding-right: 8px; }

.or-sidenav-group {
  margin-bottom: 24px;
}

.or-sidenav-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.or-sidenav-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 0 12px;
  margin-bottom: 6px;
}

.or-sidenav-link {
  display: block;
  padding: 7px 12px;
  font-size: .875rem;
  color: #4b5563;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  border-radius: 0 6px 6px 0;
}
.or-sidenav-link:hover {
  color: #111827;
  background: #f3f4f6;
}
.or-sidenav-link.active {
  color: #ee2435;
  border-left-color: #ee2435;
  font-weight: 600;
  background: #fff1f2;
}

/* =========================================================
   MAIN CONTENT
   ========================================================= */
.or-content {
  padding: 36px 0 0 48px;
}

.or-section {
  margin-bottom: 0;
  padding: 36px 0;
  scroll-margin-top: 90px;
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
}
.or-section p { margin-bottom: 16px; }
.or-section strong { color: #111827; }

.or-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0;
}

/* =========================================================
   SECTION TITLES
   ========================================================= */
.or-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}
.or-section-sub {
  font-size: .925rem;
  color: #6b7280;
  margin: 0 0 24px;
}

/* =========================================================
   FEDNET CTA
   ========================================================= */
.sc-fednet-cta {
  margin-top: 24px;
  padding: 18px 22px;
  background: #fff;
  border-left: 4px solid #ee2435;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.sc-fednet-cta p {
  margin-bottom: 12px;
  font-size: .975rem;
  color: #374151;
}

/* =========================================================
   DOCUMENT PLACEHOLDER
   ========================================================= */
.or-doc-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 24px;
  background: #fff;
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  text-align: center;
  color: #9ca3af;
}
.or-doc-placeholder p {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0;
}
.or-doc-placeholder span {
  font-size: .875rem;
  color: #9ca3af;
}

/* =========================================================
   TRAINING FLIP CARDS
   ========================================================= */
.or-training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.or-flip-card {
  height: 380px;
  perspective: 1200px;
}

.or-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.or-flip-card.is-flipped .or-flip-inner {
  transform: rotateY(180deg);
}

.or-flip-front,
.or-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

/* Front */
.or-flip-front {
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.or-flip-card:hover .or-flip-front {
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.or-training-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.or-training-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .3s;
  border-radius: 0;
  margin-bottom: 0;
}
.or-flip-card:hover .or-training-img-wrap img { transform: scale(1.04); }

.or-training-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.or-flip-front h3 {
  font-size: .95rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.or-flip-front p {
  font-size: .825rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
  overflow-y: auto;
  max-height: 60px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}
.or-flip-front p::-webkit-scrollbar { width: 4px; }
.or-flip-front p::-webkit-scrollbar-track { background: transparent; }
.or-flip-front p::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }
.or-flip-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  font-size: .875rem;
  font-weight: 600;
  color: #ee2435;
  cursor: pointer;
  margin-top: auto;
  transition: gap .15s;
}
.or-flip-card:hover .or-flip-btn { gap: 8px; }

/* Back */
.or-flip-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  border-left: 4px solid #ee2435;
  box-shadow: 0 6px 24px rgba(238,36,53,.1);
}
.or-flip-back-close {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  color: #9ca3af;
  padding: 0;
  margin-bottom: 14px;
  transition: color .15s;
  align-self: flex-start;
}
.or-flip-back-close:hover { color: #ee2435; }
.or-flip-back h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
  line-height: 1.3;
}
.or-flip-back p {
  font-size: .875rem;
  line-height: 1.65;
  color: #4b5563;
  flex: 1;
  margin: 0 0 16px;
  overflow-y: auto;
  max-height: 160px;
  padding-right: 4px;
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}
.or-flip-back p::-webkit-scrollbar { width: 4px; }
.or-flip-back p::-webkit-scrollbar-track { background: transparent; }
.or-flip-back p::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }
.or-flip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  background: #ee2435;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
  align-self: flex-start;
  margin-top: auto;
}
.or-flip-link:hover { background: #c81e2c; }
.or-flip-link::after { content: none; }

/* =========================================================
   MAPPING
   ========================================================= */
.sc-mapping-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}
.sc-mapping-box img { width: 100%; border-radius: 8px; }
.sc-mapping-box h3 { font-size: 1.2rem; margin: 0 0 10px; }
.sc-mapping-box p  { font-size: .95rem; line-height: 1.7; color: #4b5563; }

/* =========================================================
   VIDEOS & CATALOGUES
   ========================================================= */
.or-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.or-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.or-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

.or-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: center/cover no-repeat;
  position: relative;
}
.or-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(0,0,0,.22);
  opacity: 0;
  transition: opacity .2s;
}
.or-card:hover .or-play-btn { opacity: 1; }

.or-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.or-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
}
.or-body p {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 14px;
}
.or-link {
  font-size: .875rem;
  font-weight: 600;
  color: #ee2435;
  text-decoration: none;
}
.or-link::after { content: " ›"; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1    { transition-delay: .15s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .or-layout { grid-template-columns: 190px 1fr; }
  .or-training-grid { grid-template-columns: repeat(2, 1fr); }
  .or-flip-card { height: 400px; }
}

@media (max-width: 768px) {
  .or-layout {
    grid-template-columns: 1fr;
    padding: 0 16px 60px;
  }
  .or-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
  }
  .or-content { padding: 24px 0 0; }
  .or-training-grid { grid-template-columns: repeat(2, 1fr); }
  .or-grid { grid-template-columns: 1fr; }
  .sc-mapping-box { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .or-training-grid { grid-template-columns: 1fr; }
  .or-flip-card { height: 420px; }
}
/* =========================================================
   HOME – MEET THE TEAM SNAPSHOT
   ========================================================= */

.home-team {
  position: relative;
  overflow: hidden;
}

.home-team::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, #011E41 0%, #ee2435 55%, #ffffff 100%);
  opacity: 0.12;
  pointer-events: none;
}

.home-team > * {
  position: relative;
  z-index: 1;
}

.home-team__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

.home-team__header h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  color: #011E41;
}

.home-team__header p {
  margin: 0;
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* “View full team” button */
.home-team__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid #ee2435;
  color: #ee2435;
  background: rgba(238, 36, 53, 0.06);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease,
              transform 0.18s ease;
}

.home-team__cta:hover {
  background: #ee2435;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

/* cards grid */
.home-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .home-team__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-team__grid {
    grid-template-columns: 1fr;
  }
}

/* individual card */
.home-team__card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(1, 30, 65, 0.10);
  padding: 18px 16px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-team__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(1, 30, 65, 0.18);
}

/* avatar */
.home-team__avatar {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow:
    0 0 0 3px #ffffff,
    0 0 0 6px rgba(238, 36, 53, 0.35);
}

.home-team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* text */
.home-team__name {
  margin: 0 0 4px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #011E41;
}

.home-team__role {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
}

.home-team__meta {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* =========================================================
   OUR SERVICES PAGE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.lsp-hero {
  background-image: url('../images/scmteam.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* =========================================================
   INTRO (Two-Column Layout)
   ========================================================= */

.lsp-intro {
  background: #ffffff;
  padding: 40px 20px 60px;
}

.lsp-intro-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.lsp-eyebrow {
  display: inline-block;
  background: var(--ifrc-dark-blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.lsp-intro-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 16px;
  color: #1f2937;
}

.lsp-intro-left p:last-child {
  margin-bottom: 0;
}

/* Right Summary Box */

.lsp-intro-box {
  background: #0f1b3d;
  color: #ffffff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

.lsp-intro-box h3 {
  margin: 0 0 22px;
  font-size: 1.3rem;
  font-weight: 700;
}

.lsp-intro-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lsp-intro-box li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.lsp-intro-box li:last-child {
  margin-bottom: 0;
}

.lsp-intro-box li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--ifrc-red);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

@media (max-width: 900px) {
  .lsp-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lsp-intro-box {
    padding: 35px;
  }
}


/* =========================================================
   EXPLORE OUR SERVICES – CLEAN GRID FIX
   ========================================================= */

.lsp-editorial {
  max-width: 1150px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Proper grid for each service */

.lsp-block {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  position: relative;
}

/* Reverse layout */

.lsp-block--reverse {
  grid-template-columns: 45% 55%;
}

.lsp-block--reverse .lsp-image {
  order: 2;
}

.lsp-block--reverse .lsp-content {
  order: 1;
}

/* Image styling */

.lsp-image {
  width: 100%;
}

.lsp-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  display: block;
}

/* Floating card */

.lsp-content {
  background: #ffffff;
  padding: 55px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  position: relative;
  left: -70px;
  z-index: 2;
  max-width: 500px;
}

.lsp-block--reverse .lsp-content {
  left: 70px;
}

.lsp-content h3 {
  font-size: 1.9rem;
  margin-bottom: 14px;
  color: #003b5c;
}

/* Explore button */

.lsp-readmore {
  font-weight: 700;
  text-decoration: none;
  color: var(--ifrc-red);
  border-bottom: 2px solid var(--ifrc-red);
  padding-bottom: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.lsp-readmore:hover {
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 1024px) {
  .lsp-block,
  .lsp-block--reverse {
    grid-template-columns: 1fr;
  }

  .lsp-content {
    left: 0 !important;
    margin-top: -50px;
  }

  .lsp-image img {
    height: 420px;
  }
}

/* =========================================================
   INLINE EXPANDER
   ========================================================= */

.lsp-inline {
  background: #f4f6f8;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: 
    max-height 0.5s ease,
    opacity 0.3s ease;
}
.lsp-inline.active {
  max-height: 1000px;
  opacity: 1;
  padding: 40px 0 0; /* only top padding */
  margin: 0; /* REMOVE GAP */
}

.lsp-inline-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
  position: relative;
}

.lsp-inline-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 26px;
  font-weight: 600;
  cursor: pointer;
  color: #0b1a33;
  transition: color .2s ease;
}

.lsp-inline-close:hover {
  color: var(--ifrc-red);
}
.lsp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.lsp-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0b1a33;
}

/* =========================================================
   ELEMENTOR OVERRIDE (Fleet Heading)
   ========================================================= */

.elementor-heading-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  letter-spacing: -0.5px;
}

@media (max-width: 1024px) {
  .elementor-heading-title {
    font-size: 37px !important;
    line-height: 1.1em;
    letter-spacing: -1.2px;
  }
}

/* =========================================================
   PREPAREDNESS PAGE – VIDEO + TEXT + SLIDES
   ========================================================= */
/* =========================================================
   PREPAREDNESS HERO – MATCH LSP STYLE
   ========================================================= */

/* =========================================================
   PREPAREDNESS HERO – MATCH LSP LEFT LAYOUT
   ========================================================= */

.prep-hero {
  background-image: url('../images/scmteam.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

 
/* =========================
   VIDEO – FLEET-STYLE CARD
   ========================= */

.prep-video-section {
  background: #eff1f1;              /* keep same grey */
  padding: 90px 0 110px;
}

.prep-video-inner {
  max-width: 1140px;                /* matches Elementor container */
  margin: 0 auto;
  padding: 0 70px;                  /* left/right padding like Fleet block */
  text-align: center;
}

/* PREPAREDNESS label — BIGGER & STRONGER */
.prep-eyebrow {
  display: inline-block;
  font-size: 1.90rem;               /* ⬅ bigger than title */
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: #0b1a33;
  padding: 12px 26px;
  margin-bottom: 28px;
}

/* Title — slightly calmer */
.prep-title {
  font-size: 2rem;                  /* ⬅ smaller than eyebrow */
  font-weight: 700;
  color: #f5333f;
  margin-bottom: 48px;
  line-height: 1.3;
}

/* Bare video embed (NO container, NO shadow) */
.prep-video-embed {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  margin: 0 auto;
}
.prep-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  border-radius: 6px;
}

/* =========================================
   PREPAREDNESS – THREE TEXT STATEMENTS
   ========================================= */

.prep-statements {
  background: #ffffff;
}

/* -----------------------------------------
   BASE STATEMENT BLOCK
----------------------------------------- */

.prep-statement {
  padding: 40px 0px;
  position: relative;
}

.prep-statement-inner {
  max-width: 880px;
  margin: 0 auto;
}

/* Typography */

.prep-statement h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #330b0b;
  letter-spacing: -0.3px;
}

.prep-statement p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 28px;
}

/* -----------------------------------------
   KICKER (Data-driven preparedness)
----------------------------------------- */

.prep-kicker {
  display: inline-block;
  font-size: 1.55rem;
  letter-spacing: 0.90em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ifrc-red);
  margin-bottom: 18px;
}

/* -----------------------------------------
   1. CONTEXT – clean white
----------------------------------------- */

.prep-statement--context {
  background: #ffffff;
}

/* -----------------------------------------
   2. SYSTEM – structured light band
----------------------------------------- */

.prep-statement--system {
  background: #f7f8fa;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* subtle divider line inside band */
.prep-statement--system::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;

}

/* -----------------------------------------
   3. CONCLUSION – emphasis without dark overload
----------------------------------------- */

.prep-statement--conclusion {
  background: #ffffff;
}

.prep-statement--conclusion h3 {
  font-size: 2.4rem;
  color: #0b1a33;
}

.prep-statement--conclusion p {
  font-size: 1.18rem;
  max-width: 760px;
}

/* -----------------------------------------
   SUBTLE ENTRANCE ANIMATION
----------------------------------------- */

.prep-statement-inner {
  opacity: 0;
  transform: translateY(40px);
  animation: prepFadeUp 0.8s ease forwards;
}

.prep-statement:nth-child(2) .prep-statement-inner {
  animation-delay: 0.15s;
}

.prep-statement:nth-child(3) .prep-statement-inner {
  animation-delay: 0.3s;
}

@keyframes prepFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */

@media (max-width: 992px) {

  .prep-statement {
    padding: 100px 20px;
  }

  .prep-statement h3 {
    font-size: 1.8rem;
  }

  .prep-statement p {
    font-size: 1rem;
    line-height: 1.75;
  }

}

/* =========================
   SLIDES – SIDE BY SIDE
   ========================= */

.prep-slides-section {
  background: #f4f6f8;
  padding: 120px 20px;
}

.prep-slides-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.prep-slides-inner img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .prep-video-inner {
    max-width: 100%;
    padding: 0 40px;
  }


@media (max-width: 768px) {
  .prep-eyebrow {
    font-size: 0.95rem;
  }

  .prep-title {
    font-size: 1.7rem;
  }
}

  .prep-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .prep-video-inner {
    padding: 0 16px;
  }

  .prep-title {
    font-size: 1.8rem;
  }

  .prep-statement {
    padding: 90px 16px;
  }

  .prep-statement h3 {
    font-size: 1.5rem;
  }

  .prep-slides-inner {
    grid-template-columns: 1fr;
  }
}
/* Center only Data-driven title */
.prep-center {
  display: block;
  width: fit-content;
  margin: 0 auto 32px auto;
  text-align: center;
}
/* Center ONLY Data-driven preparedness */
.prep-block-title--center {
  display: block;
  width: fit-content;
  margin: 0 auto 32px auto;
  text-align: center;
}
/* Only Data-driven preparedness in red */
.prep-data-red {
  color: #ee2435 !important;
}