/* ============================================================
   Health Foresight Pharma Ltd. — Main Stylesheet v2.0
   Brand: Deep Blue #1a4a7a | Orange #e67e22 | White | Light Gray
   ============================================================ */

/* Fonts are loaded via non-blocking <link> tags in each HTML file.
   System fonts below ensure the page renders immediately without fonts. */

/* ─── CSS Custom Properties ─── */
:root {
  --blue-dark:   #1a4a7a;
  --blue-mid:    #1e5a96;
  --blue-light:  #2d7dd2;
  --blue-pale:   #eef4fb;
  --orange:      #e67e22;
  --orange-dark: #cf6d17;
  --orange-light:#f39c12;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --text-body:   #334155;
  --text-muted:  #64748b;
  --success:     #10b981;
  --danger:      #ef4444;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(26,74,122,.12), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(26,74,122,.18), 0 4px 14px rgba(0,0,0,.08);
  --shadow-xl:  0 24px 64px rgba(26,74,122,.22);
  --shadow-nav: 0 2px 20px rgba(0,0,0,.1);

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --navbar-h:   72px;
  --dropdown-delay: 150ms;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.25; color: var(--blue-dark); font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-body); }

/* ─── Utility ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section--blue { background: var(--blue-dark); color: var(--white); }
.section--pale { background: var(--blue-pale); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 620px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }

.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; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 2rem; border-radius: var(--radius-xl);
  font-family: var(--font-heading); font-weight: 600; font-size: .9rem;
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); box-shadow: 0 4px 18px rgba(230,126,34,.3); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,126,34,.4); }
.btn-blue { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }
.btn-blue:hover { background: var(--blue-mid); transform: translateY(-2px); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); transform: translateY(-2px); }
.btn-outline-blue { border-color: var(--blue-dark); color: var(--blue-dark); }
.btn-outline-blue:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-orange { border-color: var(--orange); color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.4rem; font-size: .82rem; }

/* ─── ════════════════════════════════════════
   NAVBAR — Complex 11-item + dropdowns
   ════════════════════════════════════════ ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--navbar-h); z-index: 1000;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-nav); }

.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; gap: 1rem;
}

/* Logo */
.navbar__logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar__logo-img { height: 50px; width: auto; max-width: 210px; object-fit: contain; display: block; }
.footer__logo-img { height: 44px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.logo-text-wrap { display: none; }

/* Desktop nav links container */
.navbar__links {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: flex-end;
}

/* Plain nav links */
.navbar__links > a {
  font-size: .82rem; font-weight: 500; color: var(--gray-800);
  padding: .5rem .7rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap; position: relative;
}
.navbar__links > a:hover,
.navbar__links > a.active { color: var(--blue-dark); }
.navbar__links > a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%; height: 2px; background: var(--orange);
  border-radius: 2px; transition: transform var(--transition);
}
.navbar__links > a:hover::after,
.navbar__links > a.active::after { transform: translateX(-50%) scaleX(1); }
.navbar__links > a.btn-primary { padding: .55rem 1.2rem; }
.navbar__links > a.btn-primary::after { display: none; }

/* ─── Dropdown Nav Item ─── */
.nav-dropdown-wrap {
  position: relative; display: flex; align-items: center;
}
/* HOVER BRIDGE — invisible 12px tall pseudo-element that fills the gap
   between the button and the dropdown panel, preventing it from closing
   when the mouse moves from the button down toward the dropdown. */
.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 16px;
  background: transparent;
  display: none;
}
.nav-dropdown-wrap:hover::after { display: block; }

.nav-dropdown-btn {
  display: flex; align-items: center; gap: .3rem;
  font-size: .82rem; font-weight: 500; color: var(--gray-800);
  padding: .5rem .7rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap; background: none; border: none;
  cursor: pointer; font-family: var(--font-body);
}
.nav-dropdown-btn i {
  font-size: .6rem; transition: transform var(--transition);
  color: var(--text-muted);
}
.nav-dropdown-wrap:hover .nav-dropdown-btn,
.nav-dropdown-wrap.open .nav-dropdown-btn { color: var(--blue-dark); }
.nav-dropdown-wrap:hover .nav-dropdown-btn i,
.nav-dropdown-wrap.open .nav-dropdown-btn i { transform: rotate(180deg); color: var(--orange); }

/* Dropdown panel — top is 100% + padding, bridge fills the gap */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 240px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1001;
  overflow: hidden;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1.2rem; font-size: .85rem;
  color: var(--text-body); transition: all var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--blue-pale); color: var(--blue-dark); padding-left: 1.5rem; }
.nav-dropdown a::before { content: ''; width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ─── Hamburger ─── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; border-radius: var(--radius-sm);
  transition: background var(--transition); background: none; border: none;
}
.hamburger:hover { background: rgba(26,74,122,.06); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue-dark); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed; top: var(--navbar-h); left: 0; right: 0; bottom: 0;
  background: var(--white); overflow-y: auto;
  transform: translateX(-100%); opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  z-index: 998; padding: 1rem 0 3rem;
  border-top: 1px solid var(--gray-200);
}
.mobile-menu.open { transform: translateX(0); opacity: 1; }

.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem; font-size: .95rem; font-weight: 500;
  color: var(--text-body); border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--blue-dark); background: var(--blue-pale); }
.mobile-nav-link i { font-size: .75rem; color: var(--text-muted); transition: transform var(--transition); }
.mobile-nav-link.has-sub.open i { transform: rotate(180deg); }
.mobile-nav-link.plain { display: block; }

.mobile-sub {
  background: var(--gray-50); overflow: hidden;
  max-height: 0; transition: max-height 0.35s ease;
}
.mobile-sub.open { max-height: 500px; }
.mobile-sub a {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1.5rem .75rem 2.25rem;
  font-size: .88rem; color: var(--text-muted);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-sub a::before { content: ''; width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.mobile-sub a:hover { color: var(--blue-dark); }
.mobile-cta { padding: 1.5rem; }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: var(--navbar-h);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center; z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,74,122,.93) 0%, rgba(26,74,122,.8) 55%, rgba(26,74,122,.55) 100%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; color: var(--white); max-width: 780px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: .4rem 1rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: 1.5rem;
}
.hero__eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .highlight { color: var(--orange-light); }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 2.5rem; line-height: 1.85; max-width: 640px; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: calc(var(--navbar-h) + 3.5rem) 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 680px; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb a:hover { color: var(--white); }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--blue-mid);
  padding: 2rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  text-align: center;
}
.stat-item {}
.stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--orange-light); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .3rem; font-weight: 500; }

/* ─── About Snippet ─── */
.about-snippet { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-snippet__img-wrap { position: relative; }
.about-snippet__img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-snippet__badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--orange); color: var(--white);
  padding: 1.2rem 1.5rem; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-snippet__badge .badge-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; line-height: 1; display: block; }
.about-snippet__badge .badge-text { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.about-snippet__content { padding: 1rem 0; }
.about-snippet__content .eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .75rem; display: block; }
.about-snippet__content h2 { margin-bottom: 1.25rem; }
.about-snippet__content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.check-list { margin: 1.25rem 0; display: flex; flex-direction: column; gap: .65rem; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .93rem; color: var(--text-body); }
.check-list li svg { flex-shrink: 0; color: var(--orange); margin-top: .12rem; }

/* ─── Cards - Grid ─── */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* Standard card */
.card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem 1.75rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: linear-gradient(90deg, var(--blue-dark), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(26,74,122,.15); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(26,74,122,.1), rgba(26,74,122,.05));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: all var(--transition);
}
.card:hover .card__icon { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.card__icon svg, .card__icon i { color: var(--blue-dark); transition: color var(--transition); font-size: 1.4rem; }
.card:hover .card__icon svg, .card:hover .card__icon i { color: var(--white); }
.card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.25rem; font-size: .85rem; font-weight: 600;
  color: var(--blue-dark); transition: gap var(--transition), color var(--transition);
}
.card:hover .card__link { gap: .7rem; color: var(--orange); }

/* Product card */
.product-card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: all var(--transition); overflow: hidden;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card__img {
  background: linear-gradient(135deg, var(--blue-pale), var(--gray-100));
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__img .prod-icon { font-size: 3.5rem; color: var(--blue-dark); opacity: .3; }
.product-card__body { padding: 1.5rem; }
.product-card__cat { display: inline-block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: .5rem; }
.product-card__body h3 { font-size: 1rem; margin-bottom: .4rem; }
.product-card__body p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.product-card__meta { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.product-card__meta span { font-size: .78rem; color: var(--text-muted); }
.product-card__meta span strong { color: var(--text-body); }

/* Value/Why cards */
.value-card {
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-md); padding: 2rem 1.75rem; transition: all var(--transition);
}
.value-card:hover { background: rgba(255,255,255,.2); transform: translateY(-4px); }
.value-card__num { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: rgba(255,255,255,.15); line-height: 1; margin-bottom: -.75rem; }
.value-card__icon { width: 44px; height: 44px; background: rgba(230,126,34,.3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-card__icon i, .value-card__icon svg { color: var(--orange-light); font-size: 1.2rem; }
.value-card h3 { color: #ffffff; font-size: 1rem; margin-bottom: .6rem; }
.value-card p { color: rgba(255,255,255,.88); font-size: .86rem; line-height: 1.65; }

/* Core Values cards (about page) */
.corevalue-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  text-align: center; transition: all var(--transition);
}
.corevalue-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.corevalue-card__icon {
  width: 68px; height: 68px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.corevalue-card__icon i { color: var(--white); font-size: 1.6rem; }
.corevalue-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.corevalue-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }

/* Market/Target card */
.market-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2.25rem 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); transition: all var(--transition); text-align: center;
}
.market-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.market-card__icon {
  width: 72px; height: 72px; background: linear-gradient(135deg, rgba(26,74,122,.1), rgba(26,74,122,.05));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; transition: all var(--transition);
}
.market-card:hover .market-card__icon { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.market-card__icon i { color: var(--blue-dark); font-size: 1.8rem; transition: color var(--transition); }
.market-card:hover .market-card__icon i { color: var(--white); }
.market-card h3 { font-size: 1.05rem; margin-bottom: .7rem; }
.market-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Services Detail ─── */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding: 3.5rem 0; border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }
.service-block__icon {
  width: 72px; height: 72px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-block__icon i { color: var(--white); font-size: 2rem; }
.service-block h2 { margin-bottom: 1rem; font-size: 1.6rem; }
.service-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.service-block__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.service-block__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-block__img-placeholder {
  background: linear-gradient(135deg, var(--blue-pale), var(--gray-100));
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
}
.service-block__img-placeholder i { font-size: 4rem; color: var(--blue-dark); opacity: .25; }

/* ─── Quality Page ─── */
.quality-section { padding: 3.5rem 0; border-bottom: 1px solid var(--gray-200); }
.quality-section:last-child { border-bottom: none; }
.qa-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.qa-pillar {
  background: rgba(255,255,255,.08); border-radius: var(--radius-md);
  padding: 1.5rem; text-align: center;
  border: 1px solid rgba(255,255,255,.12); transition: all var(--transition);
}
.qa-pillar:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.qa-pillar i { color: var(--orange-light); font-size: 1.8rem; margin-bottom: .75rem; display: block; }
.qa-pillar h4 { color: var(--white); font-size: .95rem; margin-bottom: .4rem; }
.qa-pillar p { color: rgba(255,255,255,.65); font-size: .82rem; margin: 0; }

/* ─── Partners ─── */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.partner-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  text-align: center; transition: all var(--transition);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-card__logo {
  width: 100%; height: 80px;
  background: var(--gray-100); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 2rem; color: var(--gray-400);
}
.partner-card h4 { font-size: .95rem; margin-bottom: .4rem; }
.partner-card p { font-size: .82rem; color: var(--text-muted); }

/* ─── News Cards ─── */
.news-card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  overflow: hidden; transition: all var(--transition);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-card__img {
  background: linear-gradient(135deg, var(--blue-pale), var(--gray-100));
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
}
.news-card__img i { font-size: 3rem; color: var(--blue-dark); opacity: .2; }
.news-card__body { padding: 1.5rem; }
.news-card__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; flex-wrap: wrap; }
.news-card__date { font-size: .78rem; color: var(--text-muted); }
.news-card__cat { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); background: rgba(230,126,34,.1); padding: .2rem .6rem; border-radius: 100px; }
.news-card__body h3 { font-size: 1rem; margin-bottom: .6rem; }
.news-card__body p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }

/* ─── Download Cards ─── */
.download-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 1.25rem; transition: all var(--transition);
}
.download-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: rgba(26,74,122,.2); }
.download-card__icon {
  width: 56px; height: 56px; background: rgba(230,126,34,.1); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.download-card__icon i { color: var(--orange); font-size: 1.6rem; }
.download-card__info { flex: 1; }
.download-card__info h4 { font-size: .95rem; margin-bottom: .2rem; }
.download-card__info p { font-size: .82rem; color: var(--text-muted); }
.download-card__btn { flex-shrink: 0; }

/* ─── Career Cards ─── */
.job-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.job-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; }
.job-card h3 { font-size: 1rem; }
.job-tag { font-size: .72rem; font-weight: 600; background: var(--blue-pale); color: var(--blue-dark); padding: .25rem .75rem; border-radius: 100px; white-space: nowrap; }
.job-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.job-card__meta { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.job-card__meta span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.job-card__meta span i { color: var(--blue-light); }

/* ─── Contact Page ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  display: flex; align-items: flex-start; gap: 1rem; transition: all var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card__icon {
  width: 46px; height: 46px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card__icon i { color: var(--white); font-size: 1.1rem; }
.contact-card h4 { color: var(--blue-dark); margin-bottom: .2rem; font-size: .88rem; }
.contact-card a, .contact-card p, .contact-card span { color: var(--text-muted); font-size: .88rem; display: block; }
.contact-card a:hover { color: var(--orange); }

.dept-contacts { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.dept-contact-item { display: flex; align-items: center; gap: .75rem; padding: .85rem 1rem; background: var(--gray-50); border-radius: var(--radius-sm); border: 1px solid var(--gray-200); }
.dept-contact-item i { color: var(--blue-dark); width: 20px; text-align: center; }
.dept-contact-item div { flex: 1; }
.dept-contact-item span { display: block; font-size: .75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.dept-contact-item a { font-size: .86rem; color: var(--blue-dark); }
.dept-contact-item a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}
.contact-form-wrap h3 { margin-bottom: .4rem; }
.contact-form-wrap > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem; }

.hours-card { background: var(--white); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); margin-top: 1.25rem; }
.hours-card h4 { color: var(--blue-dark); margin-bottom: 1rem; font-size: .9rem; }
.hours-row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--gray-100); font-size: .85rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-muted); }
.hours-row span:last-child { font-weight: 600; color: var(--text-body); }

.map-wrap {
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); margin-top: 1.25rem;
  background: var(--gray-100); min-height: 220px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: .75rem; padding: 2rem; text-align: center;
}
.map-wrap i { font-size: 2.5rem; color: var(--blue-dark); opacity: .3; }
.map-wrap p { font-size: .86rem; color: var(--text-muted); }
.map-wrap a { font-weight: 600; color: var(--blue-dark); font-size: .88rem; }

/* ─── Forms ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--blue-dark); text-transform: uppercase; letter-spacing: .06em; }
/* Exclude checkboxes and radio buttons from the text-input rule */
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem; color: var(--text-body);
  background: var(--gray-50); transition: all var(--transition); outline: none; appearance: none;
}
.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid); background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,90,150,.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: .5rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: #155724; background: #d4edda; border-radius: var(--radius-md);
  border: 1px solid #c3e6cb; font-weight: 600; margin-top: 1rem;
}

/* ─── Checkbox Group (RFQ categories) ─── */
.form-checkbox-group {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
}
/* Hide the native checkbox but keep it accessible */
.checkbox-label input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
/* Tile that acts as the visible checkbox */
.checkbox-label {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  cursor: pointer;
  font-size: .88rem; font-weight: 500; color: var(--text-body);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  user-select: none;
  position: relative;
}
/* Custom checkmark box */
.checkbox-label::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  transition: all .18s ease;
  display: flex; align-items: center; justify-content: center;
}
/* Hover state */
.checkbox-label:hover {
  border-color: var(--blue-mid);
  background: var(--blue-pale);
  box-shadow: 0 0 0 3px rgba(30,90,150,.07);
}
.checkbox-label:hover::before { border-color: var(--blue-mid); }
/* Checked state — tile turns blue */
.checkbox-label:has(input:checked) {
  border-color: var(--blue-dark);
  background: var(--blue-pale);
  color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(26,74,122,.1);
}
/* Checked state — box fills with blue + checkmark */
.checkbox-label:has(input:checked)::before {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
/* Fallback for older browsers without :has() */
.form-checkbox { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--text-body); padding: .5rem; }
.form-checkbox input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue-dark); cursor: pointer; }

/* ─── Contact Strip ─── */
.contact-strip {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius-lg); padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.contact-strip h2 { color: var(--white); margin-bottom: .4rem; font-size: 1.6rem; }
.contact-strip p { color: rgba(255,255,255,.75); }
.contact-details { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.contact-item { display: flex; align-items: flex-start; gap: .85rem; }
.contact-item__icon { width: 42px; height: 42px; background: rgba(255,255,255,.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item__icon i { color: var(--orange-light); }
.contact-item__text span { display: block; font-size: .72rem; color: rgba(255,255,255,.6); margin-bottom: .1rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.contact-item__text a, .contact-item__text p { color: var(--white); font-size: .88rem; font-weight: 500; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-xl); padding: 3.5rem 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: -40px; left: -40px; width: 200px; height: 200px; background: rgba(255,255,255,.07); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 280px; height: 280px; background: rgba(255,255,255,.05); border-radius: 50%; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 550px; margin: 0 auto 2rem; position: relative; }
.cta-banner .btn { position: relative; }

/* ─── Tenders Page ─── */
.capability-list { display: flex; flex-direction: column; gap: .75rem; }
.capability-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.capability-item:hover { border-color: rgba(26,74,122,.2); transform: translateX(4px); }
.capability-item i { color: var(--blue-dark); width: 24px; text-align: center; font-size: 1.1rem; flex-shrink: 0; }
.capability-item span { font-size: .9rem; color: var(--text-body); font-weight: 500; }

/* ─── Footer ─── */
.footer { background: var(--gray-800); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand p { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.7; margin-top: 1rem; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .6rem; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all var(--transition); font-size: .9rem;
}
.social-link:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.footer__col h4 { color: var(--white); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.footer__col ul li { margin-bottom: .55rem; }
.footer__col ul li a { color: rgba(255,255,255,.55); font-size: .86rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--orange-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: .8rem; }
.footer__bottom a { color: var(--orange-light); }
.footer__legal { display: flex; gap: 1.5rem; }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px; background: var(--orange);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: all var(--transition);
  opacity: 0; pointer-events: none; z-index: 900; font-size: 1rem;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--orange-dark); }

/* ─── Scroll Animations ─── */
/* SAFE VERSION: opacity is NEVER changed. Content is always visible.
   Only a subtle upward slide plays when elements enter view. */
.animate-on-scroll {
  /* NO opacity:0 — content always visible */
  transition: transform 0.5s ease;
}
.animate-on-scroll.in-view {
  transform: translateY(0);
}
/* Stagger delays — only affect timing, never visibility */
.animate-delay-1 { transition-delay: .08s; }
.animate-delay-2 { transition-delay: .16s; }
.animate-delay-3 { transition-delay: .24s; }
.animate-delay-4 { transition-delay: .32s; }
.animate-delay-5 { transition-delay: .40s; }
.animate-delay-6 { transition-delay: .48s; }



/* ─── RFQ Page ─── */
.rfq-wrap { max-width: 860px; margin: 0 auto; }
.rfq-wrap .contact-form-wrap { padding: 3rem; }
.rfq-section-title { font-family: var(--font-heading); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-dark); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--blue-pale); }

/* ─── Vision Mission ─── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.vm-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem; box-shadow: var(--shadow-md); border-top: 4px solid var(--orange); transition: transform var(--transition);
}
.vm-card:hover { transform: translateY(-4px); }
.vm-card__icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.vm-card__icon i { color: var(--white); font-size: 1.3rem; }
.vm-card h3 { margin-bottom: .75rem; font-size: 1.1rem; }
.vm-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.75; }

/* QA Blue Section */
.qa-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius-xl); padding: 4rem; color: var(--white); position: relative; overflow: hidden;
}
.qa-section::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; background: rgba(255,255,255,.04); border-radius: 50%; }
.qa-section h2 { color: var(--white); margin-bottom: 1.5rem; }
.qa-section p { color: rgba(255,255,255,.78); line-height: 1.85; margin-bottom: 1.25rem; }

/* ─── Responsive ─── */
@media (max-width: 1280px) {
  .navbar__links > a { padding: .5rem .55rem; font-size: .78rem; }
  .nav-dropdown-btn { font-size: .78rem; padding: .5rem .55rem; }
}

@media (max-width: 1100px) {
  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-snippet { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-snippet__badge { bottom: -1rem; right: 1rem; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block--reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .qa-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .section { padding: 3.5rem 0; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-strip { padding: 2rem; flex-direction: column; }
  .contact-details { flex-direction: column; gap: 1.25rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .qa-section { padding: 2.5rem 1.5rem; }
  .qa-pillars { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .form-checkbox-group { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .rfq-wrap .contact-form-wrap { padding: 1.5rem; }
  /* Stronger contrast for value-cards stacked on mobile */
  .value-card {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
  }
  .value-card h3 { color: #ffffff; font-size: 1.05rem; }
  .value-card p  { color: rgba(255,255,255,.95); font-size: .9rem; }
  .value-card__num { color: rgba(255,255,255,.2); }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 1rem; }
  .btn { padding: .75rem 1.4rem; font-size: .84rem; }
  .partner-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   ADDENDUM — Missing class definitions
   ════════════════════════════════════════ */

/* ─── Standalone eyebrow (outside section-header) ─── */
.eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: .75rem;
}

/* ─── Service block: named child wrappers ─── */
/* Used in tenders.html and services.html as __content / __image */
.service-block__content { }
.service-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ─── Image placeholder (used in service blocks) ─── */
.img-placeholder {
  background: linear-gradient(135deg, var(--blue-pale), var(--gray-100));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.img-placeholder i { font-size: 4rem; color: var(--blue-dark); opacity: .22; }
.img-placeholder span {
  font-size: .85rem; color: var(--text-muted);
  font-weight: 500; text-align: center;
}

/* ─── CTA Banner: when used as a <section> element directly ─── */
section.cta-banner {
  border-radius: 0;
  padding: 5rem 0;
}
section.cta-banner > .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ─── CTA Banner actions (button group) ─── */
.cta-banner__actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}

/* ─── Check-list: FA icon variant (instead of SVG) ─── */
.check-list li i.fa-solid,
.check-list li i.fa-regular {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: .15rem;
  font-size: .85rem;
  width: 16px; text-align: center;
}

/* ─── Department contacts (contact page) ─── */
.dept-contacts {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-top: 1.25rem;
}
.dept-contacts h4 {
  color: var(--blue-dark);
  font-size: .88rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--gray-100);
}
.dept-contacts ul { display: flex; flex-direction: column; gap: .6rem; }
.dept-contacts ul li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .75rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: border-color var(--transition);
}
.dept-contacts ul li:hover { border-color: rgba(26,74,122,.18); }
.dept-contacts ul li > i {
  color: var(--blue-dark); width: 18px;
  text-align: center; margin-top: .18rem; flex-shrink: 0;
}
.dept-contacts ul li > span { flex: 1; line-height: 1.5; }
.dept-contacts ul li strong {
  display: block; font-size: .72rem;
  color: var(--text-muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: .2rem;
}
.dept-contacts ul li a { font-size: .86rem; color: var(--blue-dark); font-weight: 500; }
.dept-contacts ul li a:hover { color: var(--orange); }

/* ─── Capability item: when text is in a <div> child ─── */
.capability-item > div { flex: 1; }
.capability-item > div strong {
  display: block; font-weight: 600;
  color: var(--text-body); font-size: .9rem; margin-bottom: .2rem;
}
.capability-item > div p {
  font-size: .84rem; color: var(--text-muted);
  margin: 0; line-height: 1.65;
}

/* ─── Product card: make icon fully visible ─── */
.product-card__img .prod-icon {
  opacity: 1 !important;
  font-size: 3.5rem;
  color: var(--blue-dark);
}

/* ─── News card: read-more link ─── */
.news-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .84rem; font-weight: 600; color: var(--blue-dark);
  transition: gap var(--transition), color var(--transition);
}
.news-card:hover .news-card__link { gap: .7rem; color: var(--orange); }

/* ─── Filter bar (news page) ─── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2.5rem;
}
.filter-bar .btn { font-size: .8rem; padding: .5rem 1.2rem; }

/* ─── Info strip (rfq, contact) ─── */
.info-strip {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; justify-content: center;
}
.info-strip .contact-item__text span { color: var(--text-muted); }
.info-strip .contact-item__text a,
.info-strip .contact-item__text p { color: var(--text-body); }
.info-strip .contact-item__icon { background: var(--blue-pale); }
.info-strip .contact-item__icon i { color: var(--blue-dark); }

/* ─── Download card: brochure (card-style, used in downloads) ─── */
.brochure-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  text-align: center; transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.brochure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brochure-card i { font-size: 2.5rem; color: var(--orange); }
.brochure-card h4 { font-size: .95rem; color: var(--blue-dark); margin: 0; }
.brochure-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ─── Note box (informational callout) ─── */
.note-box {
  border-left: 4px solid var(--blue-dark);
  background: var(--blue-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  font-size: .88rem; color: var(--text-body);
  margin: 1.5rem 0;
}
.note-box.warning {
  border-color: var(--orange);
  background: rgba(230,126,34,.08);
}
.note-box i { margin-right: .5rem; color: var(--blue-dark); }
.note-box.warning i { color: var(--orange); }

/* ─── WhatsApp Floating Button ─── */
.whatsapp-float {
  position: fixed; bottom: 5.75rem; right: 2rem;
  width: 52px; height: 52px;
  background: #25D366; color: #ffffff;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; z-index: 899;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: all var(--transition);
  text-decoration: none;
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #128c4a; color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,.6);
  animation: none;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.12); }
}

/* ─── Favicon placeholder (injected via JS) ─── */

/* ─── 404 page ─── */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: var(--navbar-h) 1.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #fff 60%);
}
.error-page__inner { max-width: 540px; }
.error-page__code {
  font-family: var(--font-heading); font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 800; color: var(--blue-dark); line-height: 1;
  opacity: .12; margin-bottom: -.5rem; letter-spacing: -.04em;
}
.error-page__icon {
  font-size: 4rem; color: var(--orange);
  margin-bottom: 1.5rem; display: block;
}
.error-page h1 { margin-bottom: 1rem; font-size: clamp(1.5rem,4vw,2rem); }
.error-page p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.error-page__links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Print styles ─── */
@media print {
  .navbar, .mobile-menu, .back-to-top, .whatsapp-float,
  .hero__cta, .cta-banner, .footer { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #1a4a7a; }
  .page-hero { padding: 1cm 0; }
  .section { padding: 1cm 0; }
  .card, .product-card { box-shadow: none; border: 1px solid #ccc; }
}

/* ─── Responsive additions ─── */
@media (max-width: 768px) {
  section.cta-banner { padding: 3.5rem 0; }
  .info-strip { flex-direction: column; align-items: flex-start; }
  .filter-bar { gap: .4rem; }
  .error-page__links { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════
   ADDENDUM 2 — Page-specific missing rules
   ════════════════════════════════════════ */

/* ─── News: filter bar (news.html uses .news-filter) ─── */
.news-filter {
  display: flex; flex-wrap: wrap; gap: .6rem;
  padding-bottom: 1.5rem;
}
.news-filter .btn { font-size: .8rem; padding: .5rem 1.2rem; }

/* ─── News: card image placeholder ─── */
.news-card__image {
  overflow: hidden; border-radius: 0;
}
.news-img-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--blue-pale), var(--gray-100));
  display: flex; align-items: center; justify-content: center;
}
.news-img-placeholder i { font-size: 3rem; color: var(--blue-dark); opacity: .2; }

/* ─── News: category badges ─── */
.news-category {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(26,74,122,.08); color: var(--blue-dark);
  padding: .22rem .65rem; border-radius: 100px;
}
.news-category--launch { background: rgba(230,126,34,.1); color: var(--orange-dark); }
.news-category--fda    { background: rgba(16,185,129,.1); color: #047857; }
.news-category--insight{ background: rgba(99,102,241,.1); color: #4338ca; }

/* ─── News: pagination ─── */
.news-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 3rem; flex-wrap: wrap;
}
.pagination-info { font-size: .85rem; color: var(--text-muted); }

/* ─── Newsletter form (news.html) ─── */
.newsletter-form { max-width: 520px; margin: 0 auto; }
.newsletter-form__row {
  display: flex; gap: .75rem; align-items: center;
}
.newsletter-form input[type="email"] {
  flex: 1; padding: .85rem 1.1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
  font-family: var(--font-body); font-size: .9rem; color: var(--text-body);
  background: var(--white); transition: all var(--transition); outline: none;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(30,90,150,.1);
}
@media (max-width: 480px) {
  .newsletter-form__row { flex-direction: column; }
  .newsletter-form input[type="email"] { width: 100%; }
}

/* ─── Downloads: download-list wrapper ─── */
.download-list {
  display: flex; flex-direction: column; gap: 1rem;
}

/* ─── Downloads: download-card h3 (uses h3 not h4) ─── */
.download-card__info h3 {
  font-size: .95rem; margin-bottom: .25rem; color: var(--blue-dark);
}
.download-card__info p {
  font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .5rem;
}
.download-card__meta {
  font-size: .77rem; color: var(--text-muted);
  display: flex; align-items: center; gap: .4rem;
}
.download-card__meta i { font-size: .75rem; }

/* ─── Downloads: Note box content ─── */
.note-box__icon { display: none; }
.note-box__content h4 { font-size: .95rem; margin-bottom: .5rem; color: var(--blue-dark); }
.note-box__content p { margin-bottom: .5rem; }
.note-box__content p:last-child { margin-bottom: 0; }
.note-box__content a { color: var(--blue-dark); font-weight: 600; }
.note-box__content a:hover { color: var(--orange); }
.note-box__content code {
  background: rgba(26,74,122,.08); padding: .1rem .4rem;
  border-radius: 4px; font-size: .84rem; color: var(--blue-dark);
  font-family: 'Courier New', monospace;
}

/* ─── Tenders: CTA banner section override (inline in page) ─── */
section.cta-banner h2 { position: relative; }
section.cta-banner p  { position: relative; }


