/* ============================================
   Global Peace Trading Co. — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&family=Noto+Sans+Arabic:wght@400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:   #0d2a5e;
  --navy2:  #1a3d7c;
  --red:    #d9261c;
  --gold:   #f0a500;
  --white:  #ffffff;
  --light:  #f4f7fb;
  --gray:   #6b7a99;
  --border: #dde3ef;
  --shadow: 0 4px 24px rgba(13,42,94,0.10);
  --radius: 10px;
  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: #1a2540;
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(13,42,94,0.10);
  padding: 0 2rem;
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
}

.logo-text .en {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.2;
  white-space: nowrap;
}

.logo-text .ar {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 0.78rem;
  color: var(--red);
  direction: rtl;
}

.navbar__links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.navbar__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2d3a5e;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--navy);
  background: var(--light);
}

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  margin-left: 1rem;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.navbar__lang:hover { border-color: var(--navy); }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}

.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,28,70,0.88) 0%, rgba(10,28,70,0.45) 55%, rgba(10,28,70,0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}

.hero__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  max-width: 560px;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 420px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-primary:hover { background: #b81f17; transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.82rem 1.8rem;
  border-radius: 6px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-outline:hover { background: var(--navy); color: var(--white); }

.hero__dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.55rem;
}

.hero__dots span {
  width: 28px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.hero__dots span.active {
  background: var(--white);
  width: 44px;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: 5rem 2rem;
}

.section--light { background: var(--light); }
.section--navy  { background: var(--navy); color: var(--white); }

.section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.6rem;
}

.section--navy .section__title { color: var(--white); }

.section__underline {
  width: 56px;
  height: 4px;
  margin: 0 auto 1rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy) 40%, var(--red) 40%, var(--red) 70%, var(--gold) 70%);
}

.section__sub {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section--navy .section__sub { color: rgba(255,255,255,0.7); }

/* ============================================
   OFFER CARDS (Home)
   ============================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.offer-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}

.offer-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.offer-card__icon--blue  { background: #e8eef9; }
.offer-card__icon--red   { background: #fdecea; }
.offer-card__icon--gold  { background: #fef6e4; }
.offer-card__icon--green { background: #e6f5ef; }

.offer-card__icon svg { width: 30px; height: 30px; }

.offer-card__title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.offer-card__desc {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy2);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s, color 0.2s;
}

.learn-more:hover { gap: 0.6rem; color: var(--red); }
.learn-more svg { width: 16px; height: 16px; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 2rem;
}

.stats-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-top: 0.3rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.why-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-visual svg { width: 80%; height: 80%; opacity: 0.9; }

.why-list { display: flex; flex-direction: column; gap: 1.4rem; }

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__icon svg { width: 22px; height: 22px; color: var(--white); }

.why-item__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.why-item__desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 5rem 2rem;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .cur { color: var(--white); }

.page-hero__title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item__icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-item__label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-item__value { font-weight: 600; color: var(--navy); font-size: 0.97rem; }

.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 0.75rem 1rem;
  font-family: var(--font-b);
  font-size: 0.92rem;
  color: #1a2540;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy2);
  box-shadow: 0 0 0 3px rgba(26,61,124,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  text-align: center;
}

.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.team-card__photo {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo svg { width: 80px; height: 80px; opacity: 0.5; }

.team-card__body { padding: 1.5rem 1.25rem; }

.team-card__name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card__bio { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.product-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--light) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img svg { width: 64px; height: 64px; color: var(--navy2); opacity: 0.5; }

.product-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.product-card__body { padding: 1.4rem 1.5rem; }

.product-card__title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.product-card__desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0b1e47;
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 0;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand { }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__logo .en { font-family: var(--font-h); font-weight: 700; color: var(--white); font-size: 1rem; }
.footer__logo .ar { font-family: 'Noto Sans Arabic', sans-serif; color: var(--red); font-size: 0.75rem; direction: rtl; }

.footer__tagline { font-size: 0.88rem; line-height: 1.7; max-width: 240px; margin-bottom: 1.5rem; }

.footer__social {
  display: flex;
  gap: 0.65rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: var(--white);
}

.footer__social a:hover { background: var(--red); }
.footer__social svg { width: 18px; height: 18px; }

.footer__col h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s, padding-left 0.2s;
}

.footer__col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.83rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.2;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.value-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card__title { font-family: var(--font-h); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card__desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary { font-size: 1rem; padding: 1rem 2.5rem; }

/* ============================================
   UTILITIES
   ============================================ */
.text-gold { color: var(--gold); }
.text-red  { color: var(--red); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,28,70,0.55);
  backdrop-filter: blur(4px);
}

.mobile-menu.open { display: flex; }

.mobile-menu__panel {
  background: var(--white);
  width: 280px;
  height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 4px 0 24px rgba(0,0,0,0.2);
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 1rem;
}

.mobile-menu__panel a {
  display: block;
  font-weight: 600;
  color: var(--navy);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s;
}

.mobile-menu__panel a:hover,
.mobile-menu__panel a.active { background: var(--light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .navbar__links { display: none; }
  .navbar__lang  { display: none; }
  .navbar__hamburger { display: flex; }
  .why-grid, .about-mission, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero__content { padding: 3.5rem 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================
   EXTENDED STYLES — Real Company Pages
   ============================================ */

/* ── STAT BAR (alternative: .stat-item) ─── */
.stat {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-h);
  font-size: 2.4rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat__label {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: 6px;
}
.stat-item { text-align: center; padding: 0 1.5rem; border-right: 1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-h); font-size: 2.4rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-item__lbl {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.65); text-transform: uppercase;
  letter-spacing: .08em; margin-top: 6px;
}

/* ── SERVICE CARD ─────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column; gap: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,42,94,.12);
  border-color: var(--navy);
}
.service-card__icon { font-size: 34px; margin-bottom: 16px; }
.service-card__title {
  font-family: var(--font-h); font-size: 19px; font-weight: 800;
  color: var(--navy); margin-bottom: 12px; line-height: 1.2;
}
.service-card__desc {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  flex: 1; margin-bottom: 18px;
}
.service-card__desc p { margin-bottom: .5rem; }
.service-list {
  list-style: none; margin-top: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-list li {
  font-size: 13px; color: var(--gray);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.service-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--red); font-weight: 700; font-size: 16px; line-height: 1.2;
}

/* ── VALUE CARD COLOUR BORDERS ────────────── */
.value-card {
  border-left: 3px solid var(--navy);
  padding-left: 20px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(13,42,94,.10); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2rem;
}

/* ── TWO-COL INTRO ───────────────────────── */
.two-col-intro {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
}

/* ── ABOUT MISSION ───────────────────────── */
.about-mission {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d7c 100%);
  border-radius: var(--radius); padding: 48px 32px;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}

/* ── CONTACT PAGE ────────────────────────── */
.contact-divider {
  height: 1px; background: rgba(255,255,255,.12); margin: 28px 0;
}
.contact-main-card {
  background: linear-gradient(145deg, var(--navy) 0%, #1a3d7c 100%);
  border-radius: 16px; padding: 52px 44px; color: white;
}
.contact-main-card__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.contact-main-card__title {
  font-family: var(--font-h); font-size: 36px; font-weight: 800;
  color: white; margin-bottom: 10px; line-height: 1.1;
}
.contact-main-card__sub {
  color: rgba(255,255,255,.65); font-size: 15px;
  line-height: 1.7; margin-bottom: 40px;
}
.contact-page-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start;
}
.contact-side-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-side-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  transition: border-color .3s, box-shadow .3s;
}
.contact-side-card:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(13,42,94,.08); }
.contact-side-card__icon { font-size: 32px; margin-bottom: 14px; }
.contact-side-card__title {
  font-family: var(--font-h); font-size: 20px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.contact-side-card__desc {
  font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px;
}
.contact-side-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  color: var(--navy); text-decoration: none; transition: .2s;
}
.contact-side-card__link:hover { color: var(--red); gap: 10px; }
.contact-website-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: 12px 20px; text-decoration: none;
  color: white; font-size: 15px; font-weight: 600; transition: .2s;
}
.contact-website-pill:hover { background: var(--gold); color: var(--navy); }

/* ── MAP BLOCK ───────────────────────────── */
.map-block {
  border-radius: 16px; overflow: hidden; height: 340px;
  background: linear-gradient(135deg, #1a3d7c 0%, #0d2a5e 100%);
  position: relative; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); margin-top: 40px;
}
.map-block__grid {
  position: absolute; inset: 0; opacity: .10;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 36px 36px;
}
.map-block__content { position: relative; text-align: center; padding: 0 24px; }
.map-block__icon { font-size: 44px; margin-bottom: 14px; }
.map-block__title {
  font-family: var(--font-h); font-size: 22px; font-weight: 800;
  color: white; margin-bottom: 8px;
}
.map-block__address {
  color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; margin-bottom: 20px;
}
.map-pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid white;
  box-shadow: 0 0 0 4px rgba(240,165,0,.3), 0 4px 12px rgba(0,0,0,.4);
  animation: mapPulse 2s infinite;
  top: 42%; left: 52%;
}
@keyframes mapPulse {
  0%   { box-shadow: 0 0 0 0 rgba(240,165,0,.5), 0 4px 12px rgba(0,0,0,.4); }
  70%  { box-shadow: 0 0 0 10px rgba(240,165,0,0), 0 4px 12px rgba(0,0,0,.4); }
  100% { box-shadow: 0 0 0 0 rgba(240,165,0,0), 0 4px 12px rgba(0,0,0,.4); }
}

/* ── RESPONSIVE ADDITIONS ────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mission { grid-template-columns: 1fr; }
  .two-col-intro { grid-template-columns: 1fr !important; }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2,1fr); gap: 24px; padding: 24px; }
  .contact-main-card { padding: 36px 24px; }
  .contact-side-card { padding: 24px 20px; }
}

/* mv-grid: mission/vision two-column layout on about page */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .mv-grid { grid-template-columns: 1fr; }
}
