:root {
  --navy: #1a2f5e;
  --navy-deep: #0f1d3d;
  --blue-mid: #2c4a8a;
  --sky: #4a9cc4;
  --teal: #5ab8c4;
  --gold: #f0b93a;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --text-dark: #1a1f2e;
  --text-mid: #4a5568;
  --text-light: #8a9ab5;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== SCROLL MARGIN for fixed nav + tabs ===== */
section[id] { scroll-margin-top: 140px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(10, 18, 45, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo img {
  height: 40px; width: auto; display: block;
  border-radius: 8px;
  background: transparent;
}
.nav-logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-logo-text {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600; font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.6rem; color: var(--teal); letter-spacing: 0.12em;
  display: block; text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 8px 20px; border-radius: 3px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; color: var(--navy-deep) !important; }

/* ===== MOBILE HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 1px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BRANCH TABS ===== */
#branch-tabs {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--blue-mid) 100%);
  border-bottom: 2px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; align-items: center;
  padding: 0; height: 56px;
}
.branch-tabs-container { display: flex; gap: 0; width: 100%; max-width: 600px; }
.branch-tab {
  flex: 1;
  padding: 0 12px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; cursor: pointer;
  border: none; background: transparent;
  color: rgba(255,255,255,0.6); font-size: 1rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s; border-bottom: 3px solid transparent;
  font-family: 'Clash Display', sans-serif;
  white-space: nowrap;
  min-width: 0;
}
.branch-tab:hover { color: var(--teal); background: rgba(90,184,196,0.08); }
.branch-tab.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(240,185,58,0.1); }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--blue-mid) 55%, var(--sky) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 160px 5% 80px;
}
.hero-hex-grid {
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,3 77,23 77,69 40,89 3,69 3,23' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(90,184,196,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-content {
  position: relative; text-align: center; max-width: 820px; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 22px; border-radius: 30px; margin-bottom: 32px;
  color: var(--teal); font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600;
  animation: fadeUp 0.8s ease both;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  color: var(--white); line-height: 1.4; font-weight: 400;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title strong {
  font-weight: 400; color: var(--gold);
  display: block;
  letter-spacing: 0.15em;
}
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.8;
  max-width: 600px; margin: 0 auto 48px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  padding: 14px 36px; border-radius: 4px; font-weight: 700;
  text-decoration: none; font-size: 0.9rem; letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(240,185,58,0.4);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,185,58,0.5); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 14px 36px; border-radius: 4px; font-weight: 500;
  text-decoration: none; font-size: 0.9rem; letter-spacing: 0.06em;
  transition: background 0.2s, border-color 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
  margin-top: 72px;
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION BASE ===== */
section { padding: 100px 5%; }
.section-label {
  display: inline-block; color: var(--sky); font-size: 26px;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px;
  font-weight: 400; line-height: 1.4; color: var(--navy-deep);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.section-desc {
  color: var(--text-mid); line-height: 1.8; font-size: 1rem; max-width: 600px;
}

/* ===== INTRO ===== */
#intro {
  background: var(--white);
  position: relative; overflow: hidden;
}
.intro-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.intro-visual {
  position: relative;
}
.intro-hex-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  border-radius: 16px; padding: 60px 48px;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,47,94,0.3);
}
.intro-hex-card .hex-bg { opacity: 0.3; }
.intro-hex-card-content { position: relative; z-index: 2; }
.intro-quote {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem; color: var(--white); line-height: 1.6;
  font-weight: 300;
  border-left: 3px solid var(--gold);
  padding-left: 24px; margin-bottom: 32px;
}
.intro-quote-attr { color: var(--teal); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.intro-pillars {
  display: flex; flex-direction: column; gap: 16px; margin-top: 36px;
}
.pillar {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06); border-radius: 8px; padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.pillar-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--navy-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pillar-text { color: var(--sky); font-size: 0.9rem; font-weight: 500; }

/* ===== MISSION / VISION ===== */
#mission {
  background: var(--off-white); position: relative; overflow: hidden;
}
.mvg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1200px; margin: 52px auto 0;
}
.mvg-card {
  background: var(--white); border-radius: 12px;
  padding: 44px 36px;
  border-top: 4px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative; overflow: hidden;
}
.mvg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.mvg-card.mission { border-top-color: var(--navy); }
.mvg-card.goal { border-top-color: var(--gold); }
.mvg-card.vision { border-top-color: var(--teal); }
.mvg-card.strategy { border-top-color: var(--sky); }
.mvg-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 5rem; font-weight: 700; line-height: 1;
  color: rgba(26,47,94,0.06);
  position: absolute; top: 12px; right: 20px;
}
.mvg-icon {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.mission .mvg-icon { background: rgba(26,47,94,0.1); }
.goal .mvg-icon { background: rgba(240,185,58,0.15); }
.vision .mvg-icon { background: rgba(90,184,196,0.15); }
.strategy .mvg-icon { background: rgba(74,156,196,0.15); }
.mvg-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px; font-weight: 600; color: var(--navy-deep); margin-bottom: 14px;
}
.mvg-text { color: var(--text-mid); line-height: 1.75; font-size: 0.93rem; }

/* ===== TIMELINE ===== */
#timeline {
  background: var(--navy-deep); position: relative; overflow: hidden;
}
#timeline .section-title { color: var(--white); }
#timeline .section-label { color: var(--teal); }
.timeline-list {
  max-width: 900px; margin: 60px auto 0;
  position: relative;
}
.timeline-list::before {
  content: ''; position: absolute; left: 122px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--sky), var(--gold));
  opacity: 0.4;
}
.tl-item {
  display: flex; gap: 48px; align-items: flex-start; margin-bottom: 80px;
  position: relative;
  min-height: 60px;
}
.tl-date {
  flex: 0 0 110px; text-align: right; padding-right: 30px;
  font-family: 'Clash Display', sans-serif;
  font-size: 1.1rem; font-weight: 600; color: var(--gold);
  padding-top: 3px;
}
.tl-dot {
  position: absolute; left: 122px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--navy-deep);
  transform: translate(-50%, 0);
  box-shadow: 0 0 12px rgba(240,185,58,0.6);
  flex-shrink: 0;
  z-index: 2;
}
.tl-body { padding-left: 28px; }
.tl-event {
  color: var(--white); font-size: 0.97rem; line-height: 1.7;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 18px 24px;
}

/* ===== STANDARDS ===== */
#standards { background: var(--white); }
.standards-inner { max-width: 1400px; margin: 0 auto; }
.standards-grid {
  margin-top: 52px;
}
.standards-group {
  margin-bottom: 44px;
}
.standards-group:last-child {
  margin-bottom: 0;
}
.std-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); font-weight: 600; margin-bottom: 20px;
}
.std-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.std-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--off-white); border-radius: 12px; padding: 18px 22px;
  border: 1px solid rgba(26,47,94,0.08);
  font-size: 15px; font-weight: 600; color: var(--navy-deep);
  transition: transform 0.2s, box-shadow 0.2s;
}
.std-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: rgba(90,184,196,0.25); }
.std-badge-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0;
  flex-shrink: 0;
}
.std-badge-icon.gold { background: var(--gold); color: var(--navy-deep); }
.std-badge-icon.teal { background: var(--teal); color: var(--white); }

/* ===== PRODUCTS ===== */
#products {
  background: var(--off-white); position: relative; overflow: hidden;
}
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  margin-bottom: 60px;
}
.shares-visual {
  background: var(--white); border-radius: 16px; padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.shares-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px; color: var(--navy-deep); margin-bottom: 24px; font-weight: 600;
}
.share-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.share-label { font-size: 0.85rem; color: var(--text-mid); width: 130px; flex-shrink: 0; }
.share-bar-wrap {
  flex: 1; height: 8px; background: var(--off-white); border-radius: 99px; overflow: hidden;
}
.share-bar {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 100%);
  transition: width 1s ease;
}
.share-pct { font-weight: 700; font-size: 0.85rem; color: var(--navy); width: 36px; text-align: right; }

.product-cats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.prod-cat {
  background: var(--white); border-radius: 10px; padding: 22px 18px;
  text-align: center; border: 1px solid transparent;
  transition: all 0.25s; cursor: default;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.prod-cat:hover {
  border-color: var(--teal); transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(90,184,196,0.2);
}
.prod-cat-emoji { font-size: 1.8rem; margin-bottom: 10px; }
.prod-cat-name { font-size: 0.8rem; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* ===== PARTNERSHIP ===== */
#partnership {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--blue-mid) 100%);
  position: relative; overflow: hidden;
}
#partnership .section-title { color: var(--white); }
#partnership .section-label { color: var(--teal); }
#partnership .section-desc { color: rgba(255,255,255,0.7); }
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 52px;
}
.partner-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 32px 20px; text-align: center;
  transition: all 0.3s;
}
.partner-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.partner-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.partner-country { color: var(--teal); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.partner-desc { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-top: 10px; line-height: 1.6; }
.partner-dot {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.p-india { background: rgba(240,185,58,0.2); }
.p-africa { background: rgba(90,184,196,0.2); }
.p-korea { background: rgba(74,156,196,0.2); }
.p-swiss { background: rgba(255,255,255,0.1); }

.partner-strategic-note {
  margin-top: 36px; text-align: center;
  color: rgba(255,255,255,0.55); font-size: 0.88rem; font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}

/* ===== BRANCHES ===== */
#branches { background: var(--off-white); }
.branches-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 52px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.branch-card {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--white); padding: 0;
  transition: all 0.3s; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-height: 420px; display: flex; flex-direction: column;
}
.branch-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(26,47,94,0.2); }
.branch-image { width: 100%; height: 220px; object-fit: cover; }
.branch-content { padding: 28px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.branch-type { color: var(--teal); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; }
.branch-name { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-top: 8px; margin-bottom: 12px; }
.branch-desc { color: var(--text-mid); font-size: 0.85rem; line-height: 1.6; }
.branch-cta { display: inline-block; margin-top: 16px; padding: 8px 16px; background: var(--teal); color: var(--white); border-radius: 4px; text-decoration: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s; }
.branch-cta:hover { background: var(--gold); color: var(--navy-deep); }

/* ===== CONTACT ===== */
#contact {
  background: var(--off-white); position: relative; overflow: hidden;
}
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-card {
  background: var(--white); border-radius: 16px; padding: 40px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--white); stroke-width: 2; }
.contact-item-label { font-size: 16px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); margin-bottom: 6px; font-weight: 700; }
.contact-item-value { font-weight: 500; font-size: 0.95rem; color: var(--teal); }
.contact-item-value a { color: var(--teal); font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--gold); }

/* Phone row with inline icons + plain number in teal */
.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-row .contact-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.phone-row .contact-action-icon:hover {
  transform: translateY(-2px);
}
.phone-row .icon-call {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  box-shadow: 0 2px 6px rgba(26,47,94,0.25);
}
.phone-row .icon-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 2px 6px rgba(37,211,102,0.3);
}
.phone-row .phone-number-text {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.contact-next {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  border-radius: 16px; padding: 48px; color: var(--white);
  position: relative; overflow: hidden;
}
.contact-next .hex-bg { opacity: 0.2; }
.contact-next-content { position: relative; z-index: 2; }
.contact-next h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px; font-weight: 600; margin-bottom: 20px;
}
.contact-next p {
  color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 0.93rem; margin-bottom: 14px;
}
.contact-next ul {
  list-style: none; margin-bottom: 32px;
}
.contact-next ul li {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
}
.contact-next ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.contact-next-btn {
  display: inline-block; background: var(--gold); color: var(--navy-deep);
  padding: 13px 32px; border-radius: 4px; font-weight: 700; text-decoration: none;
  font-size: 0.88rem; letter-spacing: 0.06em; transition: opacity 0.2s;
}
.contact-next-btn:hover { opacity: 0.85; }

/* WhatsApp CTA */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.2s;
}
.whatsapp-cta:hover { opacity: 0.85; }
.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--white) !important;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  margin-left: 12px;
  transition: opacity 0.2s;
  vertical-align: middle;
}
.whatsapp-inline:hover { opacity: 0.85; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.5);
  text-align: center; padding: 32px 5%;
  font-size: 0.8rem; letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer span { color: var(--teal); }

/* ===== LOCATION PAGES (EGYPT/USA) ===== */
.location-hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 5% 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue-mid) 50%, var(--teal) 100%);
}
.location-hero-overlay { position: absolute; inset: 0; background: rgba(15, 29, 61, 0.5); z-index: 1; }
.location-hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1400px; width: 100%;
}
.location-hero-text { color: var(--white); }
.location-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px;
  border-radius: 30px;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
  max-width: 100%;
}
.location-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s ease infinite;
}
.location-hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.location-hero-title strong { color: var(--gold); font-weight: 400; }
.location-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}
.location-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* FADE CAROUSEL */
.fade-carousel {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  touch-action: pan-y;
}
.fade-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.fade-slide.active {
  opacity: 1;
  z-index: 2;
}
.fade-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 29, 61, 0.3) 0%, rgba(90, 184, 196, 0.2) 100%);
}
.fade-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fade-arrows {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 10;
}
.fade-arrow {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-weight: bold;
}
.fade-arrow:hover {
  background: var(--gold);
  transform: scale(1.1);
}
.fade-dots {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.fade-dot {
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.fade-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 6px;
}

/* FEATURES */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
}
.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid var(--teal);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-title { font-weight: 700; color: var(--navy-deep); margin-bottom: 12px; font-size: 1.2rem; }
.feature-desc { color: var(--text-dark); line-height: 1.6; font-size: 0.95rem; }

/* CONTACT CARDS */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px;
}
.contact-card-simple {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-label-simple { color: var(--teal); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.contact-value-simple { font-size: 1.2rem; color: var(--navy-deep); font-weight: 600; word-break: break-word; }
.contact-link-simple { color: var(--teal); text-decoration: none; transition: color 0.3s; }
.contact-link-simple:hover { color: var(--gold); }

/* ===== USA BROKERAGE BADGE BAR ===== */
.usa-badge-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  color: var(--teal);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  border: 1px solid rgba(90,184,196,0.2);
  margin: 48px auto 0;
  text-align: center;
  width: 100%;
  max-width: 700px;
  display: flex;
}
.usa-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s ease infinite;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 18, 45, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px 5%;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 98;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 0.9rem;
  }
  .nav-hamburger {
    display: flex;
  }
  .intro-inner, .products-header, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .mvg-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .product-cats { grid-template-columns: repeat(3, 1fr); }
  .std-badges { grid-template-columns: repeat(2, 1fr); }
  .std-badge { font-size: 14px; padding: 16px 18px; gap: 10px; }
  .std-badge-icon { width: 38px; height: 38px; font-size: 11px; }
  .timeline-list::before { left: 90px; }
  .tl-date { flex: 0 0 70px; padding-right: 20px; }
  .tl-dot { left: 90px; }
  .tl-body { padding-left: 20px; }
  .branches-grid { grid-template-columns: 1fr 1fr; }
  .location-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .fade-carousel { height: 350px; }
  .global-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mvg-grid, .partners-grid, .product-cats { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 32px; }
  .branches-grid { grid-template-columns: 1fr; }
  .location-hero-title { font-size: 20px; }
  .section-title { font-size: 16px; }
  .section-label { font-size: 22px; }
  .std-badges { grid-template-columns: 1fr; }
  .std-group-title { font-size: 12px; }
  .std-badge { font-size: 14px; padding: 16px 18px; }
  .std-badge-icon { width: 38px; height: 38px; font-size: 11px; }
  .branch-tabs-container { gap: 0; }
  .branch-tab { font-size: 0.85rem; padding: 0 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 60px 5%; }
  #hero { padding: 100px 5% 60px; }
  .location-hero { padding: 120px 5% 60px; min-height: auto; }
}

/* ===== CAROUSEL ACCESSIBILITY ===== */
.carousel-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.carousel-btn:focus-visible,
.fade-arrow:focus-visible,
.fade-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Image fallback styling */
.img-fallback {
  background: linear-gradient(135deg, var(--navy-deep), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
