/* ====================================
   ABCD WEBSITE - MAIN STYLESHEET
   Colors: White, Deep Red, Dark Navy
==================================== */

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #ff1a1a;
  --dark: #ffffff;
  --dark2: #f4f5f7;
  --dark3: #edf0f4;
  --white: #111827;
  --gray: #6B7280;
  --gray-light: #F9FAFB;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: #111827;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f4f5f7; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===================== HEADER ===================== */
#header {
  position: relative;
  top: auto; left: auto; right: auto;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
  background: #ffffff;
  border-bottom: 2px solid #CC0000;
}

#header.scrolled {
  background: #ffffff;
  border-bottom: 2px solid #CC0000;
  box-shadow: 0 4px 20px rgba(204,0,0,0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.1;
}

.logo-fullname {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 8.5px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 2px;
}

.logo-tagline {
  font-family: Georgia, serif;
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 3px;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 3px;
}

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

.nav-link {
  color: rgba(17,24,39,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
  text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
  color: #111827;
  background: rgba(17,24,39,0.06);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-outline {
  padding: 8px 20px;
  border: 1.5px solid rgba(17,24,39,0.15);
  border-radius: 6px;
  color: #111827;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(204,0,0,0.15);
}

.btn-primary { /* keep */
  padding: 8px 20px;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 6px;
  color: #111827;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(204,0,0,0.4);
}

.btn-primary.large { padding: 14px 32px; font-size: 14px; }
.btn-outline.large { padding: 14px 32px; font-size: 14px; }
.btn-primary.full { width: 100%; justify-content: center; padding: 14px; }
.mt-20 { margin-top: 24px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(204,0,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,30,80,0.3) 0%, transparent 50%),
              var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

/* 3D Globe */
.hero-globe {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204,0,0,0.2);
  animation: rotateRing linear infinite;
}

.ring1 {
  width: 520px; height: 520px;
  animation-duration: 20s;
  border-color: rgba(204,0,0,0.15);
}
.ring2 {
  width: 400px; height: 400px;
  animation-duration: 15s;
  animation-direction: reverse;
  border-color: rgba(204,0,0,0.25);
  border-style: dashed;
}
.ring3 {
  width: 280px; height: 280px;
  animation-duration: 10s;
  border-color: rgba(204,0,0,0.35);
}

@keyframes rotateRing {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to { transform: rotateX(70deg) rotateZ(360deg); }
}

.globe-core {
  width: 200px; height: 240px;
  position: relative;
  z-index: 2;
}

.africa-map {
  width: 100%; height: 100%;
  animation: floatMap 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(204,0,0,0.4));
}

@keyframes floatMap {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.pulse-dot {
  animation: pulseDot 2s ease-in-out infinite;
}
.pulse-dot:nth-child(2) { animation-delay: 0.3s; }
.pulse-dot:nth-child(3) { animation-delay: 0.6s; }
.pulse-dot:nth-child(4) { animation-delay: 0.9s; }
.pulse-dot:nth-child(5) { animation-delay: 1.2s; }

@keyframes pulseDot {
  0%, 100% { opacity: 1; r: 4; }
  50% { opacity: 0.3; r: 6; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.3);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blinkDot 1.5s ease-in-out infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 650px;
}

.title-line {
  display: block;
  animation: slideInLeft 0.8s ease both;
}
.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.accent {
  color: var(--red);
  -webkit-text-stroke: 2px var(--red);
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(17,24,39,0.65);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.7s both;
}

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

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 52px;
  animation: fadeInUp 0.8s ease 0.9s both;
}

.btn-hero-primary {
  padding: 14px 28px;
  background: var(--red);
  color: #111827;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(204,0,0,0.3);
}

.btn-hero-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(204,0,0,0.4);
}

.btn-hero-outline {
  padding: 14px 28px;
  border: 2px solid rgba(17,24,39,0.2);
  color: #111827;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-hero-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(204,0,0,0.06);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeInUp 0.8s ease 1.1s both;
}

.stat-item {
  text-align: center;
  padding: 0 28px;
}

.stat-item:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}

.stat-num::after {
  content: '+';
  font-size: 22px;
  color: var(--red);
}

.stat-label {
  font-size: 11px;
  color: rgba(17,24,39,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(17,24,39,0.3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== SECTIONS ===================== */
.section { padding: 100px 0; }

.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--red);
}

.section-label.light { color: rgba(255,100,100,0.8); }
.section-label.light::before { background: rgba(255,100,100,0.8); }

.section-title {
  font-family: var(--font-main);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.light { color: #111827; }

.section-desc {
  font-size: 16px;
  color: rgba(17,24,39,0.55);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* ===================== ABOUT ===================== */
.about-section {
  background: #f4f5f7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 50px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  filter: brightness(0.85);
}

.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.about-img-badge strong {
  display: block;
  font-weight: 800;
  font-size: 18px;
}

.about-img-badge span {
  font-size: 12px;
  color: rgba(17,24,39,0.5);
}

.about-right h3 {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}

.about-right p {
  color: rgba(17,24,39,0.6);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(17,24,39,0.03);
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: 10px;
  transition: all 0.3s;
}

.feature-item:hover {
  background: rgba(204,0,0,0.15);
  border-color: rgba(204,0,0,0.2);
  transform: translateY(-2px);
}

.feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: rgba(17,24,39,0.05);
  color: rgba(17,24,39,0.7);
}

.feature-icon.red {
  background: rgba(204,0,0,0.15);
  color: var(--red);
}

.feature-icon.dark {
  background: rgba(17,24,39,0.06);
  color: rgba(255,255,255,0.8);
}

.feature-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 11px;
  color: rgba(17,24,39,0.4);
}

/* ===================== PORTFOLIO ===================== */
.group-section {
  background: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.portfolio-card {
  background: #edf0f4;
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: 18px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204,0,0,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.card-icon {
  width: 48px; height: 48px;
  background: rgba(17,24,39,0.06);
  border: 1px solid rgba(17,24,39,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(17,24,39,0.55);
  flex-shrink: 0;
  transition: all 0.3s;
}

.card-icon.red {
  background: rgba(204,0,0,0.12);
  border-color: rgba(204,0,0,0.25);
  color: var(--red);
}

.portfolio-card:hover .card-icon {
  background: rgba(204,0,0,0.14);
  border-color: rgba(204,0,0,0.3);
  color: var(--red);
}

.card-content { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.card-content h3 {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.card-content p {
  font-size: 13px;
  color: rgba(17,24,39,0.45);
  line-height: 1.55;
}

.card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.card-stats span {
  font-size: 11px;
  color: rgba(17,24,39,0.35);
  background: rgba(17,24,39,0.05);
  border: 1px solid rgba(17,24,39,0.06);
  padding: 4px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-subsidiaries {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  margin-top: 4px;
}

.sub-link {
  font-size: 12px;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s;
}
.sub-link:hover { opacity: 0.75; }
.sub-link i { font-size: 9px; }

/* ===================== PRINCIPLES ===================== */
.principles-section {
  position: relative;
  background: #f4f5f7;
  overflow: hidden;
}

.principles-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 50%, rgba(204,0,0,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(0,30,80,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.principles-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  margin-bottom: 60px;
  position: relative;
}

.principle-card-big {
  background: rgba(17,24,39,0.03);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.principle-card-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}

.principle-card-big.red::before {
  background: var(--red);
}

.principle-card-big:hover {
  background: rgba(204,0,0,0.05);
  border-color: rgba(204,0,0,0.2);
  transform: translateY(-4px);
}

.principle-card-big:hover::before { background: var(--red); }

.principle-icon {
  width: 56px; height: 56px;
  background: transparent;
  border: 1.5px solid rgba(17,24,39,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(17,24,39,0.7);
  margin-bottom: 14px;
  transition: all 0.3s;
}

.principle-card-big:hover .principle-icon {
  border-color: var(--red);
  color: var(--red);
}

.principle-label {
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.principle-card-big h3 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.principle-card-big p {
  font-size: 14px;
  color: rgba(17,24,39,0.55);
  line-height: 1.7;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(17,24,39,0.02);
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.value-item:hover {
  background: rgba(204,0,0,0.05);
  border-color: rgba(204,0,0,0.15);
  transform: translateY(-4px);
}

.value-icon {
  width: 60px; height: 60px;
  background: transparent;
  border: 1.5px solid rgba(17,24,39,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: rgba(17,24,39,0.6);
  margin: 0 auto 16px;
  transition: all 0.3s;
}

.value-item:hover .value-icon {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 0 4px rgba(204,0,0,0.08);
}

.value-item h4 {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 13px;
  color: rgba(17,24,39,0.45);
  line-height: 1.6;
}

/* ===================== GEOGRAPHY ===================== */
.geo-section {
  background: #ffffff;
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.geo-card {
  background: #edf0f4;
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.geo-card.red { border-color: rgba(204,0,0,0.2); background: rgba(204,0,0,0.05); }

.geo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(204,0,0,0.3);
}

.geo-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.geo-icon {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 14px;
}

.geo-card h3 {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.geo-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.geo-countries span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 20px;
  color: rgba(255,150,150,0.9);
}

.geo-card p {
  font-size: 13px;
  color: rgba(17,24,39,0.45);
  line-height: 1.6;
}

.expansion-block {
  background: #edf0f4;
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: var(--radius);
  padding: 40px;
}

.expansion-block h3 {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #111827;
}

.expansion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.exp-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-icon {
  width: 44px; height: 44px;
  background: rgba(204,0,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--red);
}

.exp-item h4 {
  font-size: 14px;
  font-weight: 700;
}

.exp-item p {
  font-size: 12px;
  color: rgba(17,24,39,0.45);
  line-height: 1.5;
}

/* ===================== PARTNER ===================== */
.partner-section {
  background: #f4f5f7;
}

.pillars-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 60px;
}

.pillar {
  background: #edf0f4;
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  transform: translateY(-6px);
  background: rgba(204,0,0,0.15);
  border-color: rgba(204,0,0,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pillar-num {
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 900;
  color: rgba(204,0,0,0.1);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.pillar:hover .pillar-num { color: rgba(204,0,0,0.2); }

.pillar-icon {
  width: 52px; height: 52px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  margin: 0 auto 14px;
  transition: all 0.3s;
}

.pillar:hover .pillar-icon {
  background: var(--red);
  color: #111827;
  box-shadow: 0 8px 25px rgba(204,0,0,0.4);
}

.pillar h4 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar p {
  font-size: 12px;
  color: rgba(17,24,39,0.4);
  line-height: 1.5;
}

.cta-band {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #ff3333 100%);
  border-radius: var(--radius);
  padding: 50px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 300px; height: 300px;
  background: rgba(17,24,39,0.05);
  border-radius: 50%;
}

.cta-band-text h3 {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-band-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-band .btn-primary { /* keep */
  background: var(--white);
  border-color: #111827;
  color: var(--red);
}

.cta-band .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-band .btn-outline {
  border-color: rgba(17,24,39,0.5);
  color: #111827;
}

.cta-band .btn-outline:hover {
  border-color: #111827;
  background: rgba(255,255,255,0.1);
}

/* ===================== CONTACT ===================== */
.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  margin-top: 50px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.ci-icon {
  width: 44px; height: 44px;
  background: rgba(17,24,39,0.05);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(17,24,39,0.6);
  flex-shrink: 0;
}

.ci-icon.red {
  background: rgba(204,0,0,0.1);
  border-color: rgba(204,0,0,0.2);
  color: var(--red);
}

.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item span {
  font-size: 13px;
  color: rgba(17,24,39,0.45);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.social-btn {
  width: 40px; height: 40px;
  background: rgba(17,24,39,0.04);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(17,24,39,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #111827;
  transform: translateY(-2px);
}

.contact-form {
  background: #edf0f4;
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(17,24,39,0.6);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(17,24,39,0.04);
  border: 1px solid rgba(17,24,39,0.1);
  border-radius: 8px;
  color: #111827;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(204,0,0,0.04);
}

.form-group select option { background: #f4f5f7; }
.form-group textarea { resize: vertical; }

input::placeholder, textarea::placeholder {
  color: rgba(17,24,39,0.25);
}

/* ===================== FOOTER ===================== */
.footer {
  background: #f4f5f7;
  border-top: 1px solid rgba(17,24,39,0.08);
  padding: 70px 0 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 4px;
}

.footer-logo-sub {
  font-size: 10px;
  color: rgba(17,24,39,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(17,24,39,0.4);
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(17,24,39,0.3);
  padding: 6px 10px;
  background: rgba(17,24,39,0.03);
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: 6px;
}

.footer-col h5 {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(17,24,39,0.6);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(17,24,39,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(17,24,39,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(17,24,39,0.25);
}

/* ===================== ANIMATIONS / REVEAL ===================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Particle canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-wrap { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-globe { display: none; }
  .hero-title { font-size: 42px; }
  .principles-main { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .geo-grid { grid-template-columns: 1fr; }
  .expansion-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .nav-container { padding: 16px 20px; }
  .hero-content { padding: 100px 20px 60px; }
  .section-container { padding: 0 20px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .pillars-wrap { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .expansion-grid { grid-template-columns: 1fr; }
}

/* Mobile nav open */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-open .nav-link {
  font-size: 22px;
}

/* ===================== NUMBERED PORTFOLIO GRID ===================== */
.portfolio-numbered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
}

.pn-card {
  background: var(--card-bg, #CC0000);
  padding: 28px 26px 24px;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: filter 0.3s, transform 0.3s;
  cursor: default;
}

.pn-card:hover {
  filter: brightness(1.12);
  z-index: 2;
  transform: scale(1.02);
}

.pn-num {
  font-family: var(--font-main);
  font-size: 52px;
  font-weight: 900;
  color: rgba(17,24,39,0.25);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.pn-body h3 {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pn-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  line-height: 1.5;
}

.pn-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
}

.pn-links a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.pn-links a:hover { color: #111827; text-decoration: underline; }
.pn-links a i { font-size: 9px; }

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

@media (max-width: 560px) {
  .portfolio-numbered-grid { grid-template-columns: 1fr; }
  .pn-card { min-height: 140px; }
}

/* ===================== WHITE THEME OVERRIDES ===================== */
body { background: #ffffff !important; color: #111827 !important; }

/* Hero */
.hero { background: linear-gradient(135deg, #fff5f5 0%, #ffffff 60%, #f8f9ff 100%) !important; }
.hero-title { color: #111827; }
.title-line.accent { color: var(--red); -webkit-text-stroke: 0; }
.hero-subtitle { color: rgba(17,24,39,0.6); }
.stat-num { color: #111827; }
.stat-label { color: rgba(17,24,39,0.45); }
.stat-divider { background: rgba(17,24,39,0.12); }
.scroll-indicator { color: rgba(17,24,39,0.3); }

/* Header */
#header.scrolled { background: #CC0000 !important; border-bottom: 1px solid rgba(255,255,255,0.15) !important; }

/* Nav links white on red header */
.nav-link { color: rgba(255,255,255,0.85) !important; }
.nav-link:hover, .nav-link.active { color: #ffffff !important; background: rgba(255,255,255,0.12) !important; }
.nav-link.active::after { background: #ffffff; }

/* Login/Get Started buttons on red header */
.nav-actions .btn-outline { color: #ffffff !important; border-color: rgba(255,255,255,0.5) !important; }
.nav-actions .btn-outline:hover { background: rgba(255,255,255,0.15) !important; border-color: #ffffff !important; }
.nav-actions .btn-primary { background: #ffffff !important; border-color: #ffffff !important; color: #CC0000 !important; }
.nav-actions .btn-primary:hover { background: rgba(255,255,255,0.9) !important; }
.logo-img { filter: none; }

/* Buttons */
.btn-primary, .btn-hero-primary { color: #ffffff !important; }
.btn-outline { color: #111827 !important; border-color: rgba(17,24,39,0.2) !important; }

/* Section labels & titles */
.section-title { color: #111827; }
.section-title.light { color: #111827; }
.section-label.light { color: var(--red); }
.section-label.light::before { background: var(--red); }
.section-desc { color: rgba(17,24,39,0.5); }

/* About */
.about-section { background: #f4f5f7; }
.about-right h3, .about-right p { color: #111827; }
.about-right p { color: rgba(17,24,39,0.6); }
.feature-item { background: rgba(17,24,39,0.03); border-color: rgba(17,24,39,0.07); }
.feature-item strong { color: #111827; }
.feature-item span { color: rgba(17,24,39,0.4); }
.about-img-badge { background: rgba(255,255,255,0.95); border-color: rgba(204,0,0,0.2); }
.about-img-badge strong, .about-img-badge span { color: #111827; }
.about-img-badge span { color: rgba(17,24,39,0.45); }

/* Portfolio cards */
.group-section { background: #ffffff; }
.portfolio-card { background: #f8f9fc; border-color: rgba(17,24,39,0.08); }
.portfolio-card:hover { background: #ffffff; border-color: rgba(204,0,0,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.card-icon { background: rgba(17,24,39,0.06); border-color: rgba(17,24,39,0.1); color: rgba(17,24,39,0.5); }
.card-icon.red { background: rgba(204,0,0,0.08); border-color: rgba(204,0,0,0.2); color: var(--red); }
.card-content h3 { color: #111827; }
.card-content p { color: rgba(17,24,39,0.5); }
.card-stats span { color: rgba(17,24,39,0.4); background: rgba(17,24,39,0.04); border-color: rgba(17,24,39,0.06); }
.card-subsidiaries { border-top-color: rgba(17,24,39,0.08); }

/* Principles */
.principles-section { background: #f4f5f7; }
.principles-bg { opacity: 0.4; }
.principle-card-big { background: #ffffff; border-color: rgba(17,24,39,0.08); }
.principle-card-big::before { background: rgba(17,24,39,0.06); }
.principle-card-big.red::before { background: var(--red); }
.principle-card-big h3 { color: #111827; }
.principle-card-big p { color: rgba(17,24,39,0.55); }
.principle-icon { border-color: rgba(17,24,39,0.12); color: rgba(17,24,39,0.5); }
.value-item { background: #ffffff; border-color: rgba(17,24,39,0.08); }
.value-item h4 { color: #111827; }
.value-item p { color: rgba(17,24,39,0.45); }
.value-icon { border-color: rgba(17,24,39,0.12); color: rgba(17,24,39,0.5); }

/* Geography */
.geo-section { background: #ffffff; }
.geo-card { background: #f8f9fc; border-color: rgba(17,24,39,0.08); }
.geo-card h3 { color: #111827; }
.geo-card p { color: rgba(17,24,39,0.45); }
.geo-num { color: rgba(17,24,39,0.04); }
.geo-countries span { color: rgba(180,0,0,0.9); background: rgba(204,0,0,0.07); border-color: rgba(204,0,0,0.15); }
.expansion-block { background: #f4f5f7; border-color: rgba(17,24,39,0.08); }
.expansion-block h3 { color: #111827; }
.exp-item h4 { color: #111827; }
.exp-item p { color: rgba(17,24,39,0.45); }

/* Partner */
.partner-section { background: #f4f5f7; }
.pillar { background: #ffffff; border-color: rgba(17,24,39,0.08); }
.pillar h4 { color: #111827; }
.pillar p { color: rgba(17,24,39,0.4); }
.pillar-num { color: rgba(204,0,0,0.08); }

/* Contact */
.contact-section { background: #ffffff; }
.contact-item strong { color: #111827; }
.contact-item span { color: rgba(17,24,39,0.45); }
.ci-icon { background: rgba(17,24,39,0.05); border-color: rgba(17,24,39,0.08); color: rgba(17,24,39,0.5); }
.contact-form { background: #f8f9fc; border-color: rgba(17,24,39,0.08); }
.form-group label { color: rgba(17,24,39,0.6); }
.form-group input, .form-group select, .form-group textarea { background: #ffffff; border-color: rgba(17,24,39,0.12); color: #111827; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(17,24,39,0.25); }
.form-group select option { background: #ffffff; color: #111827; }

/* Footer */
.footer { background: #111827; }
.footer-logo-text { color: var(--red); }
.footer-logo-sub { color: rgba(255,255,255,0.3); }
.footer-brand p { color: rgba(255,255,255,0.4); }
.footer-badge { color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); }
.footer-col h5 { color: rgba(255,255,255,0.5); }
.footer-col ul li a { color: rgba(255,255,255,0.35); }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { color: rgba(255,255,255,0.2); border-top-color: rgba(255,255,255,0.06); }

/* Hamburger for light bg */
.hamburger span { background: #111827; }

/* ===================== IMPACT / PEOPLE SECTION ===================== */
.impact-section {
  background: #ffffff;
  padding: 100px 0;
}

/* Hero story */
.impact-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.impact-hero-img {
  position: relative;
  min-height: 480px;
}

.impact-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-hero-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #CC0000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.impact-hero-text {
  background: #111827;
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.impact-quote {
  font-family: Georgia, serif;
  font-size: 80px;
  color: #CC0000;
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.6;
}

.impact-hero-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.impact-hero-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}

.impact-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.ihs strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #CC0000;
  line-height: 1;
}

.ihs span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* Photo grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.impact-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f8f9fc;
  border: 1px solid rgba(17,24,39,0.08);
  transition: all 0.4s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.impact-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.impact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.impact-card:hover .impact-img img {
  transform: scale(1.06);
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.impact-tag {
  background: rgba(204,0,0,0.9);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

.impact-body {
  padding: 20px;
}

.impact-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
}

.impact-body p {
  font-size: 13px;
  color: rgba(17,24,39,0.55);
  line-height: 1.6;
}

/* Banner */
.impact-banner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.impact-banner-img {
  position: relative;
  height: 400px;
}

.impact-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,0.88) 0%, rgba(100,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px;
}

.impact-banner-overlay blockquote {
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  color: #ffffff;
  max-width: 700px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.impact-banner-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 28px;
}

.impact-banner-overlay p strong { color: #ffffff; }

.btn-impact {
  padding: 14px 32px;
  background: #ffffff;
  color: #CC0000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-impact:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .impact-hero { grid-template-columns: 1fr; }
  .impact-hero-img { min-height: 280px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-banner-img { height: 320px; }
  .impact-banner-overlay blockquote { font-size: 20px; }
}

@media (max-width: 600px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-hero-stats { flex-wrap: wrap; gap: 16px; }
  .impact-banner-overlay { padding: 24px; }
}

/* ===== WHITE NAVBAR OVERRIDES ===== */
#header.scrolled { background: #ffffff !important; border-bottom: 2px solid #CC0000 !important; box-shadow: 0 4px 20px rgba(204,0,0,0.12) !important; }

.nav-link { color: #333333 !important; }
.nav-link:hover, .nav-link.active { color: #CC0000 !important; background: rgba(204,0,0,0.06) !important; }
.nav-link.active::after { background: #CC0000; }

.logo-name { color: #CC0000 !important; }
.logo-fullname { color: rgba(51,51,51,0.75) !important; }
.logo-tagline { color: rgba(51,51,51,0.5) !important; border-top-color: rgba(51,51,51,0.15) !important; }

.nav-actions .btn-outline { color: #CC0000 !important; border-color: #CC0000 !important; background: transparent !important; }
.nav-actions .btn-outline:hover { background: rgba(204,0,0,0.08) !important; }
.nav-actions .btn-primary { background: #CC0000 !important; border-color: #CC0000 !important; color: #ffffff !important; }
.nav-actions .btn-primary:hover { background: #aa0000 !important; }

.hamburger span { background: #CC0000 !important; }

/* ===== UNIFORM STYLE — NO ALTERNATING COLORS ===== */

/* All portfolio cards same */
.card-icon,
.card-icon.red {
  background: rgba(204,0,0,0.08) !important;
  border: 1px solid rgba(204,0,0,0.18) !important;
  color: #CC0000 !important;
}

.portfolio-card:hover .card-icon,
.portfolio-card:hover .card-icon.red {
  background: rgba(204,0,0,0.15) !important;
  border-color: #CC0000 !important;
  color: #CC0000 !important;
}

/* All geo cards same */
.geo-card,
.geo-card.red {
  background: #f8f9fc !important;
  border: 1px solid rgba(17,24,39,0.08) !important;
}

.geo-card:hover,
.geo-card.red:hover {
  border-color: rgba(204,0,0,0.2) !important;
  background: #ffffff !important;
}

/* All contact icons same */
.ci-icon,
.ci-icon.red {
  background: rgba(204,0,0,0.07) !important;
  border: 1px solid rgba(204,0,0,0.15) !important;
  color: #CC0000 !important;
}

/* All feature icons same */
.feature-icon,
.feature-icon.red,
.feature-icon.dark {
  background: rgba(204,0,0,0.07) !important;
  color: #CC0000 !important;
}

/* All principle cards same — no red top border variant */
.principle-card-big,
.principle-card-big.red {
  background: #f8f9fc !important;
  border: 1px solid rgba(17,24,39,0.08) !important;
}

.principle-card-big::before,
.principle-card-big.red::before {
  background: #CC0000 !important;
}

.principle-card-big:hover,
.principle-card-big.red:hover {
  background: #ffffff !important;
  border-color: rgba(204,0,0,0.2) !important;
}

/* Photo story badges all red */
.ps-badge,
.ps-badge.red,
.ps-badge.dark {
  background: #CC0000 !important;
  color: #ffffff !important;
}

/* Insurance content panel uniform */
.ins-content { background: #CC0000 !important; }
