﻿/* ============================================================
   TOTALDEV MULTI-PURPOSE COOPERATIVE — STYLESHEET
   Fully responsive: mobile, tablet, desktop, large screens

   NOTE: Each major section below now has a
   "Used in: ..." comment showing which page(s)
   (index, about, services, careers, contact, news, srp,
   privacy) rely on those styles, so it's easier to find
   what to edit. Sections marked "Currently unused /
   reserved styles" are not referenced by any page right now.
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
/* Used in: All pages (global colors, spacing & sizing tokens) */
:root {
  --red:            #FF0000;
  --yellow:         #facc15;
  --blue:           #0000FF;
  --bg:             #ffffff;
  --surface:        #ffffff;
  --surface-strong: #f8fafc;
  --text:           #111827;
  --muted:          #6b7280;
  --border:         rgba(0,0,0,0.08);
  --shadow:         0 25px 70px rgba(0,0,0,0.10);
  --transition:     0.32s ease;
  --pad-x:          clamp(16px, 4vw, 48px);
  --container:      1200px;
  --nav-height:     clamp(64px, 7vw, 88px);
}

/* ─── RESET ──────────────────────────────────────────────── */
/* Used in: All pages (global base/reset styles) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  min-height: 100vh;
  background: #ffffff;
  color: #111827;
  font-family: 'Poppins', sans-serif;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  letter-spacing: .01em;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.04), transparent 12%),
    radial-gradient(circle at 80% 25%, rgba(255,0,0,0.08), transparent 18%);
  pointer-events: none;
  opacity: 0.7;
}
body.menu-open { overflow: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

button, a,
.feature-card, .value-card, .service-card,
.contact-card, .job-card, .news-card, .social-card,
.custom-btn, input, textarea { transition: all .32s ease; }

/* ─── MENU OVERLAY ───────────────────────────────────────── */
/* Used in: All pages (dark overlay behind mobile menu) */
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.24);
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 108;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }

/* ─── LOADER ─────────────────────────────────────────────── */
/* Used in: All pages (logo loading screen on page load) */
.loader {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  background: #ffffff;
  z-index: 9999;
  transition: opacity 0.4s ease;
}
.loader img {
  width: 160px;
  animation: pulse 1.4s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.04); opacity: 0.85; }
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVBAR
   Used in: All pages (global header & navigation bar)
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
/* Push page content below fixed header */
body { padding-top: calc(40px + var(--nav-height)); }
.site-header .navbar {
  width: 100%;
  max-width: 100%;
  height: var(--nav-height);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #ffffff;
  position: relative;
}

/* ── Brand logo ── */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: var(--nav-height);
  overflow: hidden;
}
.brand img {
  height: var(--nav-height);
  width: auto;
  max-height: var(--nav-height);
  object-fit: contain;
  display: block;
  overflow: hidden;
}

/* ── Tricolor line below nav top bar ── */
.tricolor-bar {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(30, 80, 200, 0.75) 33.33%,
    rgba(200, 30, 30, 0.75) 33.33% 66.66%,
    rgba(220, 170, 0, 0.75) 66.66%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  flex-shrink: 0;
}

/* ── Navbar top decorative bar ── */
.nav-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 0 clamp(12px, 2vw, 28px);
  background: #001f7a url('../images/top.jpg') center / cover no-repeat;
}

/* Contact info — left */
.nav-top-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.90);
  font-size: clamp(10px, 0.75vw, 12px);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-top-contact a:hover { color: #facc15; }
.nav-top-contact a i { font-size: 0.68rem; color: #facc15; }
.nav-top-divider { color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* Social icons — right */
.nav-top-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-top-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.75rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.nav-top-socials a:hover { opacity: 0.82; transform: scale(1.15); }
.nav-top-socials a[aria-label="Facebook"]  { background: #1877F2; }
.nav-top-socials a[aria-label="LinkedIn"]  { background: #0A66C2; }
.nav-top-socials a[aria-label="X"]         { background: #000000; }
.nav-top-socials a[aria-label="Instagram"] { background: radial-gradient(circle at 30% 110%, #fcaf45, #f77737, #fd1d1d, #833ab4, #405de6); }
.nav-top-socials a[aria-label="TikTok"]    { background: #010101; color: #69C9D0; }
.nav-top-socials a[aria-label="YouTube"]   { background: #FF0000; }

/* ── Navbar right decorative image ── */
.nav-right-img {
  height: var(--nav-height);
  width: auto;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 1165px) {
  .nav-right-img { display: none; }
}

/* ── Nav panel (desktop) ── */
.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 36px);
  margin-left: auto;
}
.nav-link,
.nav-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0f172a;
  padding: 0 clamp(10px, 1.5vw, 20px);
  height: var(--nav-height);
  white-space: nowrap;
  transition: .3s ease;
}

.nav-link i,
.nav-cta i {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: #001f7a;
  transition: .3s ease;
}
.nav-link.active i { color: #ff0000; }
.nav-link span,
.nav-cta span {
  display: block;
}
.nav-link::after,
.nav-cta::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 8px;
  width: 0; height: 3px;
  background: #ff0000;
  border-radius: 50px;
  transform: translateX(-50%);
  transition: .3s ease;
}
.nav-link:hover, .nav-cta:hover { color: #001f7a; background: rgba(0,0,255,0.03); }
.nav-link:hover i, .nav-cta:hover i { color: #ff0000; }
.nav-link:hover::after,
.nav-link.active::after,
.nav-cta:hover::after { width: 26px; }


/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-height);
}
.nav-dropdown-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
  cursor: pointer;
  position: relative;
  padding-bottom: 10px; /* reserve space at bottom for the arrow */
}
.nav-dd-arrow {
  font-size: 0.5rem !important;
  color: #001f7a !important;
  position: absolute !important;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-dd-arrow {
  transform: translateX(-50%) rotate(180deg) !important;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(var(--nav-height) - 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(0,31,122,0.1);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  z-index: 9999;
  overflow: hidden;
  animation: ddFade 0.2s ease;
}
@keyframes ddFade { from { opacity: 0; transform: translateX(-50%) translateY(-6px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(0,31,122,0.06);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a i { color: #001f7a; font-size: 0.9rem; width: 16px; text-align: center; }
.nav-dropdown-menu a:hover { background: linear-gradient(135deg, #eef2fb, #f5eaea); color: #001f7a; }
.nav-dropdown-menu a.active { background: linear-gradient(135deg, #001f7a, #c00); color: #fff; font-weight: 600; }
.nav-dropdown-menu a.active i { color: #fff; }
.nav-dropdown-menu a.active:hover { background: linear-gradient(135deg, #001f7a, #c00); color: #fff; }

/* Mobile dropdown */
@media (max-width: 900px) {
  .nav-dropdown { height: auto; flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-dropdown-toggle { height: auto; width: 100%; flex-direction: row; justify-content: flex-start; padding: 12px 0; }
  .nav-dropdown-menu { display: none; position: static; transform: none; min-width: 100%; border-radius: 8px; box-shadow: none; border: 1px solid rgba(0,31,122,0.08); margin-top: 4px; animation: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown.open .nav-dd-arrow { transform: rotate(180deg); }
}

/* ── Hamburger button ── */
.menu-toggle {
  display: none;
  width: 48px; height: 48px;
  border: none; background: transparent;
  position: relative;
  align-items: center;
  justify-content: center;
  align-self: center;          /* center vertically when navbar stretches */
  cursor: pointer;
  flex-shrink: 0;
  z-index: 111;
  margin-right: 4px;
}
.menu-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: #111827;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 32px; }
.site-header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   Used in: index.html (homepage banner slider)
   ═══════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  height: clamp(220px, 43vw, 600px);
  overflow: hidden;
  background: #3a3030;
}
.td-slide {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.td-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.td-slide > img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: none;
  z-index: 3;
}

/* ── Bible verse banner ──
   Fluid sizing from 300px to 1920px so the verse box always
   stays compact enough to leave room for the image above it. */
.bible-verse {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 10;  /* above slides */
  padding: clamp(6px, 1.4vw, 14px) clamp(10px, 3vw, 24px);
  text-align: center;
  background: linear-gradient(180deg, rgba(0,20,60,0.92), rgba(0,10,40,0.96));
  border-top: 2px solid rgba(255,255,255,0.08);
}
.bible-verse strong {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.78rem, 1.8vw, 1.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  padding: 0 clamp(8px, 2vw, 24px);
  margin-bottom: clamp(2px, 0.6vw, 6px);
}
.bible-verse strong::before,
.bible-verse strong::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: clamp(10px, 3vw, 60px);
  height: 2px;
  background: #ff0000;
}
.bible-verse strong::before { right: 100%; }
.bible-verse strong::after  { left: 100%; }
.bible-verse p {
  max-width: 820px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.66rem, 1.2vw, 1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ── Welcome banner slide: show the whole image, verse stacked below it (no overlap) ── */
.welcome-slide {
  display: flex;
  flex-direction: column;
}
.welcome-slide > img {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #3a3030;
}
.welcome-slide .bible-verse {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  flex-shrink: 0;
}

/* ── Slider arrows ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 1rem;
  display: grid;
  place-items: center;
  z-index: 30;
  cursor: pointer;
  transition: 0.3s ease;
}
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }
.slider-arrow:hover { background: rgba(255,255,255,0.35); transform: translateY(-50%) scale(1.08); }

/* ── Slider dots ── */
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 30;
}
.slider-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: #ffffff;
  width: 24px;
  border-radius: 4px;
}

/* ── Slide copy (text overlay) ── */
.slide-copy {
  position: absolute;
  top: 50%; left: 8%;
  transform: translateY(-50%);
  width: min(700px, 88%);
  z-index: 3;
  color: #fff;
}
.slide-copy h1 {
  font-size: clamp(2rem, 4vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 18px;
  color: #ffffff;
  text-transform: uppercase;
}
.slide-copy p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.6;
  max-width: 580px;
  animation: fadeIn 1.2s ease 0.15s both;
}
.slide-copy .eyebrow {
  color: var(--yellow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.slide-copy h1 span { color: #ffd400; }
.slide-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; animation: fadeIn 1.2s ease 0.28s both;
}
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   Used in: All pages (shared button styles)
   ═══════════════════════════════════════════════════════════ */
.btn, .custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px clamp(18px, 2vw, 28px);
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,0,0,0.95), rgba(255,255,0,0.92));
  color: #05070d;
  box-shadow: 0 12px 28px rgba(255,0,0,0.16);
}
.btn-secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}
.btn:hover, .custom-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 36px rgba(0,0,0,0.12); }
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.30), transparent 40%);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before { opacity: 0.55; }
.btn-secondary:hover { background: #f8fafc; color: #111827; }

.btn-facebook {
  background: #1877F2;
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(24,119,242,0.3);
}
.btn-facebook:hover {
  background: #0e5fc4;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(24,119,242,0.4);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   Used in: about.html, careers.html, news.html, srp.html (inner-page banners)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  min-height: clamp(260px, 36vw, 520px);
  display: grid;
  place-items: center;
  padding: clamp(50px, 8vw, 100px) var(--pad-x);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,0,0,0.22), rgba(0,0,255,0.2));
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,0,0.18), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(255,0,0,0.15), transparent 24%),
    radial-gradient(circle at 50% 70%, rgba(0,0,255,0.16), transparent 22%);
  pointer-events: none;
}
.page-hero > div {
  position: relative; z-index: 1;
  max-width: 720px; width: 100%;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  color: #ffffff;
}
.page-hero p {
  color: rgba(255,255,255,0.88);
  margin-top: 16px;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}
.page-hero .btn { margin-top: 24px; }

/* ── About Us hero: photo background ── */
.about-hero {
  background: url('../images/about_us.jpg') center/cover no-repeat;
}
.about-hero::before {
  background: linear-gradient(135deg, rgba(0,15,77,0.72), rgba(120,0,30,0.55));
}
.about-hero .label {
  color: #fde68a;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 230, 138, 0.45);
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.25em;
}

/* ── News hero: photo background ── */
.news-hero {
  background: url('../images/news.png') center/cover no-repeat;
}
.news-hero::before {
  background: linear-gradient(135deg, rgba(0,15,77,0.72), rgba(120,0,30,0.55));
}
.news-hero .label {
  color: #fde68a;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 230, 138, 0.45);
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.25em;
}

/* ── Careers hero: photo background ── */
.career-hero {
  background: url('../images/Be_part.png') center/cover no-repeat;
}
.career-hero::before {
  background: linear-gradient(135deg, rgba(0,15,77,0.72), rgba(120,0,30,0.55));
}
.career-hero .label {
  color: #fde68a;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 230, 138, 0.45);
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.25em;
}

/* ── Service banner ── */
.service-banner {
  width: 100%;
  display: block;
  line-height: 0;
}
.service-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px;
  margin: 0 auto;
}

/* ── Service hero specific ── */
.service-hero {
  display: flex;
  align-items: center;
  text-align: left;
  padding: clamp(80px, 10vw, 120px) var(--pad-x) clamp(60px, 8vw, 100px);
}
.service-hero-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}
.service-hero-content {
  flex: 1 1 45%;
  position: relative;
  z-index: 2;
}
.service-hero-content .label { color: #facc15; }
.service-hero-content h1 { text-align: left; }
.service-hero-content p  { text-align: left; margin-left: 0; margin-right: 0; }
.service-hero-img {
  flex: 1 1 50%;
  position: relative;
  z-index: 2;
}
.service-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  display: block;
}

/* Stack on mobile */
@media (max-width: 768px) {
  .service-hero { text-align: center; }
  .service-hero-inner { flex-direction: column; }
  .service-hero-content h1,
  .service-hero-content p  { text-align: center; }
  .service-hero-img { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION BASE
   Used in: All pages (shared section spacing & container layout)
   ═══════════════════════════════════════════════════════════ */
.section {
  background: #ffffff;
  width: 100%;
  padding: clamp(48px, 6vw, 88px) var(--pad-x);
}
/* Ensure containers never touch screen edges */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.section-gap {
  padding-top: clamp(50px, 7vw, 90px);
  padding-bottom: clamp(50px, 7vw, 90px);
}

/* Container */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ─── LABELS & HEADINGS ──────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cc0000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Highlighted label — Core Values only */
.values-section .label {
  color: #cc0000;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-intro,
.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}
.section-intro h2,
.section-heading h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #001f7a 0%, #cc0000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   VISION SECTION — PROFESSIONAL REDESIGN
   Used in: index.html (homepage Vision section)
   ═══════════════════════════════════════════════════════════ */
.vision-pro {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  padding: clamp(20px, 3vw, 40px) var(--pad-x);
}
.vision-pro-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
}

/* Compact Vision / Mission rows */
.vm-compact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vm-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.vm-row:last-child { border-bottom: none; padding-bottom: 0; }
.vm-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 84px;
}
.vm-row.vm-vision .vm-tag { color: #001f7a; }
.vm-row.vm-mission .vm-tag { color: #cc0000; }
.vm-row p {
  color: #4b5563;
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.8;
  margin: 0;
}

/* Image side */
.vision-pro-img {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.vision-pro-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  display: block;
}
.vision-pro-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: linear-gradient(135deg, #001f7a, #0000cc);
  color: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0,0,139,0.3);
  white-space: nowrap;
}
.vision-pro-badge i { color: #facc15; font-size: 1.2rem; }

/* Content side */
.vision-pro-content { display: flex; flex-direction: column; gap: 8px; }
.vision-pro-content .label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #cc0000;
  letter-spacing: 0.22em;
  background: none;
  padding: 0;
  border-radius: 0;
  border-left: none;
  display: block;
  width: auto;
  text-transform: uppercase;
  margin-bottom: 0;
}
.vision-pro-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  background: linear-gradient(135deg, #001f7a, #cc0000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vision-pro-content > p {
  color: #374151;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
  font-weight: 400;
}

/* Feature cards */
.vision-pro-features { display: flex; flex-direction: column; gap: 8px; }
.vision-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.vision-feature-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,31,122,0.1), rgba(204,0,0,0.08));
  display: grid; place-items: center;
  flex-shrink: 0;
}
.vision-feature-icon i { font-size: 1.1rem; color: #001f7a; }
.vision-feature strong { display: block; font-size: 0.9rem; color: #0f172a; margin-bottom: 4px; }
.vision-feature span { font-size: 0.8rem; color: #6b7280; line-height: 1.5; }

/* Responsive */
@media (max-width: 1024px) {
  .vision-pro-inner { grid-template-columns: 1fr; }
  .vision-pro-badge { bottom: -14px; right: 14px; }
}
@media (max-width: 560px) {
  .vision-pro-badge { position: relative; bottom: auto; right: auto; margin-top: 16px; justify-content: center; }
}
/* ── Core Values + Vision: 300–400px compact ── */
@media (max-width: 400px) {
  /* Core Values */
  .values-section {
    padding: 16px var(--pad-x) !important;
  }
  .values-section .section-heading {
    margin-bottom: 10px !important;
  }
  .values-section .section-heading h2 {
    font-size: 0.9rem !important;
    letter-spacing: 0;
  }
  /* .values-section .label mobile — inherits standard style */
  .values-section-SKIP {
    font-size: 0.6rem;
    padding: 2px 8px;
    margin-bottom: 4px;
  }
  .values-section .row {
    --bs-gutter-y: 0.3rem;
    --bs-gutter-x: 0;
  }
  .value-card {
    padding: 8px 10px !important;
    gap: 6px !important;
    border-radius: 10px;
    flex-direction: row;
    align-items: flex-start;
  }
  .value-card .value-tag {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
    border-radius: 8px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .value-card h3 { font-size: 0.78rem; margin-bottom: 2px; }
  .value-card p  { font-size: 0.7rem; line-height: 1.35; margin: 0; }

  /* About the Cooperative */
  .about-pro {
    padding: 18px var(--pad-x) !important;
  }
  .about-pro-inner { gap: 14px; }
  .about-heading {
    font-size: 0.95rem !important;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .about-para {
    font-size: 0.75rem !important;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .about-pro-img img { border-radius: 12px; }
  .about-pro-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }
  .about-stat {
    padding: 8px 4px !important;
    border-radius: 10px;
    border-top-width: 2px;
    text-align: center;
  }
  .about-stat strong { font-size: 0.95rem !important; }
  .about-stat span { font-size: 0.58rem !important; letter-spacing: 0; }
  .about-pro-content { gap: 10px; }
  .about-pro-content .label {
    font-size: 0.62rem;
    padding: 3px 8px;
    margin-bottom: 0;
  }
  .about-pro-content .btn {
    min-height: 36px;
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  /* Why Choose Us */
  .wcu-section { padding: 18px var(--pad-x) !important; }
  .wcu-heading { margin-bottom: 12px !important; }
  .wcu-eyebrow { display: none; }
  .wcu-heading h2 {
    font-size: 1.1rem !important;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .wcu-underline-wrap { max-width: 180px; }
  .wcu-underline { width: 32px; height: 3px; }
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  .wcu-card {
    padding: 10px 8px !important;
    border-radius: 12px !important;
  }
  .wcu-stat strong { font-size: 1.3rem !important; margin-bottom: 4px; }
  .wcu-stat span { font-size: 0.58rem !important; letter-spacing: 0.08em; }
  .wcu-icon-wrap { width: 40px !important; height: 40px !important; border-radius: 10px !important; }
  .wcu-feature i { font-size: 1rem !important; }
  .wcu-feature span { font-size: 0.6rem !important; letter-spacing: 0.06em; }
  .wcu-feature { gap: 8px !important; }
}

/* ── Vision Pro: 300–400px compact (continued) ── */
@media (max-width: 400px) {
  .vision-pro-img img { border-radius: 14px; }
  .vision-pro-badge { display: none; }
  .vm-tag { min-width: 72px; }
  .vision-feature-icon { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; }
}

/* ─── SECTION MEDIA & COPY ───────────────────────────────── */
.section-media,
.about-image,
.career-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(15,23,42,.08);
  border: 1px solid rgba(226,232,240,.65);
  flex-shrink: 0;
}
.section-media img,
.about-image img,
.career-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.section-media:hover img,
.about-image:hover img,
.career-image:hover img { transform: scale(1.04); }

.section-copy,
.about-text,
.career-copy { position: relative; }

/* ─── ICON ROW ───────────────────────────────────────────── */
.icon-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: 26px;
}
.icon-row div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}
.icon-row i      { font-size: 1.4rem; color: var(--yellow); margin-top: 4px; flex-shrink: 0; }
.icon-row strong { display: block; font-size: 0.95rem; color: #0f172a; }
.icon-row span   { color: var(--muted); font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
   Used in: index.html (homepage "Why Choose Us" section)
   ═══════════════════════════════════════════════════════════ */
.wcu-section {
  background: linear-gradient(160deg, rgba(0,15,50,0.92) 0%, rgba(0,25,90,0.88) 50%, rgba(0,15,50,0.92) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wcu-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 8% 50%, rgba(250,204,21,0.07) 0%, transparent 38%),
    radial-gradient(circle at 92% 20%, rgba(220,38,38,0.09) 0%, transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(0,31,122,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.wcu-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.wcu-heading {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
  position: relative;
}
.wcu-eyebrow {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wcu-heading h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1;
}
.wcu-why {
  color: #facc15;
}
.wcu-us {
  background: linear-gradient(135deg, #facc15, #ff4444);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wcu-underline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  max-width: 320px;
}
.wcu-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.25));
}
.wcu-line:last-child {
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.25));
}
.wcu-underline {
  width: 48px;
  height: 4px;
  background: linear-gradient(to right, #facc15, #ff4444);
  border-radius: 999px;
  flex-shrink: 0;
}

/* Grid */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

/* Base card */
.wcu-card {
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px) 18px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  position: relative;
  overflow: hidden;
}
.wcu-card:hover,
.wcu-card.hovered {
  transform: translateY(-8px);
  border-color: rgba(250,204,21,0.7) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(250,204,21,0.25), 0 0 20px rgba(250,204,21,0.1);
}

/* Stat cards */
.wcu-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 4px solid #facc15;
}
.wcu-stat strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #facc15 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wcu-stat span {
  font-size: clamp(0.68rem, 0.85vw, 0.80rem);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

/* Feature cards */
.wcu-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 4px solid rgba(220,38,38,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.wcu-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(220,38,38,0.2), rgba(250,204,21,0.1));
  border: 1px solid rgba(250,204,21,0.2);
  flex-shrink: 0;
}
.wcu-feature i {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  background: linear-gradient(135deg, #facc15 0%, #ff4444 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wcu-feature span {
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 1200px) { .wcu-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .wcu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .wcu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 340px)  { .wcu-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   CARDS
   Used in: index.html, about.html (shared feature/value/job/news/service/contact/social card components)
   ═══════════════════════════════════════════════════════════ */
.feature-card,
.value-card,
.job-card,
.news-card,
.service-card,
.contact-card,
.social-card {
  background: #ffffff;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 24px;
  padding: clamp(18px, 2.5vw, 32px);
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
  transition: all .35s ease;
  height: 100%;
}
.feature-card:hover,
.service-card:hover,
.value-card:hover,
.job-card:hover,
.news-card:hover,
.contact-card:hover,
.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15,23,42,.10);
  border-color: rgba(248,113,113,.35);
}
.feature-card h3,
.service-card h3,
.value-card h3,
.job-card h3,
.news-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin-bottom: 12px;
}
.feature-card p,
.service-card p,
.value-card p,
.job-card p,
.news-card p { color: #64748b; line-height: 1.75; font-size: .95rem; }

/* Feature/service icon */
.feature-card i,
.service-card i,
.timeline-grid i {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,0,0,.08), rgba(250,204,21,.18));
  color: #dc2626;
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,0,0,.08);
}
.service-card i { width: 56px; height: 56px; font-size: 1.15rem; margin-bottom: 16px; }

/* Value card */
.value-card { display: flex; flex-direction: column; gap: 12px; }
.value-card .value-tag {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #001f7a, #cc0000);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,31,122,0.25);
}
.value-card h3 { color: #0f172a; }
.value-card p  { color: #6b7280; }
.value-card:hover { border-color: rgba(0,31,122,0.25); }
.value-card:hover .value-tag {
  background: linear-gradient(135deg, #cc0000, #facc15);
  box-shadow: 0 8px 20px rgba(204,0,0,0.25);
}

/* ── SPICES single row ── */
.spices-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spices-btn {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(0,31,122,0.2);
  background: #ffffff;
  color: #001f7a;
  font-size: 0.85rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 2;
}
.spices-btn:hover {
  background: linear-gradient(135deg, #001f7a, #cc0000);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
}
@media (max-width: 600px) {
  .spices-btn { width: 30px; height: 30px; font-size: 0.7rem; }
}
@media (max-width: 400px) {
  .spices-btn { width: 26px; height: 26px; font-size: 0.6rem; }
}
.spices-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 8px;
}
.spices-row::-webkit-scrollbar { display: none; }

/* Card overrides — clean, fixed-width, consistent */
.spices-row .value-card {
  flex: 0 0 auto;
  width: clamp(150px, 15vw, 210px);
  height: auto;
  padding: 20px 16px;
  border-radius: 18px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.spices-row .value-card .value-tag {
  width: 48px; height: 48px;
  border-radius: 14px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.spices-row .value-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #0f172a;
}
.spices-row .value-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* ≤ 600px: slightly smaller cards */
@media (max-width: 600px) {
  .spices-row .value-card {
    width: 148px;
    padding: 16px 13px;
    gap: 8px;
    border-radius: 14px;
  }
  .spices-row .value-card .value-tag {
    width: 40px; height: 40px;
    font-size: 1.2rem;
    border-radius: 11px;
  }
  .spices-row .value-card h3 { font-size: 0.8rem; }
  .spices-row .value-card p  { font-size: 0.72rem; }
}

/* ≤ 400px: compact */
@media (max-width: 400px) {
  .spices-row { gap: 10px; }
  .spices-row .value-card {
    width: 130px;
    padding: 13px 11px;
    gap: 7px;
    border-radius: 12px;
  }
  .spices-row .value-card .value-tag {
    width: 34px; height: 34px;
    font-size: 1rem;
    border-radius: 9px;
  }
  .spices-row .value-card h3 { font-size: 0.72rem; }
  .spices-row .value-card p  { font-size: 0.65rem; line-height: 1.4; }
}

/* ═══════════════════════════════════════════════════════════
   GRID LAYOUTS
   Used in: services.html (Service Highlights) + shared grid helpers used across pages
   ═══════════════════════════════════════════════════════════ */
.feature-cards,
.values-grid,
.job-grid,
.cards-grid,
.service-cards-grid,
.timeline-grid { display: grid; gap: 22px; }

/* ── Service Highlights redesign ── */
.svc-highlight-section { background: #eef1f7; }
.svc-highlight-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}
.svc-highlight-heading { position: sticky; top: 100px; }
.svc-highlight-heading .label { margin-bottom: 12px; display: inline-block; }
.svc-highlight-heading h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 14px;
}
.svc-highlight-heading p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #4b5563;
  line-height: 1.8;
}
.svc-highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-hl-card {
  background: #ffffff;
  border: 1px solid rgba(226,232,240,0.9);
  border-left: 4px solid #001f7a;
  border-radius: 14px;
  padding: 22px 24px 22px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(15,23,42,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}
.svc-hl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.09);
  border-left-color: #cc0000;
}
.svc-hl-num { display: none; }
.svc-hl-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(0,31,122,0.08), rgba(204,0,0,0.06));
  display: grid; place-items: center;
  flex-shrink: 0;
}
.svc-hl-icon i { font-size: 1.3rem; color: #001f7a; }
.svc-hl-body { flex: 1; }
.svc-hl-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
}
.svc-hl-body p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-highlight-inner { grid-template-columns: 1fr; gap: 16px; }
  .svc-highlight-heading { position: static; }
}
@media (max-width: 500px) {
  .svc-hl-card { padding: 13px 14px 13px 13px; gap: 12px; }
  .svc-hl-icon { width: 36px; height: 36px; }
  .svc-hl-icon i { font-size: 0.95rem; }
  .svc-hl-body h3 { font-size: 0.88rem; }
  .svc-hl-body p  { font-size: 0.78rem; }
}

.feature-cards      { grid-template-columns: repeat(3, 1fr); }
.values-grid        { grid-template-columns: repeat(3, 1fr); }
.service-cards-grid { grid-template-columns: repeat(3, 1fr); }
.timeline-grid      { grid-template-columns: repeat(3, 1fr); }
.job-grid           { grid-template-columns: repeat(3, 1fr); }
.cards-grid         { grid-template-columns: 1fr; gap: 20px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT / SERVICE / CAREER TWO-COL LAYOUTS
   Used in: about.html, services.html (and similar two-column sections)
   ═══════════════════════════════════════════════════════════ */
.about-preview,
.service-showcase,
.career-benefits { display: grid; gap: clamp(24px, 4vw, 48px); }

.about-preview,
.career-benefits  { grid-template-columns: 1.2fr 1fr; align-items: center; }
.service-showcase { grid-template-columns: 1fr 1fr; align-items: center; }
.service-showcase.alt { grid-template-columns: 1fr 1fr; }

/* Shared max-width for two-col layout sections used as direct section children */
.section.about-preview,
.section.career-benefits,
.section.service-showcase {
  max-width: 100%;
}
.section.about-preview > *,
.section.career-benefits > *,
.section.service-showcase > * { }

/* ── About the Company (text + video) ── */
.about-company-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.about-company-text .label { display: inline-block; margin-bottom: 14px; }
.about-company-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}
.about-company-text p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.85;
}
.about-company-video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}
.about-company-video .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .about-company-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Brief History — cinematic layout ── */
.brief-history-section {
  background: linear-gradient(160deg, #00154d 0%, #000d35 100%);
  padding: clamp(48px, 8vw, 96px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.brief-history-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(250,204,21,0.05), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(204,0,0,0.07), transparent 35%);
  pointer-events: none;
}

/* Header */
.bh-header {
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
  position: relative; z-index: 2;
}
.bh-header .label {
  color: #facc15;
  margin-bottom: 14px;
  display: inline-block;
}
.bh-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* Video */
.bh-video-wrap {
  max-width: 860px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  position: relative; z-index: 2;
}
.bh-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.bh-video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* Text 2-col grid */
.bh-text-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px) clamp(32px, 5vw, 72px);
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: clamp(28px, 4vw, 48px);
}
.bh-text-grid p {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 700px) {
  .bh-text-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Company Profile Section ── */
.cp-section { background: #f8fafc; }
.cp-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.cp-text .label { display: inline-block; margin-bottom: 14px; }
.cp-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}
.cp-text p {
  font-size: clamp(0.93rem, 1.15vw, 1.02rem);
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Gallery */
.cp-gallery { position: relative; }
.cp-slides {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
}
@keyframes cpEnter {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes cpKenBurns {
  0%   { transform: scale(1)    translate(0%,    0%   ); }
  50%  { transform: scale(1.06) translate(-1.0%, -0.5%); }
  100% { transform: scale(1.04) translate( 0.8%,  0.3%); }
}
.cp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}
.cp-slide.active {
  opacity: 1;
  pointer-events: auto;
  animation: cpEnter 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.cp-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
}
.cp-slide.active img {
  animation: cpKenBurns 9s ease-in-out both;
}
.cp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}
.cp-prev, .cp-next {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(0,31,122,0.2);
  background: #ffffff;
  color: #001f7a;
  font-size: 0.8rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}
.cp-prev:hover, .cp-next:hover {
  background: linear-gradient(135deg, #001f7a, #cc0000);
  color: #fff;
  border-color: transparent;
}
.cp-dots { display: flex; gap: 7px; align-items: center; }
.cp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,31,122,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.cp-dot.active {
  background: #001f7a;
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .cp-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* Zoom cursor on gallery images */
.cp-zoomable { cursor: zoom-in; }

/* Lightbox */
.cp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cp-lightbox.open { display: flex; }
.cp-lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lbFadeIn 0.25s ease;
}
@keyframes lbFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.cp-lb-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 1.2rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10000;
}
.cp-lb-close:hover { background: rgba(255,255,255,0.25); }

/* ── Mission & Vision Section ── */
.mv-section {
  background: linear-gradient(135deg, #eef2fb 0%, #f5eaea 100%);
  padding: clamp(48px, 7vw, 88px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.mv-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 5% 60%, rgba(0,31,122,0.06), transparent 40%),
    radial-gradient(circle at 95% 30%, rgba(204,0,0,0.05), transparent 40%);
  pointer-events: none;
}
.mv-banner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.mv-accent-bar {
  width: 4px;
  background: linear-gradient(to bottom, #001f7a, #cc0000);
  border-radius: 4px;
  flex-shrink: 0;
  align-self: stretch;
}
.mv-banner-content { flex: 1; }
.mv-banner-content .label {
  display: inline-flex;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  color: #cc0000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mv-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  line-height: 1.8;
  color: #374151;
  font-style: normal;
  margin: 0 0 32px;
  border: none;
  padding: 0;
}
.mv-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mv-pillar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #ffffff;
  border: 1px solid rgba(0,31,122,0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0,31,122,0.06);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.mv-pillar i { color: #001f7a; font-size: 0.9rem; }
.mv-pillar:hover {
  border-color: rgba(0,31,122,0.3);
  box-shadow: 0 4px 16px rgba(0,31,122,0.1);
}
@media (max-width: 600px) {
  .mv-banner { gap: 16px; }
  .mv-quote { font-size: 1rem; }
  .mv-pillar { font-size: 0.78rem; padding: 7px 13px; }
}

/* ── Vision / Mission Statement blocks (Home + About) ── */
.vm-statement { margin: 0; }
.mv-banner-content .vm-statement { margin: 0 0 20px; }
.mv-banner-content .vm-statement:last-of-type { margin-bottom: 28px; }
.vm-statement h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.vm-statement h3 i {
  flex-shrink: 0;
  width: 1.9em;
  height: 1.9em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #ffffff;
  font-size: 0.8rem;
}
.vm-vision h3 { color: #001f7a; }
.vm-vision h3 i { background: linear-gradient(135deg, #001f7a, #0000cc); }
.vm-mission h3 { color: #cc0000; }
.vm-mission h3 i { background: linear-gradient(135deg, #cc0000, #ff4d4d); }
.vm-statement p {
  color: #374151;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.85;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 600px) {
  .mv-banner-content .vm-statement { margin-bottom: 16px; }
  .mv-banner-content .vm-statement:last-of-type { margin-bottom: 22px; }
  .vm-statement h3 { font-size: 0.82rem; letter-spacing: 0.08em; gap: 8px; }
  .vm-statement h3 i { width: 1.7em; height: 1.7em; font-size: 0.72rem; }
  .vm-statement p { font-size: 0.95rem; line-height: 1.75; }
}
@media (max-width: 400px) {
  .vm-statement p { font-size: 0.9rem; }
}

/* ── SPICES About Section (2-col) ── */
.spices-about-section {
  background: linear-gradient(135deg, #eef2fb 0%, #f5eaea 100%);
  padding: clamp(48px, 7vw, 88px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.spices-about-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 5% 60%, rgba(0,31,122,0.06), transparent 40%),
    radial-gradient(circle at 95% 30%, rgba(204,0,0,0.05), transparent 40%);
  pointer-events: none;
}
.spices-about-inner { position: relative; z-index: 2; }
.spices-about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.spices-about-left .label { display: inline-block; margin-bottom: 14px; }
.spices-about-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 14px;
}
.spices-about-left > p {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 24px;
}
.spices-about-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0,0,0,0.12);
}
.spices-about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.spices-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.spices-about-grid .value-card {
  padding: 18px 16px;
  gap: 10px;
  height: auto;
}
.spices-about-grid .value-card .value-tag {
  width: 44px; height: 44px;
  font-size: 1.3rem;
  border-radius: 13px;
}
.spices-about-grid .value-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.spices-about-grid .value-card p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .spices-about-inner { grid-template-columns: 1fr; }
  .spices-about-grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .spices-about-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .spices-about-grid { grid-template-columns: 1fr; }
}

/* ── TotalDev Approach ── */
.approach-section { background: #f8fafc; }
.approach-header {
  max-width: var(--container);
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.approach-header .label { display: inline-block; margin-bottom: 12px; }
.approach-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.approach-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.approach-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0,31,122,0.2);
  background: #ffffff;
  color: #001f7a;
  font-size: 0.85rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.approach-btn:hover {
  background: linear-gradient(135deg, #001f7a, #cc0000);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
}
.approach-steps {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.approach-steps::-webkit-scrollbar { display: none; }
.approach-step {
  flex: 0 0 auto;
  width: clamp(150px, 14vw, 190px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.as-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #cc0000;
  font-family: 'Montserrat', sans-serif;
}
.as-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid rgba(0,31,122,0.12);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,31,122,0.08);
  transition: background 0.25s, border-color 0.25s;
}
.as-icon i { font-size: 1.25rem; color: #001f7a; }
.approach-step:hover .as-icon {
  background: linear-gradient(135deg, #001f7a, #cc0000);
  border-color: transparent;
}
.approach-step:hover .as-icon i { color: #ffffff; }
.approach-step h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}
.approach-step p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.as-connector {
  flex: 1 1 auto;
  height: 1.5px;
  background: linear-gradient(to right, rgba(0,31,122,0.2), rgba(204,0,0,0.15));
  align-self: center;
  margin-bottom: 66px;
  min-width: 14px;
}

@media (max-width: 600px) {
  .approach-btn { width: 32px; height: 32px; font-size: 0.72rem; }
  .approach-step { width: 145px; }
  .approach-step h3 { font-size: 0.84rem; }
  .approach-step p  { font-size: 0.75rem; }
}

/* ── Approach Grid (TotalDev Approach — about.html) ── */
.approach-intro {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  margin-top: 10px;
  max-width: 760px;
}
.approach-grid {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.approach-grid::-webkit-scrollbar { display: none; }
.approach-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  background: #ffffff;
  border: 1.5px solid rgba(0,31,122,0.1);
  border-radius: 18px;
  padding: clamp(20px, 2.5vw, 28px);
  box-shadow: 0 4px 14px rgba(0,31,122,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,31,122,0.12);
  border-color: rgba(0,31,122,0.25);
}
.ac-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.approach-card .as-icon {
  width: 52px; height: 52px;
}
.approach-card:hover .as-icon {
  background: linear-gradient(135deg, #001f7a, #cc0000);
  border-color: transparent;
}
.approach-card:hover .as-icon i { color: #ffffff; }
.approach-card .as-num { font-size: 0.78rem; }
.approach-card h3 {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 10px;
  text-align: left;
}
.approach-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
  text-align: left;
}
.approach-footnote {
  max-width: var(--container);
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(0,31,122,0.1);
  font-size: 0.92rem;
  font-style: italic;
  color: #475569;
  line-height: 1.75;
}
@media (max-width: 800px) {
  .approach-card { flex: 0 0 100%; }
}

/* ── Board / Leadership Section ── */
.board-section { background: #ffffff; }
.board-group { margin-top: clamp(36px, 5vw, 56px); }
.board-group-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #001f7a;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.board-group-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, #001f7a, #cc0000);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* Grids */
.board-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.board-grid-5 { grid-template-columns: repeat(5, 1fr); }
.board-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 780px; margin-left: auto; margin-right: auto; }

/* Card */
.leader-card {
  background: #f8fafc;
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,31,122,0.12);
  border-color: rgba(0,31,122,0.2);
}
.leader-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e2e8f0;
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.leader-card:hover .leader-photo img { transform: scale(1.04); }
.leader-info {
  padding: 14px 12px 16px;
  text-align: center;
  flex: 1;
}
.leader-info h4 {
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 5px;
}
.leader-role {
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  color: #cc0000;
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .board-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .board-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .board-grid-3 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}
@media (max-width: 480px) {
  .board-grid-5,
  .board-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Awards Slideshow ── */
.awards-section { background: #f8fafc; }
.awards-slider { max-width: 860px; margin: 40px auto 0; }

/* Main stage */
.awards-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.awards-stage {
  flex: 1;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e2e8f0;
  box-shadow: 0 16px 44px rgba(0,0,0,0.12);
}
@keyframes awardsEnter {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0%,    0%   ); }
  33%  { transform: scale(1.07) translate(-1.2%, -0.6%); }
  66%  { transform: scale(1.05) translate( 1.0%,  0.4%); }
  100% { transform: scale(1.08) translate(-0.5%, -0.3%); }
}
.awards-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.awards-slide.active {
  opacity: 1;
  pointer-events: auto;
  animation: awardsEnter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.awards-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  background: #1a1a2e;
  transform-origin: center center;
}
.awards-slide.active img {
  animation: kenBurns 8s ease-in-out both;
}
.awards-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

/* Arrows */
.awards-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0,31,122,0.2);
  background: #ffffff;
  color: #001f7a;
  font-size: 0.85rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.awards-arrow:hover {
  background: linear-gradient(135deg, #001f7a, #cc0000);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
}

/* Thumbnails */
.awards-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 2px;
}
.awards-thumbs::-webkit-scrollbar { display: none; }
.awards-thumb {
  flex: 0 0 auto;
  width: 80px; height: 60px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s;
}
.awards-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.awards-thumb.active,
.awards-thumb:hover { opacity: 1; border-color: #001f7a; transform: translateY(-2px); }

@media (max-width: 600px) {
  .awards-arrow { width: 32px; height: 32px; font-size: 0.7rem; }
  .awards-thumb { width: 60px; height: 46px; }
}

/* ══════════════════════════════════════════════════════════
   SOCIAL RESPONSIBILITY PROGRAMS PAGE
   Used in: srp.html
   ══════════════════════════════════════════════════════════ */

/* Hero */
.srp-hero {
  background:
    linear-gradient(135deg, rgba(0,31,122,0.72), rgba(204,0,0,0.60)),
    url('../images/SRP_bg.jpg') center/cover no-repeat;
}

.srp-hero .label {
  color: #fde68a;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 230, 138, 0.45);
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Intro */
.srp-intro { background: #f8fafc; }
.srp-intro-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.srp-intro-text .label { display: inline-block; margin-bottom: 14px; }
.srp-intro-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}
.srp-intro-text p {
  font-size: clamp(0.93rem, 1.1vw, 1rem);
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 14px;
}
.srp-intro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.srp-pillar {
  background: #ffffff;
  border: 1px solid rgba(0,31,122,0.1);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.srp-pillar:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,31,122,0.1); }
.srp-pillar i { font-size: 1.4rem; color: #001f7a; }
.srp-pillar strong { font-size: 0.85rem; font-weight: 700; color: #0f172a; }
.srp-pillar span { font-size: 0.72rem; color: #64748b; line-height: 1.4; }

/* Programs section */
.srp-programs { background: #ffffff; }
.srp-programs-inner { max-width: var(--container); margin: 0 auto; }

/* Program article */
.srp-program {
  position: relative;
  margin-bottom: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid rgba(0,31,122,0.08);
}
.srp-program:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.srp-prog-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: rgba(0,31,122,0.06);
  line-height: 1;
  position: absolute;
  top: 0; left: 0;
  user-select: none;
  pointer-events: none;
}
.srp-prog-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: 12px;
}
.srp-prog-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #eef2fb, #f5eaea);
  border: 1px solid rgba(0,31,122,0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #001f7a;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.srp-prog-tag i { font-size: 0.85rem; }
.srp-prog-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 12px;
}
.srp-objective {
  font-size: 0.88rem;
  color: #cc0000;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.srp-prog-text > p:not(.srp-objective) {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: #4b5563;
  line-height: 1.85;
}
.srp-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  background: #000;
  cursor: pointer;
}
.srp-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}
/* YouTube facade */
.yt-facade .yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.yt-facade:hover .yt-thumb { transform: scale(1.03); filter: brightness(0.75); }
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,0,0,0.9);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  z-index: 2;
  padding-left: 4px;
}
.yt-facade:hover .yt-play { background: #cc0000; transform: translate(-50%, -50%) scale(1.1); }
.srp-video-placeholder {
  aspect-ratio: 16/9;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef2fb, #e4e9f5);
  border: 1px solid rgba(0,31,122,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #001f7a;
}
.srp-video-placeholder i { font-size: 2.5rem; opacity: 0.4; }
.srp-video-placeholder span { font-size: 0.88rem; font-weight: 600; color: #64748b; }

/* Responsive */
@media (max-width: 900px) {
  .srp-intro-inner { grid-template-columns: 1fr; }
  .srp-prog-content { grid-template-columns: 1fr; }
  .srp-program-alt .srp-prog-content { direction: ltr; }
}
@media (max-width: 500px) {
  .srp-intro-pillars { grid-template-columns: 1fr 1fr; }
}

/* ── Testimonials Section ── */
.testimonials-section {
  background: linear-gradient(135deg, #eef2fb 0%, #f5eaea 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 5% 60%, rgba(0,31,122,0.06), transparent 40%),
    radial-gradient(circle at 95% 30%, rgba(204,0,0,0.05), transparent 40%);
  pointer-events: none;
}

/* ── About Pro Section ── */
.about-pro {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
  border-image: linear-gradient(to right, #001f7a, #cc0000, #facc15) 1;
}
.about-pro::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,31,122,0.06), transparent 70%);
  pointer-events: none;
}
.about-pro::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,0.05), transparent 70%);
  pointer-events: none;
}
.about-pro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-pro-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-pro-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.about-pro-img img {
  width: 100%;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
}
.about-pro-img:hover img { transform: scale(1.03); }
.about-pro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.about-stat {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  border-top: 3px solid #001f7a;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.about-stat strong {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #001f7a;
}
.about-stat span { font-size: 0.78rem; color: #6b7280; }
@media (max-width: 1024px) {
  .about-pro-inner { grid-template-columns: 1fr; }
  .about-pro-img { order: -1; }
}
@media (max-width: 560px)  { .about-pro-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 400px)  { .about-pro-stats { grid-template-columns: 1fr; } }

/* ── About section stacked layout ── */
.about-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-para {
  color: #4b5563;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   STAT CARDS
   Currently unused / reserved styles (not referenced by any page yet)
   ═══════════════════════════════════════════════════════════ */
.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(18px, 2.5vw, 28px) clamp(14px, 2vw, 24px);
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  height: 100%;
}
.stat-card strong { display: block; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.stat-card span   { color: #6b7280; font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════════════
   STATS GRID (about.html)
   Currently unused / reserved styles (not referenced by any page yet)
   ═══════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.stats-grid div {
  background: #fff;
  border-radius: 20px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.stats-grid strong { display: block; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #0f172a; }
.stats-grid span   { color: #6b7280; font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════════════
   TIMELINE
   Currently unused / reserved styles (not referenced by any page yet)
   ═══════════════════════════════════════════════════════════ */
.timeline-grid article {
  background: #ffffff;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 24px;
  padding: clamp(18px, 2.5vw, 30px);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.timeline-grid article i { margin: 0 auto 16px; }
.timeline-grid h3 { margin-bottom: 10px; font-size: 1.05rem; font-weight: 700; }
.timeline-grid p  { color: var(--muted); line-height: 1.8; font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════════════
   NEWS CARD
   Currently unused / reserved styles (not referenced by any page yet)
   ═══════════════════════════════════════════════════════════ */
.news-card { display: grid; gap: 18px; grid-template-columns: 200px 1fr; align-items: center; height: auto; }
.news-card img  { width: 100%; min-height: 170px; border-radius: 18px; object-fit: cover; }
.news-card span { color: var(--yellow); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; }
.news-card h3   { font-size: 1.1rem; margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════════
   SOCIAL CARD
   Used in: services.html, contact.html
   ═══════════════════════════════════════════════════════════ */
.social-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  height: auto;
  background: #eef1f7;
}
.social-copy h2 { margin: 14px 0; font-size: clamp(1.3rem, 2.5vw, 2rem); }

/* ─── Two-column grid helper (for inline styles) ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
   QR WRAP
   Used in: services.html, contact.html
   ═══════════════════════════════════════════════════════════ */
.qr-wrap {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  max-width: 220px;
}
.qr-wrap img { width: 100%; border-radius: 14px; }
.qr-wrap p   { font-size: 0.88rem; color: var(--muted); margin-bottom: 10px; }

/* ═══════════════════════════════════════════════════════════
   FEATURE LIST
   Used in: services.html, about.html
   ═══════════════════════════════════════════════════════════ */
.feature-list { display: grid; gap: 10px; margin-top: 24px; }
.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 10px;
  transition: background 0.25s, border-color 0.25s;
}
.feature-list span:hover {
  background: #fff;
  border-color: rgba(0,31,122,0.2);
}
.feature-list i {
  color: #001f7a;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Service showcase copy — elegant typography ── */
.service-showcase .section-copy .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cc0000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.service-showcase .section-copy .label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #cc0000;
  flex-shrink: 0;
}
.service-showcase .section-copy h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 18px;
}
.service-showcase .section-copy p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.85;
  font-weight: 400;
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════════
   JOB CARD
   Currently unused / reserved styles (not referenced by any page yet)
   ═══════════════════════════════════════════════════════════ */
.job-card { display: flex; flex-direction: column; gap: 16px; }
.job-card span  { display: inline-flex; align-items: center; gap: 10px; color: var(--yellow); font-size: 0.9rem; }
.job-card button { align-self: flex-start; }

/* ═══════════════════════════════════════════════════════════
   CDA MESSAGE SECTION
   Used in: news.html
   ═══════════════════════════════════════════════════════════ */
.cda-message-section {
  background: linear-gradient(160deg, #2a0606 0%, #1a0303 100%);
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cda-message-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,204,21,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cda-message-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}
.cda-message-header {
  text-align: center;
}
.cda-message-header .label {
  color: var(--yellow);
  letter-spacing: 0.15em;
}
.cda-message-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 14px;
  line-height: 1.2;
}
.cda-message-header p {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
.cda-video-frame {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 — sizes the yt-facade box */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.cda-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(0,21,77,0.85);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(250,204,21,0.3);
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(4px);
}
.cda-video-frame video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ═══════════════════════════════════════════════════════════
   ANNIVERSARY MESSAGE SECTION
   Used in: news.html
   ═══════════════════════════════════════════════════════════ */
.bbm-message-section {
  background: linear-gradient(160deg, #00154d 0%, #000d35 100%);
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.bbm-message-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bbm-message-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 1;
}
.bbm-message-header {
  text-align: center;
}
.bbm-message-header .label {
  color: var(--yellow);
  letter-spacing: 0.15em;
}
.bbm-message-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 14px;
  line-height: 1.2;
}
.bbm-message-header p {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
.bbm-video-frame {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 — sizes the yt-facade box */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.bbm-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(42,6,6,0.85);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(250,204,21,0.3);
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════════
   PLDT MVP MESSAGE SECTION
   Used in: news.html
   ═══════════════════════════════════════════════════════════ */
.pldt-message-section {
  background: linear-gradient(160deg, #160a2e 0%, #0c0518 100%);
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.pldt-message-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,204,21,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pldt-message-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 1;
}
.pldt-message-header {
  text-align: center;
}
.pldt-message-header .label {
  color: var(--yellow);
  letter-spacing: 0.15em;
}
.pldt-message-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 14px;
  line-height: 1.2;
}
.pldt-message-header p {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
.pldt-video-frame {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 — sizes the yt-facade box */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.pldt-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(22,10,46,0.85);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(250,204,21,0.3);
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════════
   CHAIRMAN'S MESSAGE SECTION
   Used in: news.html
   ═══════════════════════════════════════════════════════════ */
.chairman-section {
  background: linear-gradient(135deg, #eef2fb 0%, #f5eaea 100%);
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
}
.chairman-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
/* Left accent panel */
.chairman-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.chairman-accent-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #00154d, transparent);
  border-radius: 2px;
}
.chairman-quote-mark {
  font-family: Georgia, serif;
  font-size: clamp(5rem, 8vw, 8rem);
  color: #00154d;
  line-height: 0.8;
  opacity: 0.18;
  user-select: none;
  font-weight: 900;
}
.chairman-years {
  background: linear-gradient(135deg, #00154d, #002080);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,21,77,0.2);
}
.chairman-years-num {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.chairman-years-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
/* Right content */
.chairman-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chairman-content .label {
  color: #00154d;
  opacity: 0.7;
}
.chairman-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #00154d;
  margin: 10px 0 6px;
  line-height: 1.2;
}
.chairman-subtitle {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--red);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 28px !important;
}
.chairman-salutation {
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  font-weight: 700;
  color: #00154d;
  margin-bottom: 20px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,21,77,0.12);
}
.chairman-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.chairman-body p {
  font-size: clamp(0.88rem, 1.25vw, 0.97rem);
  color: #374151;
  line-height: 1.95;
  margin: 0;
}
.chairman-closing-quote {
  border: none;
  background: linear-gradient(135deg, #00154d, #002080);
  color: #fff;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.8;
  padding: 22px 28px;
  border-radius: 10px;
  margin: 0 0 32px 0;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,21,77,0.18);
}
.chairman-closing-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--yellow);
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
  opacity: 0.5;
}
.chairman-signature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,21,77,0.12);
}
.chairman-sig-line {
  width: 4px;
  min-height: 64px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.chairman-sig-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chairman-sig-from {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.chairman-sig-text strong {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: #00154d;
  font-weight: 700;
  margin-top: 2px;
}
.chairman-sig-org {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   PARTNER COMPANY SECTION
   Used in: careers.html
   ═══════════════════════════════════════════════════════════ */
.partner-section {
  padding: clamp(56px, 7vw, 100px) var(--pad-x);
  background: linear-gradient(135deg, #eef2fb 0%, #f5eaea 100%);
}
.partner-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(36px, 5vw, 60px);
}
.partner-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #00154d;
  letter-spacing: 0.04em;
  margin: 8px 0 14px;
}
.partner-header p {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.75;
}
.partner-main {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
/* Video */
.partner-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.partner-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.partner-video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Right column */
.partner-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.partner-services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partner-svc-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 22px;
  border-left: 4px solid #00154d;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.partner-svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00154d, #002080);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.partner-svc-card h3 {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: #00154d;
  margin-bottom: 6px;
}
.partner-svc-card p {
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
/* CTA row */
.partner-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #00154d;
  border-radius: 12px;
  padding: 22px 24px;
  flex-wrap: wrap;
}
.partner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 6px;
  border: 2px solid var(--red);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.partner-cta-btn:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,0,0.3);
}
.partner-qr-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.partner-qr-block p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.partner-qr-block img {
  width: clamp(64px, 9vw, 88px);
  height: clamp(64px, 9vw, 88px);
  object-fit: contain;
  background: #fff;
  padding: 5px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   APPLY NOW SECTION
   Used in: careers.html
   ═══════════════════════════════════════════════════════════ */
.apply-now-section {
  padding: clamp(48px, 6vw, 96px) var(--pad-x);
  background: linear-gradient(135deg, #00154d 0%, #000d35 100%);
  position: relative;
  overflow: hidden;
}
.apply-now-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,0,0,0.08);
  pointer-events: none;
}
.apply-now-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.apply-now-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.apply-now-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.apply-now-content .label {
  color: var(--yellow);
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.apply-now-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.apply-now-cta-title {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.apply-now-cta-title::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.apply-now-text {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 32px;
}
.apply-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid var(--red);
  transition: all 0.28s ease;
  align-self: flex-start;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.apply-now-btn:hover {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,0,0.3);
}
.apply-now-qr {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
.apply-now-qr p {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.apply-now-qr img {
  width: clamp(70px, 10vw, 100px);
  height: clamp(70px, 10vw, 100px);
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 6px;
  flex-shrink: 0;
}
.apply-now-image {
  position: relative;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.apply-now-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 14px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — NEW ELEGANT LAYOUT
   Used in: contact.html
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.contact-hero-new {
  background: linear-gradient(135deg, #001f7a 0%, #0a0a2e 60%, #1a0000 100%);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.contact-hero-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,0,0,0.15), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(0,31,122,0.3), transparent 40%);
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.contact-hero-text .label { background: rgba(255,255,255,0.12); color: #facc15; border: 1px solid rgba(250,204,21,0.3); }
.contact-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 16px 0 14px;
}
.contact-hero-text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.contact-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.contact-hero-btn-primary { background: #facc15; color: #001f7a; }
.contact-hero-btn-outline { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.contact-hero-btn-outline:hover { background: rgba(255,255,255,0.2); }
.contact-hero-badges { display: flex; flex-direction: column; gap: 16px; }
.contact-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}
.contact-badge:hover { background: rgba(255,255,255,0.12); }
.contact-badge > i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c00, #001f7a);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-badge div { display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.contact-badge span { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-badge strong { font-size: 0.9rem; color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Main 2-col section */
.contact-main-section {
  padding: clamp(60px, 7vw, 90px) var(--pad-x);
  background: #f8fafc;
}
.contact-main-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

/* Info column */
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.cinfo-card {
  background: #fff;
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.cinfo-card:hover { box-shadow: 0 8px 30px rgba(0,31,122,0.1); transform: translateY(-2px); }
.cinfo-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #001f7a 0%, #c00 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cinfo-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cinfo-body h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: #001f7a; font-weight: 700; margin-bottom: 6px; }
.cinfo-body a { font-size: 0.9rem; color: #374151; transition: color 0.2s; word-break: break-all; }
.cinfo-body a:hover { color: #c00; }
.cinfo-body p { font-size: 0.9rem; color: #374151; margin: 0; }
.cinfo-note { font-size: 0.78rem !important; color: #9ca3af !important; font-style: italic; margin-top: 4px !important; }

/* Social row */
.cinfo-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 14px;
  flex-wrap: wrap;
}
.cinfo-social-row span { font-size: 0.82rem; color: #6b7280; font-weight: 500; margin-right: 4px; }
.cinfo-social-row a {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #001f7a;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  transition: background 0.2s, transform 0.2s;
}
.cinfo-social-row a:hover { background: #c00; transform: translateY(-2px); }

/* Map card */
.contact-map-col { position: sticky; top: 100px; }
.contact-map-card {
  background: #fff;
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,31,122,0.08);
}
.contact-map-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #001f7a 0%, #0a0a2e 100%);
  color: #fff;
}
.contact-map-header > i {
  font-size: 1.4rem;
  color: #facc15;
  flex-shrink: 0;
}
.contact-map-header h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0; }
.contact-map-header p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0; }
.contact-map-img-wrap { overflow: hidden; }
.contact-map-img-wrap img { width: 100%; display: block; transition: transform 0.4s ease; }
.contact-map-img-wrap:hover img { transform: scale(1.03); }
.contact-map-actions {
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid rgba(226,232,240,0.8);
}
.contact-map-actions a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  background: #001f7a;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.contact-map-actions a:hover { background: #c00; transform: translateY(-1px); }

/* Social Media Section */
.contact-social-section {
  padding: clamp(60px, 7vw, 90px) var(--pad-x);
  background: #f8fafc;
}
.contact-social-inner { max-width: var(--container); margin: 0 auto; }
.contact-social-heading { text-align: center; margin-bottom: 48px; }
.contact-social-heading h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: #001f7a; margin: 12px 0 10px; }
.contact-social-heading p { color: #6b7280; font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.csocial-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.csocial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.csocial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.csocial-card:hover::before { opacity: 1; }
.csocial-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.csocial-info { flex: 1; min-width: 0; position: relative; z-index: 1; }
.csocial-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: #111827; margin-bottom: 2px; transition: color 0.25s; }
.csocial-info span { font-size: 0.78rem; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; transition: color 0.25s; }
.csocial-arrow { font-size: 0.8rem; color: #d1d5db; transition: transform 0.25s, color 0.25s; position: relative; z-index: 1; }
.csocial-card:hover .csocial-arrow { transform: translateX(4px); }

/* Per-platform colors */
.csocial-fb .csocial-icon  { background: #1877f2; }
.csocial-fb::before        { background: linear-gradient(135deg, rgba(24,119,242,0.06), transparent); }
.csocial-fb:hover .csocial-arrow { color: #1877f2; }
.csocial-fb:hover .csocial-info strong { color: #1877f2; }

.csocial-li .csocial-icon  { background: #0a66c2; }
.csocial-li::before        { background: linear-gradient(135deg, rgba(10,102,194,0.06), transparent); }
.csocial-li:hover .csocial-arrow { color: #0a66c2; }
.csocial-li:hover .csocial-info strong { color: #0a66c2; }

.csocial-x .csocial-icon   { background: #000; }
.csocial-x::before         { background: linear-gradient(135deg, rgba(0,0,0,0.05), transparent); }
.csocial-x:hover .csocial-arrow { color: #000; }
.csocial-x:hover .csocial-info strong { color: #000; }

.csocial-ig .csocial-icon  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.csocial-ig::before        { background: linear-gradient(135deg, rgba(188,24,136,0.06), transparent); }
.csocial-ig:hover .csocial-arrow { color: #bc1888; }
.csocial-ig:hover .csocial-info strong { color: #bc1888; }

.csocial-tt .csocial-icon  { background: #010101; }
.csocial-tt::before        { background: linear-gradient(135deg, rgba(1,1,1,0.05), transparent); }
.csocial-tt:hover .csocial-arrow { color: #010101; }
.csocial-tt:hover .csocial-info strong { color: #010101; }

.csocial-yt .csocial-icon  { background: #ff0000; }
.csocial-yt::before        { background: linear-gradient(135deg, rgba(255,0,0,0.06), transparent); }
.csocial-yt:hover .csocial-arrow { color: #ff0000; }
.csocial-yt:hover .csocial-info strong { color: #ff0000; }

@media (max-width: 900px) { .contact-social-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-social-grid { grid-template-columns: 1fr; } }

/* Facebook section */
.contact-fb-section {
  padding: clamp(50px, 6vw, 80px) var(--pad-x);
  background: #fff;
}
.contact-fb-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #001f7a 0%, #0a0a2e 60%, #1a0000 100%);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
}
.contact-fb-text .label { background: rgba(255,255,255,0.12); color: #facc15; border: 1px solid rgba(250,204,21,0.3); }
.contact-fb-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: #fff; font-weight: 800; margin: 12px 0 10px; }
.contact-fb-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.contact-fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #1877f2;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.contact-fb-btn:hover { background: #1259c3; transform: translateY(-2px); }
.contact-fb-qr { text-align: center; flex-shrink: 0; }
.contact-fb-qr p { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 12px; }
.contact-fb-qr img {
  width: 150px; height: 150px;
  border-radius: 16px;
  border: 3px solid rgba(255,255,255,0.15);
  background: #fff;
  padding: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-main-inner { grid-template-columns: 1fr; }
  .contact-map-col { position: static; }
  .contact-hero-inner { max-width: 100%; }
}
@media (max-width: 768px) {
  .contact-fb-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .contact-fb-qr { display: flex; flex-direction: column; align-items: center; }
  .contact-hero-badges { flex-direction: row; flex-wrap: wrap; }
  .contact-badge { flex: 1; min-width: 200px; }
  .contact-map-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .contact-hero-badges { flex-direction: column; }
  .contact-badge { min-width: unset; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT CARD
   Used in: contact.html
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* Second contact block: form + map side by side */
.contact-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.contact-card { padding: clamp(18px, 2.5vw, 34px); border: 1px solid rgba(226,232,240,.9); }
.contact-card i {
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(255,0,0,.08);
  color: #dc2626;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.contact-card h3 { margin-bottom: 14px; font-size: 1.05rem; }
.contact-card p  { color: var(--muted); margin-bottom: 14px; line-height: 1.8; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

/* ═══════════════════════════════════════════════════════════
   FORM CARD
   Currently unused / reserved styles (not referenced by any page yet)
   ═══════════════════════════════════════════════════════════ */
.form-card {
  background: #ffffff;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 28px;
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.form-card form { display: grid; gap: 16px; }
.form-card label { display: grid; gap: 8px; color: #0f172a; font-size: .92rem; font-weight: 600; }
.form-card input,
.form-card textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  color: #111827;
  padding: 13px 16px;
  font-size: .96rem;
  font-family: 'Poppins', sans-serif;
  transition: .3s ease;
}
.form-card input:focus,
.form-card textarea:focus { outline: none; border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,.10); }
.form-card textarea { min-height: 150px; resize: none; }
.form-card input::placeholder,
.form-card textarea::placeholder { color: #9ca3af; }
.form-card .custom-btn,
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   MAP CARD
   Used in: contact.html
   ═══════════════════════════════════════════════════════════ */
.map-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
}
.map-card img  { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.map-card span { color: var(--muted); font-size: 0.9rem; }
.map-card-large { display: grid; gap: 16px; }
.map-card-large img { min-height: 240px; width: 100%; object-fit: cover; border-radius: 14px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   Currently unused / reserved styles (superseded by "FOOTER — NEW DESIGN" below)
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  padding: clamp(48px, 7vw, 90px) var(--pad-x) clamp(24px, 3vw, 36px);
  background: #05070d;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,0,0,.08), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(250,204,21,.08), transparent 20%);
  pointer-events: none;
}
.footer-cta {
  max-width: var(--container);
  margin: 0 auto clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 2.5vw, 28px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}
.footer-cta img {
  width: clamp(60px, 7vw, 110px);
  height: auto;
  object-fit: contain;
}
.footer-cta .label { color: #facc15; }
.footer-cta h2 { color: #ffffff; font-size: clamp(1rem, 1.8vw, 1.5rem); line-height: 1.3; }
.footer-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 40px);
  position: relative;
  z-index: 2;
}
.footer-grid h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.70);
  line-height: 1.9;
  font-size: .88rem;
}
.footer-grid a:hover { color: #facc15; }

.social-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.70);
}
.social-link:hover { color: #facc15; }

.site-footer .label { color: #facc15; }
.site-footer h2    { color: #ffffff; }
.site-footer .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}
.site-footer .btn-secondary:hover { background: rgba(255,255,255,0.08); }

.footer-bottom {
  max-width: var(--container);
  margin: clamp(28px, 4vw, 42px) auto 0;
  color: rgba(255,255,255,.50);
  font-size: .85rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   MANAGEMENT SECTION
   Currently unused / reserved styles (not referenced by any page yet)
   ═══════════════════════════════════════════════════════════ */
.mgmt-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.mgmt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 75%;
  margin: 0 auto;
}

/* Profile card */
.profile-card {
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15,23,42,.12);
}
.profile-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.profile-card h4 {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.profile-card .profile-position {
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.85rem;
  margin: 4px 0 0;
}

/* Coming soon card */
.coming-soon-card {
  text-align: center;
  background: #fff;
  border: 1px dashed rgba(226,232,240,.9);
  border-radius: 16px;
  padding: 16px;
}
.coming-soon-img {
  width: 100%;
  height: 185px;
  background: rgba(0,0,0,0.04);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 2rem;
  margin-bottom: 10px;
}
.coming-soon-card h4 { font-size: 0.95rem; margin: 4px 0; color: #0f172a; }
.coming-soon-card p  { color: var(--muted); font-style: italic; font-size: 0.8rem; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .mgmt-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mgmt-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
}
@media (max-width: 768px) {
  .mgmt-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mgmt-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 100%; }
  .profile-card img,
  .coming-soon-img { height: 150px; }
}
@media (max-width: 480px) {
  .mgmt-grid-4,
  .mgmt-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .profile-card img,
  .coming-soon-img { height: 120px; }
  .profile-card h4,
  .coming-soon-card h4 { font-size: 0.8rem; }
  .profile-card .profile-position,
  .coming-soon-card p { font-size: 0.75rem; }
}
@media (max-width: 340px) {
  .mgmt-grid-4,
  .mgmt-grid-3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MANAGEMENT GRIDS
   Currently unused / reserved styles (not referenced by any page yet)
   ═══════════════════════════════════════════════════════════ */
.mgmt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 230px);
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.mgmt-profile-card {
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 12px;
  padding: 20px;
  width: 290px;
  max-width: 100%;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mgmt-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15,23,42,.12);
}
.mgmt-profile-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.mgmt-profile-card h4 {
  margin-top: 10px; font-size: 0.95rem;
  font-weight: 700; color: #0f172a;
}
.mgmt-position {
  color: var(--yellow); font-weight: 600;
  font-size: 0.85rem; margin: 4px 0 0;
}
.mgmt-coming-soon {
  text-align: center;
  background: #fff;
  border: 1px dashed #e2e8f0;
  border-radius: 16px;
  padding: 14px;
}
.mgmt-coming-img {
  width: 100%; height: 185px;
  background: rgba(0,0,0,0.04);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--muted); font-size: 2rem;
  margin-bottom: 10px;
}
.mgmt-coming-soon h4 { font-size: 0.95rem; margin: 4px 0; color: #0f172a; }
.mgmt-coming-soon p  { color: var(--muted); font-style: italic; font-size: 0.8rem; margin: 0; }

@media (max-width: 768px) {
  .mgmt-grid-3 { grid-template-columns: repeat(2, 180px); gap: 12px; }
  .mgmt-profile-card { width: 180px; }
  .mgmt-profile-card img, .mgmt-coming-img { height: 150px; }
}
@media (max-width: 480px) {
  .mgmt-grid-3 { grid-template-columns: repeat(2, 150px); gap: 10px; }
  .mgmt-profile-card { width: 150px; }
  .mgmt-profile-card img, .mgmt-coming-img { height: 120px; }
  .mgmt-profile-card h4, .mgmt-coming-soon h4 { font-size: 0.78rem; }
  .mgmt-position, .mgmt-coming-soon p { font-size: 0.72rem; }
}
@media (max-width: 340px) {
  .mgmt-grid-3 { grid-template-columns: repeat(1, 200px); }
  .mgmt-profile-card { width: 200px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — NEW DESIGN
   Used in: All pages (current site footer)
   ═══════════════════════════════════════════════════════════ */
.site-footer-new {
  background: linear-gradient(180deg, #00154d 0%, #000d35 100%);
  position: relative;
  overflow: hidden;
}
.site-footer-new::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(250,204,21,0.05), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(204,0,0,0.06), transparent 35%);
  pointer-events: none;
}

/* ── CTA Banner ── */
.footer-cta-new {
  background: linear-gradient(135deg, #001f7a, #cc0000);
  padding: clamp(28px, 4vw, 44px) var(--pad-x);
  position: relative;
  z-index: 2;
}
.footer-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-text span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.footer-cta-text h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-btn-email, .footer-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-btn-email {
  background: #facc15;
  color: #0f172a;
  box-shadow: 0 8px 24px rgba(250,204,21,0.3);
}
.footer-btn-call {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.4);
}
.footer-btn-email:hover, .footer-btn-call:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.2); }

/* ── Main Footer ── */
.footer-main {
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
  position: relative;
  z-index: 2;
}
.footer-main-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr 0.8fr;
  gap: clamp(24px, 4vw, 52px);
}

/* Brand col */
.footer-brand-col .footer-logo {
  width: clamp(100px, 12vw, 150px);
  margin-bottom: 16px;
}
.footer-brand-col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 0.85rem;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-socials a:hover { opacity: 0.85; transform: translateY(-3px); }

/* Footer social brand colors */
.footer-socials a[aria-label="Facebook"]  { background: #1877F2; border-color: #1877F2; }
.footer-socials a[aria-label="LinkedIn"]  { background: #0A66C2; border-color: #0A66C2; }
.footer-socials a[aria-label="X"]         { background: #000000; border-color: #333; }
.footer-socials a[aria-label="Instagram"] { background: radial-gradient(circle at 30% 110%, #fcaf45, #f77737, #fd1d1d, #833ab4, #405de6); border-color: transparent; }
.footer-socials a[aria-label="TikTok"]    { background: #010101; border-color: #333; color: #69C9D0; }
.footer-socials a[aria-label="YouTube"]   { background: #FF0000; border-color: #FF0000; }

/* Cols shared */
.footer-links-col h4,
.footer-contact-col h4,
.footer-map-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(250,204,21,0.4);
  display: inline-block;
}
.footer-links-col ul,
.footer-contact-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.footer-links-col a i { font-size: 0.65rem; color: #facc15; }
.footer-links-col a:hover { color: #facc15; gap: 12px; }

/* ── Footer dropdown (e.g. About Us with sub-links) ── */
.footer-dropdown { display: flex; flex-direction: column; }
.footer-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.footer-dropdown-toggle a {
  flex: 1;
  margin: 0;
}
.footer-dd-arrow-btn {
  background: none;
  border: none;
  padding: 4px;
  margin: -4px -4px -4px 0;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-dd-arrow-btn:hover { color: #facc15; }
.footer-dd-arrow {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}
.footer-dropdown.open .footer-dd-arrow { transform: rotate(180deg); }
.footer-dropdown-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: max-height 0.3s ease, margin 0.3s ease;
}
.footer-dropdown.open .footer-dropdown-menu {
  max-height: 200px;
  margin-top: 10px;
}
.footer-dropdown-menu li { padding: 4px 0; }
.footer-dropdown-menu a { font-size: 0.82rem; }

.footer-contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-contact-col li i { color: #facc15; font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-col a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer-contact-col a:hover { color: #facc15; }

/* Map */
.footer-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.footer-map-wrap img { width: 100%; display: block; height: 160px; object-fit: cover; }
.footer-map-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,15,50,0.9), transparent);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}
.footer-map-overlay i { color: #facc15; }

/* DPO/DPS compliance badge col */
.footer-dpo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-dpo-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(250,204,21,0.4);
  display: inline-block;
}
.footer-dpo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-dpo-badge img {
  width: clamp(120px, 9vw, 190px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}

/* Bottom bar */
.footer-bottom-new {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px var(--pad-x);
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.18);
}
.footer-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  text-align: center;
}
.footer-bottom-new p {
  color: rgba(255,255,255,0.45);
  font-size: 0.80rem;
  letter-spacing: 0.03em;
  margin: 0;
}
.footer-bottom-links { display: flex; align-items: center; gap: 6px; }
.footer-bottom-links::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.18);
  margin-right: 12px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.50);
  font-size: 0.80rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: #facc15; }
@media (max-width: 600px) {
  .footer-bottom-inner { flex-direction: column; gap: 8px; }
  .footer-bottom-links::before { display: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main-inner { grid-template-columns: 1fr 1fr; }
  .footer-dpo-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-main-inner { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Footer: 300px–400px ── */
@media (max-width: 400px) {
  /* CTA banner */
  .footer-cta-new { padding: 20px 12px; }
  .footer-cta-inner { gap: 14px; }
  .footer-cta-text span { font-size: 0.65rem; letter-spacing: 0.1em; }
  .footer-cta-text h2 { font-size: 1rem; }
  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
  .footer-btn-email,
  .footer-btn-call {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  /* Main footer */
  .footer-main { padding: 28px 12px; }
  .footer-main-inner { gap: 20px; }

  /* Brand col */
  .footer-brand-col .footer-logo { width: 90px; }
  .footer-brand-col p { font-size: 0.8rem; }

  /* Social icons — tighter wrap */
  .footer-socials { gap: 7px; }
  .footer-socials a { width: 30px; height: 30px; border-radius: 8px; font-size: 0.72rem; }

  /* Links & contact cols */
  .footer-links-col h4,
  .footer-contact-col h4,
  .footer-map-col h4,
  .footer-dpo-col h4 { font-size: 0.88rem; margin-bottom: 10px; }
  .footer-links-col a,
  .footer-contact-col li { font-size: 0.78rem; }

  /* Long email — allow wrapping */
  .footer-contact-col a { word-break: break-all; }

  /* Address text */
  .footer-contact-col li { gap: 8px; }

  /* Map */
  .footer-map-wrap img { height: 130px; }

  /* Bottom bar */
  .footer-bottom-new { padding: 14px 12px; }
  .footer-bottom-new p { font-size: 0.72rem; }
  .footer-bottom-links a,
  .footer-bottom-links span { font-size: 0.72rem; }
  .footer-bottom-links { gap: 6px; flex-wrap: wrap; justify-content: center; }
}

/* ── Footer overflow guard (flex children with long text/links) ── */
.footer-contact-col li > span,
.footer-email-group,
.footer-cta-text,
.footer-cta-text h2,
.footer-cta-text span {
  min-width: 0;
}
.footer-bottom-new p { word-break: break-word; }

/* ── Footer: 300px–320px (smallest gadgets) ── */
@media (max-width: 320px) {
  .footer-cta-new { padding: 16px 10px; }
  .footer-cta-text span { font-size: 0.6rem; letter-spacing: 0.08em; }
  .footer-cta-text h2 { font-size: 0.92rem; line-height: 1.35; }
  .footer-btn-email,
  .footer-btn-call { font-size: 0.75rem; padding: 9px 14px; }

  .footer-main { padding: 24px 10px; }
  .footer-main-inner { gap: 18px; }
  .footer-brand-col .footer-logo { width: 80px; }
  .footer-brand-col p { font-size: 0.76rem; }
  .footer-socials { gap: 6px; }
  .footer-socials a { width: 28px; height: 28px; font-size: 0.68rem; }

  .footer-links-col h4,
  .footer-contact-col h4,
  .footer-map-col h4,
  .footer-dpo-col h4 { font-size: 0.85rem; margin-bottom: 8px; padding-bottom: 8px; }
  .footer-links-col a,
  .footer-contact-col li,
  .footer-email-link,
  .footer-email-label { font-size: 0.74rem; }

  .footer-map-wrap img { height: 110px; }

  .footer-bottom-new { padding: 12px 10px; }
  .footer-bottom-new p,
  .footer-bottom-links a,
  .footer-bottom-links span { font-size: 0.68rem; }
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 80px; bottom: 18px;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226,232,240,.8);
  box-shadow: 0 10px 25px rgba(15,23,42,.08);
  color: #111827;
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 99;
}
.back-to-top:hover  { transform: translateY(-4px); }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s ease, transform .85s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS  —  308px → 1950px
   Used in: All pages (responsive media queries)
   ═══════════════════════════════════════════════════════════ */

/* ── Ultra Wide (≥ 1920px) ── */
@media (min-width: 1920px) {
  :root { --container: 1600px; --nav-height: 96px; }
  .hero-slider { height: 700px; }
  .nav-top-bar { height: 44px; }
  .nav-top-contact a { font-size: 13px; }
}

/* ── Extra Large (≥ 1600px) ── */
@media (min-width: 1600px) {
  :root { --container: 1400px; }
  .hero-slider { height: 660px; }
}

/* ── Tablet Large (≤ 1200px) ── */
@media (max-width: 1200px) {
  .hero-slider { height: 520px; }
  .feature-cards  { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid  { grid-template-columns: repeat(2, 1fr); }
  .job-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .hero-slider { height: 460px; }
  .about-preview,
  .career-benefits,
  .service-showcase,
  .service-showcase.alt,
  .vision-section { grid-template-columns: 1fr; }
  .service-showcase.alt .section-copy  { order: 2; }
  .service-showcase.alt .section-media { order: 1; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta  { grid-template-columns: auto 1fr; }
  .footer-actions { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE  —  308px → 1950px
   Used in: All pages (responsive media queries)
   ══════════════════════════════════════════════════════════ */

/* ── Ultra Wide (≥ 1920px) ── */
@media (min-width: 1920px) {
  :root { --container: 1600px; --nav-height: 110px; --pad-x: 60px; }
  .hero-slider { height: 700px; }
  .nav-top-bar { height: 46px; }
  .nav-top-contact a { font-size: 14px; }
  .section { padding: 100px var(--pad-x); }
  .site-header .navbar {
    height: 110px !important;
    align-items: stretch !important;
  }
  .brand {
    height: 110px !important;
    align-self: stretch !important;
    display: flex !important;
    align-items: stretch !important;
    overflow: hidden !important;
  }
  .brand img {
    height: 100% !important;
    max-height: none !important;
    width: 360px !important;
    max-width: 360px !important;
    object-fit: fill !important;
    display: block !important;
  }
  .nav-right-img {
    height: 110px !important;
    max-width: 220px !important;
    object-fit: cover !important;
  }
  .nav-link, .nav-cta {
    font-size: clamp(11px, 0.75vw, 14px);
    padding: 0 clamp(14px, 1.2vw, 24px);
    gap: 6px;
  }
  .nav-link i, .nav-cta i { font-size: clamp(1.1rem, 1.3vw, 1.5rem); }

  /* Footer scales up gracefully on ultra-wide displays */
  .footer-cta-text h2 { font-size: 2rem; }
  .footer-cta-text span { font-size: 0.85rem; }
  .footer-btn-email, .footer-btn-call { font-size: 0.95rem; padding: 14px 28px; }
  .footer-brand-col p,
  .footer-links-col a,
  .footer-contact-col li { font-size: 0.95rem; }
  .footer-links-col h4,
  .footer-contact-col h4,
  .footer-map-col h4 { font-size: 1.1rem; }
  .footer-map-wrap img { height: 190px; }
  .footer-bottom-new p,
  .footer-bottom-links a,
  .footer-bottom-links span { font-size: 0.88rem; }
}

/* ── Extra Large (≥ 1600px) ── */
@media (min-width: 1600px) {
  :root { --container: 1400px; --pad-x: 52px; }
  .hero-slider { height: 660px; }
}

/* ── Tablet Large (≤ 1200px) ── */
@media (max-width: 1200px) {
  :root { --pad-x: clamp(20px, 3.5vw, 40px); }
  .hero-slider { height: 520px; }
  .feature-cards  { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid  { grid-template-columns: repeat(2, 1fr); }
  .job-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  :root { --pad-x: clamp(18px, 3vw, 36px); }
  .hero-slider { height: 460px; }
  .about-preview,
  .career-benefits,
  .service-showcase,
  .service-showcase.alt,
  .vision-section { grid-template-columns: 1fr; }
  .service-showcase.alt .section-copy  { order: 2; }
  .service-showcase.alt .section-media { order: 1; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta  { grid-template-columns: auto 1fr; }
  .footer-actions { grid-column: 1 / -1; }
  .vision-pro-badge { bottom: -14px; right: 14px; }
  .wcu-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Nav Squeeze (981px–1165px) ── */
@media (min-width: 981px) and (max-width: 1165px) {
  .nav-link, .nav-cta {
    font-s
/* closed truncated nav-squeeze rule */
    font-size: clamp(9px, 0.72vw, 11px);
    padding: 0 clamp(8px, 1vw, 14px);
    gap: 3px;
  }
  .nav-link i, .nav-cta i { font-size: clamp(0.95rem, 1.1vw, 1.2rem); }
}

/* ── RESPONSIVE OVERHAUL ── */

/* ─── 0. Global safety net ───────────────────────────────── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

*, *::before, *::after {
  min-width: 0; /* prevent grid/flex overflow */
}

img, video, iframe, embed, object {
  max-width: 100%;
}

/* ─── 1. Nav Top Bar — 300px–600px ───────────────────────── */

/* Hide the two-email contact row completely below 600px;
   show only socials to prevent horizontal scroll */
@media (max-width: 600px) {
  .nav-top-bar {
    justify-content: flex-end;
    height: 36px;
    padding: 0 12px;
    overflow: hidden;
  }
  .nav-top-contact {
    display: none !important;
  }
  .nav-top-socials {
    gap: 4px;
  }
  .nav-top-socials a {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

/* Between 601–900px: show one email only, keep socials */
@media (min-width: 601px) and (max-width: 900px) {
  .nav-top-bar {
    padding: 0 clamp(10px, 2vw, 20px);
    overflow: hidden;
    height: 36px;
  }
  .nav-top-contact {
    gap: 6px;
    overflow: hidden;
    min-width: 0;
    flex-shrink: 1;
  }
  /* Hide the divider and second email on small tablet */
  .nav-top-contact .nav-top-divider,
  .nav-top-contact a:last-of-type {
    display: none;
  }
  .nav-top-contact a {
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
  }
  .nav-top-socials {
    gap: 4px;
    flex-shrink: 0;
  }
  .nav-top-socials a {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

/* ─── 2. Hamburger + Mobile Nav Panel ───────────────────── */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex !important;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: #ffffff;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    z-index: 110;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 32px;
    gap: 0;
    overflow-y: auto;
    transition: right 0.32s ease;
  }

  .site-header.nav-open .nav-panel {
    right: 0;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 0;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    gap: 12px;
    min-height: 44px;
  }

  .nav-link i,
  .nav-cta i {
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
  }

  .nav-link::after,
  .nav-cta::after {
    display: none;
  }
}

/* ─── 3. Hero Slider ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-slider {
    height: clamp(200px, 50vw, 380px) !important;
  }
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  /* .bible-verse sizing is now fully fluid via clamp() in the
     base rules above, so no fixed overrides are needed here. */
}

@media (max-width: 480px) {
  .hero-slider {
    height: clamp(200px, 55vw, 280px) !important;
  }
  .slider-dots {
    bottom: 8px;
    gap: 5px;
  }
  .slider-dot { width: 6px; height: 6px; }
  .slider-dot.active { width: 18px; }
  /* Cap the verse to 2 lines on small phones so the image
     above it always keeps a visible, uncovered area. */
  .bible-verse p {
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 340px) {
  .hero-slider {
    height: 200px !important;
  }
  .slider-arrow { display: none; }
}

/* ─── 4. Vision Pro Section ──────────────────────────────── */
@media (max-width: 768px) {
  .vision-pro-badge {
    position: static !important;
    bottom: auto !important;
    right: auto !important;
    margin-top: 12px;
    justify-content: center;
  }
}

/* ─── 5. Why Choose Us (WCU) ─────────────────────────────── */
@media (max-width: 768px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 400px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .wcu-stat strong { font-size: 1.6rem !important; }
  .wcu-stat span { font-size: 0.6rem !important; }
  .wcu-icon-wrap { width: 44px !important; height: 44px !important; border-radius: 10px !important; }
  .wcu-feature i { font-size: 1.1rem !important; }
  .wcu-feature span { font-size: 0.62rem !important; }
}

/* ─── 6. About Pro Section ───────────────────────────────── */
@media (max-width: 768px) {
  .about-pro-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .about-pro-img {
    order: -1;
  }
  .about-pro-stats {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 400px) {
  .about-pro-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .about-stat { padding: 10px 6px !important; }
  .about-stat strong { font-size: 1.1rem !important; }
  .about-stat span { font-size: 0.62rem !important; }
}

/* ─── 7. Service Showcase (alternating two-col) ──────────── */
@media (max-width: 900px) {
  .service-showcase,
  .service-showcase.alt {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .service-showcase.alt .section-copy  { order: 2; }
  .service-showcase.alt .section-media { order: 1; }
}

/* ─── 8. Service Highlight (sticky sidebar layout) ───────── */
@media (max-width: 900px) {
  .svc-highlight-inner {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .svc-highlight-heading { position: static !important; }
}

@media (max-width: 480px) {
  .svc-hl-card {
    padding: 12px 12px 12px 12px !important;
    gap: 10px !important;
  }
  .svc-hl-icon {
    width: 34px !important;
    height: 34px !important;
  }
  .svc-hl-icon i { font-size: 0.88rem !important; }
  .svc-hl-body h3 { font-size: 0.84rem !important; }
  .svc-hl-body p  { font-size: 0.76rem !important; }
}

/* ─── 9. Feature / Values / Service / Job Grids ──────────── */
@media (max-width: 768px) {
  .feature-cards,
  .values-grid,
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
  .job-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .feature-cards,
  .values-grid,
  .service-cards-grid,
  .timeline-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

/* ─── 10. Contact Page ────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-main-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .contact-map-col {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .contact-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .contact-social-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .contact-map-actions {
    flex-direction: column !important;
    gap: 8px;
  }
  .contact-hero-badges {
    flex-direction: column !important;
  }
  .contact-badge { min-width: unset !important; width: 100%; }
}

@media (max-width: 480px) {
  .contact-social-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .csocial-card { padding: 14px 16px; gap: 12px; }
  .csocial-icon { width: 40px; height: 40px; border-radius: 10px; }
  .cinfo-card { padding: 16px 16px; gap: 12px; }
  .cinfo-icon { width: 38px; height: 38px; border-radius: 10px; }
  .cinfo-body a,
  .cinfo-body p { font-size: 0.84rem; }
}

@media (max-width: 768px) {
  .contact-fb-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center;
    padding: clamp(24px, 5vw, 40px) !important;
  }
  .contact-fb-qr {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* ─── 11. Footer ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: clamp(20px, 4vw, 36px);
  }
}

@media (max-width: 640px) {
  .footer-main-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .footer-cta-inner {
    flex-direction: column !important;
    text-align: center;
    gap: 16px;
  }
  .footer-cta-actions {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-bottom-inner {
    flex-direction: column !important;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-cta-new {
    padding: 20px 16px !important;
  }
  .footer-cta-text h2 {
    font-size: 1.05rem !important;
  }
  .footer-btn-email,
  .footer-btn-call {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.82rem;
  }
  .footer-cta-actions {
    width: 100%;
    flex-direction: column !important;
  }
  .footer-main { padding: 32px 16px 24px !important; }
  .footer-bottom-new { padding: 16px 16px !important; }
  .footer-bottom-new p { font-size: 0.75rem; }
}

/* ─── 12. Footer CTA (old-style .footer-cta used on some pages) ── */
@media (max-width: 768px) {
  .footer-cta {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 16px;
  }
  .footer-actions {
    justify-content: center;
    grid-column: auto !important;
  }
  .footer-cta img { margin: 0 auto; }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

/* ─── 13. Board / Leadership / Management Grids ──────────── */
@media (max-width: 1024px) {
  .board-grid-5 { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  .board-grid-5 { grid-template-columns: repeat(2, 1fr) !important; }
  .board-grid-3 { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; }
  .mgmt-grid-4  { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
}

@media (max-width: 480px) {
  .board-grid-5,
  .board-grid-3 { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .mgmt-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .leader-info h4 { font-size: 0.75rem; }
  .leader-role { font-size: 0.82rem; }
}

@media (max-width: 340px) {
  .board-grid-5,
  .board-grid-3 { grid-template-columns: 1fr !important; }
  .mgmt-grid-4  { grid-template-columns: 1fr !important; }
}

/* ─── 14. About Company sections ─────────────────────────── */
@media (max-width: 900px) {
  .about-company-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .cp-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .spices-about-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .bh-text-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .srp-intro-inner {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .srp-prog-content {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .chairman-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .chairman-accent {
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 0;
  }
  .chairman-accent-line { width: 60px; height: 2px; }
  .partner-main {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .apply-now-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .apply-now-image { display: flex; }
}

@media (max-width: 600px) {
  .mv-banner {
    gap: 12px;
    flex-direction: column;
  }
  .mv-accent-bar {
    width: 40px;
    height: 3px;
    align-self: auto;
  }
  .spices-about-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }
  .srp-intro-pillars {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .spices-about-grid {
    grid-template-columns: 1fr !important;
  }
  .srp-intro-pillars {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
}

/* ─── 15. Partner section ─────────────────────────────────── */
@media (max-width: 768px) {
  .partner-cta-row {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 16px;
  }
  .partner-qr-block {
    width: 100%;
  }
}

/* ─── 16. Social card (careers / news pages) ─────────────── */
@media (max-width: 768px) {
  .social-card {
    grid-template-columns: 1fr !important;
    gap: 16px;
    text-align: center;
  }
  .social-card .qr-wrap {
    margin: 0 auto;
  }
}

/* ─── 17. News cards ─────────────────────────────────────── */
@media (max-width: 600px) {
  .news-card {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .news-card img { min-height: 160px; }
}

/* ─── 18. Two-col grid helper ────────────────────────────── */
@media (max-width: 900px) {
  .two-col-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

/* ─── 19. Page Hero (inner pages) ────────────────────────── */
@media (max-width: 480px) {
  .page-hero {
    padding: 48px 16px 40px !important;
    min-height: 220px;
  }
  .page-hero h1 { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
  .page-hero p  { font-size: 0.88rem !important; margin-top: 10px; }
}

/* ─── 20. Contact Hero ───────────────────────────────────── */
@media (max-width: 480px) {
  .contact-hero-new {
    padding: 48px 16px 40px !important;
  }
  .contact-hero-text h1 { font-size: clamp(1.5rem, 7vw, 2rem) !important; }
  .contact-hero-actions {
    flex-direction: column !important;
    align-items: stretch;
  }
  .contact-hero-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.88rem;
  }
}

/* ─── 21. Section padding on very small screens ──────────── */
@media (max-width: 400px) {
  :root { --pad-x: 12px !important; }
  .section {
    padding: clamp(28px, 6vw, 48px) 12px !important;
  }
  .vision-pro {
    padding: 18px 12px !important;
  }
  .wcu-section {
    padding: 24px 12px !important;
  }
  .about-pro {
    padding: 24px 12px !important;
  }
  .values-section {
    padding: 24px 12px !important;
  }
  .footer-cta-new {
    padding: 20px 12px !important;
  }
  .footer-main {
    padding: 28px 12px 20px !important;
  }
  .footer-bottom-new {
    padding: 14px 12px !important;
  }
  .contact-main-section {
    padding: 28px 12px !important;
  }
  .contact-social-section {
    padding: 28px 12px !important;
  }
  .contact-fb-section {
    padding: 24px 12px !important;
  }
}

/* ─── 22. Minimum touch targets on mobile ─────────────────── */
@media (max-width: 768px) {
  .btn, .custom-btn,
  .footer-btn-email, .footer-btn-call,
  .contact-hero-btn,
  .apply-now-btn,
  .partner-cta-btn {
    min-height: 44px;
  }
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  .spices-btn { min-width: 32px; min-height: 32px; }
  .slider-arrow { min-width: 32px; min-height: 32px; }
  .back-to-top { width: 44px; height: 44px; }
}

/* ─── 23. Mgmt profile cards on very narrow ──────────────── */
@media (max-width: 360px) {
  .mgmt-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    justify-content: center;
  }
  .mgmt-profile-card {
    width: 100% !important;
  }
}

/* ─── 24. Icon row stacks below 560px ───────────────────── */
@media (max-width: 560px) {
  .icon-row {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
}

/* ─── 25. Stats grid ─────────────────────────────────────── */
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
  }
  .stats-grid strong { font-size: 1.3rem; }
}

@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
}

/* ─── 26. CDA Message & Chairman sections ────────────────── */
@media (max-width: 768px) {
  .cda-message-inner { gap: 24px; }
  .cda-message-header h2 { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .bbm-message-inner { gap: 24px; }
  .bbm-message-header h2 { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .pldt-message-inner { gap: 24px; }
  .pldt-message-header h2 { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .chairman-quote-mark { font-size: clamp(3.5rem, 10vw, 6rem); }
  .chairman-years { padding: 14px 12px; }
  .chairman-closing-quote { padding: 16px 18px; }
  .chairman-signature { gap: 14px; }
}

/* ─── 27. Large screens (1201–1440) ────────────────────────  */
@media (min-width: 1201px) and (max-width: 1440px) {
  :root { --container: 1200px; }
  .nav-link, .nav-cta {
    font-size: clamp(10px, 0.8vw, 12px);
    padding: 0 clamp(12px, 1.2vw, 18px);
  }
}

/* ─── 28. Very large desktops (1441–1919) ──────────────────── */
@media (min-width: 1441px) and (max-width: 1919px) {
  :root { --container: 1380px; --pad-x: clamp(36px, 3vw, 56px); }
  .hero-slider { height: clamp(560px, 38vw, 680px); }
}

/* ─── 29. Prevent text overflow / word-break on small ────── */
@media (max-width: 400px) {
  .footer-contact-col a,
  .cinfo-body a,
  .nav-top-contact a {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }
  .contact-badge strong {
    white-space: normal !important;
    word-break: break-word !important;
  }
  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* ─── 30. Approach steps (scrollable carousel) ───────────── */
@media (max-width: 480px) {
  .approach-step { width: 130px !important; }
  .as-icon { width: 46px; height: 46px; }
  .approach-step h3 { font-size: 0.78rem; }
  .approach-step p  { font-size: 0.7rem; }
  .approach-btn { width: 30px; height: 30px; font-size: 0.68rem; }
}

/* ─── 31. Partner CTA row ────────────────────────────────── */
@media (max-width: 480px) {
  .partner-cta-row { padding: 16px; gap: 12px; }
  .partner-cta-btn { padding: 11px 18px; font-size: 0.82rem; }
}

/* ─── 32. Apply-now QR block on mobile ───────────────────── */
@media (max-width: 480px) {
  .apply-now-qr {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }
}

/* ─── 33. Awards slider ──────────────────────────────────── */
@media (max-width: 480px) {
  .awards-slider { margin-top: 24px; }
  .awards-arrow { width: 28px; height: 28px; font-size: 0.65rem; }
  .awards-thumb { width: 52px; height: 38px; border-radius: 7px; }
}

/* ─── 34. Overhaul complete ──────────────────────────────── */

/* ─── NAV TOP SOCIALS — fixed size, no stretch, all widths ── */
.nav-top-bar {
  align-items: center;
}
.nav-top-socials {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.nav-top-socials a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  border-radius: 50% !important;
  font-size: 0.75rem !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
@media (max-width: 900px) {
  .nav-top-socials a {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    font-size: 0.7rem !important;
  }
}
@media (max-width: 600px) {
  .nav-top-socials {
    gap: 4px;
  }
  .nav-top-socials a {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    font-size: 0.65rem !important;
  }
}
@media (min-width: 1440px) {
  .nav-top-socials a {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    font-size: 0.8rem !important;
  }
}


/* ══════════════════════════════════════════════════════════
   NAVBAR + HEADER — STICKY FIX & FULL RESPONSIVE 300–1920px
   Used in: All pages (sticky header responsive fixes)
   ══════════════════════════════════════════════════════════ */

/* STICKY: overflow-x: clip on wrappers (not hidden, which breaks sticky) */
html { overflow-x: clip; }
body { overflow-x: clip; }
main { overflow-x: clip; }

/* Header is position: fixed — always on top */

/* ── 1920px+ ── */
@media (min-width: 1920px) {
  .nav-top-bar {
    height: 44px !important;
    padding: 0 clamp(32px, 4vw, 80px) !important;
  }
  .nav-top-contact { gap: 18px; }
  .nav-top-contact a { font-size: 13px !important; }
  .site-header .navbar {
    height: 96px !important;
    padding: 0 clamp(32px, 4vw, 80px) !important;
  }
  .brand img { height: 96px !important; width: auto !important; max-width: 340px !important; object-fit: contain !important; }
  .nav-link, .nav-cta { font-size: 12px !important; padding: 0 20px !important; height: 96px !important; }
  .nav-link i, .nav-cta i { font-size: 1.3rem !important; }
  .nav-right-img { height: 96px !important; }
}

/* ── 1440–1919px ── */
@media (min-width: 1440px) and (max-width: 1919px) {
  .nav-top-bar { padding: 0 clamp(24px, 3vw, 60px) !important; }
  .site-header .navbar { padding: 0 clamp(24px, 3vw, 60px) !important; }
}

/* ── 1200–1439px ── */
@media (min-width: 1200px) and (max-width: 1439px) {
  .nav-top-bar { padding: 0 clamp(16px, 2vw, 40px) !important; }
  .site-header .navbar { padding: 0 clamp(16px, 2vw, 40px) !important; }
  .nav-link, .nav-cta { padding: 0 clamp(8px, 1.2vw, 18px) !important; font-size: 10.5px !important; }
  .nav-panel { gap: clamp(4px, 1vw, 20px) !important; }
}

/* ── 1025–1199px ── */
@media (min-width: 1025px) and (max-width: 1199px) {
  .nav-top-bar { padding: 0 16px !important; }
  .site-header .navbar { padding: 0 16px !important; }
  .nav-link, .nav-cta { padding: 0 10px !important; font-size: 10px !important; }
  .nav-panel { gap: 6px !important; }
  .nav-link span, .nav-cta span { font-size: 9.5px !important; }
  .nav-right-img { display: none; }
}

/* ── 901–1024px ── */
@media (min-width: 901px) and (max-width: 1024px) {
  .nav-top-bar { padding: 0 14px !important; height: 36px !important; }
  .nav-top-contact a { font-size: 10px !important; }
  .site-header .navbar { padding: 0 14px !important; }
  .nav-link, .nav-cta { padding: 0 8px !important; font-size: 9.5px !important; }
  .nav-panel { gap: 4px !important; }
  .nav-link span, .nav-cta span { font-size: 9px !important; }
  .nav-link i, .nav-cta i { font-size: 1rem !important; }
  .nav-right-img { display: none; }
}

/* ── Mobile ≤ 900px: hamburger menu ── */
@media (max-width: 900px) {
  .site-header .navbar {
    padding: 0 16px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .brand { height: 60px !important; }
  .brand img { height: 60px !important; width: auto !important; max-width: 220px !important; object-fit: contain !important; }
  .menu-toggle { display: flex !important; z-index: 1100 !important; }
  .nav-right-img { display: none; }

  /* Off-canvas drawer */
  .nav-panel {
    position: fixed !important;
    top: 0 !important; right: -100% !important;
    width: min(300px, 85vw) !important;
    height: 100dvh !important;
    background: #ffffff !important;
    box-shadow: -4px 0 32px rgba(0,0,0,0.15) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 80px 0 32px !important;
    gap: 0 !important;
    margin-left: 0 !important;
    overflow-y: auto !important;
    transition: right 0.3s ease !important;
    z-index: 1050 !important;
  }
  .site-header.nav-open .nav-panel { right: 0 !important; }

  .nav-link, .nav-cta {
    width: 100% !important;
    height: auto !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 14px 24px !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(0,31,122,0.07) !important;
  }
  .nav-link::after, .nav-cta::after { display: none !important; }
  .nav-link i, .nav-cta i { font-size: 1rem !important; width: 20px !important; text-align: center !important; }
  .nav-link span, .nav-cta span { font-size: 13px !important; }
}

/* ── 600–900px: top bar shows one email ── */
@media (min-width: 601px) and (max-width: 900px) {
  .nav-top-bar {
    height: 36px !important;
    padding: 0 16px !important;
    justify-content: space-between !important;
  }
  .nav-top-contact { gap: 6px !important; flex-shrink: 1 !important; min-width: 0 !important; overflow: hidden !important; }
  .nav-top-contact .nav-top-divider,
  .nav-top-contact a:last-of-type { display: none !important; }
  .nav-top-contact a { font-size: 10px !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; max-width: 240px !important; }
  .nav-top-socials { flex-shrink: 0 !important; gap: 4px !important; }
}

/* ── ≤ 600px: hide contact, show only socials ── */
@media (max-width: 600px) {
  .nav-top-bar {
    height: 36px !important;
    padding: 0 12px !important;
    justify-content: space-between !important;
  }
  .nav-top-contact { display: none !important; }
  .nav-top-socials { gap: 4px !important; flex-shrink: 0 !important; }
}

/* ── ≤ 480px ── */
@media (max-width: 480px) {
  .site-header .navbar { height: 56px !important; padding: 0 12px !important; }
  .brand { height: 52px !important; }
  .brand img { height: 52px !important; max-width: 180px !important; }
  .menu-toggle { width: 40px !important; height: 40px !important; }
}

/* ── ≤ 360px ── */
@media (max-width: 360px) {
  .site-header .navbar { height: 50px !important; padding: 0 10px !important; }
  .brand { height: 46px !important; }
  .brand img { height: 46px !important; max-width: 150px !important; }
  .nav-top-bar { height: 32px !important; padding: 0 10px !important; }
  .nav-top-socials a { width: 20px !important; height: 20px !important; min-width: 20px !important; min-height: 20px !important; max-width: 20px !important; max-height: 20px !important; font-size: 0.6rem !important; }
}

/* ── ≤ 300px ── */
@media (max-width: 300px) {
  .site-header .navbar { height: 46px !important; padding: 0 8px !important; }
  .brand img { max-width: 130px !important; }
  .nav-top-socials { gap: 3px !important; }
  .nav-top-socials a { width: 18px !important; height: 18px !important; min-width: 18px !important; min-height: 18px !important; max-width: 18px !important; max-height: 18px !important; font-size: 0.55rem !important; }
}


/* ── Body padding-top per breakpoint (matches fixed header height) ── */
/* Default: 40px top-bar + clamp(64px,7vw,88px) navbar */
@media (min-width: 1920px) {
  body { padding-top: calc(44px + 96px) !important; }
}
@media (max-width: 1024px) {
  body { padding-top: calc(36px + 64px) !important; }
}
@media (max-width: 900px) {
  body { padding-top: calc(36px + 64px) !important; }
}
@media (max-width: 600px) {
  body { padding-top: calc(36px + 64px) !important; }
}
@media (max-width: 480px) {
  body { padding-top: calc(36px + 56px) !important; }
}
@media (max-width: 360px) {
  body { padding-top: calc(32px + 50px) !important; }
}
@media (max-width: 300px) {
  body { padding-top: calc(32px + 46px) !important; }
}

/* ── Social icons always on the RIGHT in top bar ── */
.nav-top-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.nav-top-socials {
  margin-left: auto;
  flex-shrink: 0 !important;
}
@media (max-width: 600px) {
  .nav-top-contact { display: none !important; }
  .nav-top-bar { justify-content: flex-end !important; }
  .nav-top-socials { margin-left: 0; }
}

/* apply-now mobile image — see overhaul below */

/* ── Apply-now section: full image, professional & elegant ── */
@media (max-width: 900px) {
  .apply-now-section {
    padding: clamp(40px,6vw,72px) clamp(16px,5vw,40px) !important;
  }
  .apply-now-inner {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: clamp(28px,5vw,40px) !important;
    align-items: center !important;
  }

  /* Image: full, unclipped, centered as an elegant card */
  .apply-now-image {
    order: -1 !important;
    display: flex !important;
    width: 100% !important;
    max-width: 480px !important;
    height: auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: transparent !important;
  }
  .apply-now-image::after {
    display: none !important;
  }
  .apply-now-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 16px !important;
  }

  .apply-now-content {
    order: 1 !important;
    width: 100% !important;
  }
}

/* ── Right_image.png — pinned to right corner, 1200px–1920px ── */

/* Hidden by default (mobile) */
.nav-right-img {
  display: none !important;
}

/* 1200px+: absolute pin to right corner of navbar */
@media (min-width: 1200px) {
  .nav-right-img {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 100% !important;
    width: auto !important;
    max-width: 130px !important;
    object-fit: contain !important;
    object-position: right center !important;
    pointer-events: none !important;
    user-select: none !important;
    z-index: 1 !important;
  }
  /* Prevent nav links from sliding under the image */
  .nav-panel {
    padding-right: 135px !important;
  }
}

@media (min-width: 1440px) {
  .nav-right-img { max-width: 180px !important; }
  .nav-panel { padding-right: 185px !important; }
}

@media (min-width: 1920px) {
  .nav-right-img { max-width: 220px !important; height: 96px !important; }
  .nav-panel { padding-right: 225px !important; }
}


/* ══ NAVBAR FINAL ══
   Single authoritative block covering 300px–1920px+.
   Uses !important throughout to win over all prior rules.
   Structure: .brand → .menu-toggle → .nav-panel → .nav-right-img
   Used in: All pages (final/authoritative navbar responsive rules)
   ══════════════════════════════════════════════════════════════ */

/* ── Base navbar layout (shared, mobile-first) ── */
.site-header .navbar {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  width: 100% !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}

.brand img {
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* ══ DESKTOP ≥ 1025px: hamburger hidden, nav-panel inline row ══ */
@media (min-width: 1025px) {
  .site-header .navbar {
    align-items: stretch !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-panel {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-direction: row !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    gap: 0 !important;
    overflow-y: visible !important;
    transition: none !important;
    z-index: auto !important;
  }

  .nav-link,
  .nav-cta {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    border-bottom: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    height: var(--nav-height) !important;
  }

  .nav-link::after,
  .nav-cta::after {
    display: block !important;
  }

  .nav-right-img {
    display: none !important;
  }
}

/* ── 1025–1199px ── */
@media (min-width: 1025px) and (max-width: 1199px) {
  .site-header .navbar {
    height: 72px !important;
    padding: 0 16px !important;
  }
  .brand {
    height: 72px !important;
  }
  .brand img {
    height: 72px !important;
    max-width: 200px !important;
  }
  .nav-link,
  .nav-cta {
    font-size: 10px !important;
    padding: 0 9px !important;
    height: 72px !important;
    gap: 3px !important;
  }
  .nav-link i,
  .nav-cta i {
    font-size: 1rem !important;
  }
  .nav-panel {
    gap: 0 !important;
  }
  .nav-right-img {
    display: none !important;
  }
}

/* ── 1200–1439px ── */
@media (min-width: 1200px) and (max-width: 1439px) {
  .site-header .navbar {
    height: 80px !important;
    padding: 0 clamp(16px, 2vw, 40px) !important;
  }
  .brand {
    height: 80px !important;
  }
  .brand img {
    height: 80px !important;
    max-width: 240px !important;
  }
  .nav-link,
  .nav-cta {
    font-size: 10.5px !important;
    padding: 0 12px !important;
    height: 80px !important;
    gap: 4px !important;
  }
  .nav-link i,
  .nav-cta i {
    font-size: 1.1rem !important;
  }
  .nav-panel {
    padding-right: 135px !important;
  }
  .nav-right-img {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 100% !important;
    width: auto !important;
    max-width: 130px !important;
    object-fit: contain !important;
    object-position: right center !important;
    pointer-events: none !important;
    user-select: none !important;
    z-index: 1 !important;
  }
}

/* ── 1440–1919px ── */
@media (min-width: 1440px) and (max-width: 1919px) {
  .site-header .navbar {
    height: 88px !important;
    padding: 0 clamp(24px, 3vw, 60px) !important;
  }
  .brand {
    height: 88px !important;
  }
  .brand img {
    height: 88px !important;
    max-width: 290px !important;
  }
  .nav-link,
  .nav-cta {
    font-size: 11px !important;
    padding: 0 16px !important;
    height: 88px !important;
    gap: 5px !important;
  }
  .nav-link i,
  .nav-cta i {
    font-size: 1.2rem !important;
  }
  .nav-panel {
    padding-right: 185px !important;
  }
  .nav-right-img {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 100% !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
    object-position: right center !important;
    pointer-events: none !important;
    user-select: none !important;
    z-index: 1 !important;
  }
}

/* ── 1920px+ ── */
@media (min-width: 1920px) {
  .site-header .navbar {
    height: 96px !important;
    padding: 0 clamp(32px, 4vw, 80px) !important;
  }
  .brand {
    height: 96px !important;
  }
  .brand img {
    height: 96px !important;
    max-width: 340px !important;
  }
  .nav-link,
  .nav-cta {
    font-size: 12px !important;
    padding: 0 20px !important;
    height: 96px !important;
    gap: 6px !important;
  }
  .nav-link i,
  .nav-cta i {
    font-size: 1.3rem !important;
  }
  .nav-panel {
    padding-right: 225px !important;
  }
  .nav-right-img {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 96px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
    object-position: right center !important;
    pointer-events: none !important;
    user-select: none !important;
    z-index: 1 !important;
  }
}

/* ══ MOBILE ≤ 1024px: hamburger drawer ══ */
@media (max-width: 1024px) {
  .site-header .navbar {
    height: 64px !important;
    padding: 0 16px !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .brand {
    height: 56px !important;
  }
  .brand img {
    height: 56px !important;
    max-width: 200px !important;
  }
  .menu-toggle {
    display: flex !important;
    width: 48px !important;
    height: 48px !important;
    align-self: center !important;
    z-index: 1100 !important;
    flex-shrink: 0 !important;
  }
  .nav-right-img {
    display: none !important;
  }

  /* Off-canvas drawer */
  .nav-panel {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: min(300px, 85vw) !important;
    height: 100dvh !important;
    background: #ffffff !important;
    box-shadow: -4px 0 32px rgba(0,0,0,0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 80px 0 32px !important;
    gap: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-y: auto !important;
    transition: right 0.3s ease !important;
    z-index: 1050 !important;
  }
  .site-header.nav-open .nav-panel {
    right: 0 !important;
  }

  /* Drawer links: row layout */
  .nav-link,
  .nav-cta {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(0,31,122,0.07) !important;
    white-space: normal !important;
  }
  .nav-link::after,
  .nav-cta::after {
    display: none !important;
  }
  .nav-link i,
  .nav-cta i {
    font-size: 1rem !important;
    width: 20px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
  }
  .nav-link span,
  .nav-cta span {
    font-size: 14px !important;
  }

  /* Dropdown stays usable in drawer */
  .nav-dropdown {
    height: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .nav-dropdown-toggle {
    height: auto !important;
    width: 100% !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding: 14px 24px !important;
  }
  .nav-dropdown-menu {
    display: none !important;
    position: static !important;
    transform: none !important;
    min-width: 100% !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    animation: none !important;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }
  .nav-dropdown.open .nav-dd-arrow {
    transform: rotate(180deg) !important;
  }
}

/* ── ≤ 768px ── */
@media (max-width: 768px) {
  .site-header .navbar {
    height: 60px !important;
    padding: 0 14px !important;
  }
  .brand {
    height: 52px !important;
  }
  .brand img {
    height: 52px !important;
    max-width: 200px !important;
  }
}

/* ── ≤ 480px ── */
@media (max-width: 480px) {
  .site-header .navbar {
    height: 56px !important;
    padding: 0 12px !important;
  }
  .brand {
    height: 48px !important;
  }
  .brand img {
    height: 48px !important;
    max-width: 160px !important;
  }
  .menu-toggle {
    width: 40px !important;
    height: 40px !important;
  }
}

/* ── ≤ 360px ── */
@media (max-width: 360px) {
  .site-header .navbar {
    height: 52px !important;
    padding: 0 10px !important;
  }
  .brand {
    height: 44px !important;
  }
  .brand img {
    height: 44px !important;
    max-width: 140px !important;
  }
  .menu-toggle {
    width: 36px !important;
    height: 36px !important;
  }
}

/* ── ≤ 300px ── */
@media (max-width: 300px) {
  .site-header .navbar {
    height: 48px !important;
    padding: 0 8px !important;
  }
  .brand {
    height: 40px !important;
  }
  .brand img {
    height: 40px !important;
    max-width: 120px !important;
  }
  .menu-toggle {
    width: 32px !important;
    height: 32px !important;
  }
}

/* ══ END NAVBAR FINAL ══ */

/* ── Board Section — Leadership label + group titles ── */
.board-section-label {
  margin-bottom: clamp(24px, 4vw, 40px);
  padding-top: clamp(16px, 3vw, 32px);
}
.board-label-lg {
  font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
  letter-spacing: 0.25em !important;
  font-weight: 800 !important;
  color: #cc0000 !important;
}
.board-group-title {
  font-size: clamp(1.3rem, 2.5vw, 2rem) !important;
  font-weight: 700 !important;
  color: #001f7a !important;
  margin-bottom: clamp(20px, 3vw, 36px) !important;
  padding-bottom: 10px !important;
  border-bottom: 3px solid #cc0000 !important;
  display: block !important;
  text-align: center !important;
}

/* ── TotalDev Hymn Player ── */
.hymn-player {
  position: fixed;
  bottom: 80px;
  right: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.hymn-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #001f7a, #cc0000);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,31,122,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}
.hymn-btn:hover { transform: scale(1.12); box-shadow: 0 6px 22px rgba(0,31,122,0.5); }
.hymn-active .hymn-btn {
  animation: hymn-pulse 1.8s ease-in-out infinite;
}
@keyframes hymn-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,31,122,0.45); }
  50%      { box-shadow: 0 0 0 12px rgba(0,31,122,0); }
}
.hymn-label {
  background: rgba(0,21,77,0.88);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(6px);
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .hymn-player { bottom: 72px; right: 12px; }
  .hymn-btn { width: 46px; height: 46px; font-size: 1rem; }
}

/* ── Footer Email Items ─────────────────────────────────── */
.footer-email-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px;
}
.footer-email-icon {
  margin-top: 3px;
  flex-shrink: 0;
  color: #f0c040;
}
.footer-email-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-email-link {
  color: #cbd5e1;
  font-size: 0.88rem;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}
.footer-email-link:hover {
  color: #f0c040;
  text-decoration: underline;
}
.footer-email-label {
  font-size: 0.75rem;
  color: #f0c040;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Accessibility & SEO: visually hidden but readable by screen readers & crawlers */
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
