/* =========================================================
   MUMBWAMINE — Mining Website Stylesheet
   ========================================================= */

/* ---- CSS Variables ---- */
:root {
  --gold: #C9972B;
  --gold-light: #E8B84B;
  --gold-dark: #9A6E18;
  --navy: #0C1B33;
  --navy-mid: #132240;
  --navy-light: #1E3A5F;
  --charcoal: #1A1A2E;
  --dark: #0A0E1A;
  --text-primary: #F5F5F5;
  --text-secondary: #A0ADB8;
  --text-dark: #1C2331;
  --border: rgba(201,151,43,0.2);
  --card-bg: rgba(255,255,255,0.04);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 24px rgba(201,151,43,0.25);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: #F8F7F4;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}

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

/* =========================================================
   UTILITY
   ========================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title.light { color: #fff; }

.section-desc { color: #6B7280; font-size: 1.05rem; max-width: 640px; }
.section-desc.light { color: rgba(255,255,255,0.7); }

.section-header.centered { text-align: center; margin-bottom: 3.5rem; }
.section-header.centered .section-desc { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,151,43,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,151,43,0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn.full-width { width: 100%; justify-content: center; }
.mt-32 { margin-top: 2rem; }


/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(12,27,51,0.97);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border-radius: 50px;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(201,151,43,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,151,43,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: var(--transition);
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-img.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,14,26,0.88) 0%,
    rgba(12,27,51,0.7) 50%,
    rgba(10,14,26,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,151,43,0.18);
  border: 1px solid rgba(201,151,43,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-quick-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.quick-stat { text-align: left; }
.qs-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.qs-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.qs-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollAnim 1.8s infinite;
}
@keyframes scrollAnim {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }


/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.marquee-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.marquee-track .sep { color: var(--gold); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 6rem 0;
  background: #F8F7F4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 78%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-img-badge {
  position: absolute;
  top: 50%; left: 65%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  z-index: 5;
  min-width: 90px;
}
.badge-year { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.badge-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; line-height: 1; }

.about-content { padding-left: 1rem; }
.about-lead { font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 1rem; }
.about-body { color: #4B5563; margin-bottom: 2rem; }

.about-pillars { display: flex; flex-direction: column; gap: 1.25rem; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(201,151,43,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar strong { display: block; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.pillar p { font-size: 0.9rem; color: #6B7280; margin: 0; }


/* =========================================================
   OPERATIONS
   ========================================================= */
.operations {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.operations-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,151,43,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(30,58,95,0.6) 0%, transparent 50%);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

.op-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,151,43,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.op-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,151,43,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.op-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.op-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.op-card:hover .op-img-wrap img { transform: scale(1.06); }
.op-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,27,51,0.7) 0%, transparent 60%);
}

.op-content { padding: 1.5rem; }
.op-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.op-badge.gold { background: rgba(201,151,43,0.2); color: var(--gold-light); border: 1px solid rgba(201,151,43,0.4); }
.op-badge.chrome { background: rgba(99,179,237,0.12); color: #90CDF4; border: 1px solid rgba(99,179,237,0.3); }
.op-badge.lithium { background: rgba(154,205,50,0.12); color: #B5E853; border: 1px solid rgba(154,205,50,0.3); }

.op-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.op-location { font-size: 0.82rem; color: var(--gold-light); margin-bottom: 0.75rem; }
.op-content p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; line-height: 1.6; }

.op-specs { display: flex; flex-direction: column; gap: 0.45rem; }
.op-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.op-specs li span { color: rgba(255,255,255,0.85); font-weight: 500; }


/* =========================================================
   STATS
   ========================================================= */
.stats {
  padding: 6rem 0;
  background: #F8F7F4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(201,151,43,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.12); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  color: #6B7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section {
  padding: 6rem 0;
  background: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,27,51,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 80vh; max-width: 90vw; border-radius: var(--radius); box-shadow: 0 8px 60px rgba(0,0,0,0.6); }
.lightbox p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }


/* =========================================================
   WHY ZIMBABWE
   ========================================================= */
.why-section {
  padding: 6rem 0;
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-content p { color: #4B5563; margin-bottom: 1rem; }

.why-certs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cert-badge {
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.cert-badge small { display: block; font-weight: 400; font-size: 0.72rem; opacity: 0.7; }

.why-map {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  height: 460px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stylized Zimbabwe map shape */
.map-placeholder::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 65%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,151,43,0.25);
  border-radius: 30% 40% 35% 45% / 40% 35% 45% 30%;
  box-shadow: 0 0 60px rgba(201,151,43,0.08);
}

.map-pin-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-country-label {
  position: absolute;
  top: 1.25rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.map-site {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.map-site span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  background: rgba(12,27,51,0.7);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.map-site small { display: block; color: rgba(255,255,255,0.5); font-size: 0.68rem; }

.map-pin {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,151,43,0.3);
  animation: pinPulse 2.5s infinite;
}
.gold-pin { background: var(--gold); }
.chrome-pin { background: #90CDF4; box-shadow: 0 0 0 4px rgba(144,205,244,0.3); }
.lithium-pin { background: #B5E853; box-shadow: 0 0 0 4px rgba(181,232,83,0.3); }

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,151,43,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201,151,43,0.1); }
}

.map-legend {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(12,27,51,0.7);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.map-legend > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.leg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}


/* =========================================================
   TEAM
   ========================================================= */
.team-section {
  padding: 6rem 0;
  background: #F8F7F4;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid rgba(201,151,43,0.3);
}
.team-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.team-bio { font-size: 0.87rem; color: #6B7280; line-height: 1.6; }


/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,43,0.08) 0%, transparent 70%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(201,151,43,0.15);
  border: 1px solid rgba(201,151,43,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 0.3rem; }
.contact-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,43,0.12);
  background: #fff;
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  color: #166534;
  font-size: 0.9rem;
  text-align: center;
}
.form-success.show { display: block; }


/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,151,43,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { color: #6B7280; font-size: 0.88rem; line-height: 1.7; }

.footer-links-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col ul li a {
  font-size: 0.88rem;
  color: #6B7280;
  transition: color 0.2s;
}
.footer-links-col ul li a:hover { color: var(--gold-light); }
.footer-contact-list li { font-size: 0.88rem; color: #6B7280; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: #4B5563; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: #4B5563; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold-light); }


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .ops-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 380px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open .nav-link { font-size: 1.4rem; }
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-quick-stats { gap: 1rem; }
  .qs-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 1; }
  .why-certs { gap: 0.6rem; }
}
