/* ============================================
   RAVENNA NIGERIA LIMITED — PREMIUM STYLES v5
   ============================================ */

:root {
  --emerald: #047857;
  --emerald-light: #10B981;
  --emerald-dark: #065F46;
  --emerald-glow: rgba(4, 120, 87, 0.12);
  --emerald-glow-strong: rgba(4, 120, 87, 0.25);
  --grey-green: #374151;
  --dark: #111827;
  --darker: #0B0F19;
  --black: #030712;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-grey: #F1F5F9;
  --border-light: #E2E8F0;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--emerald); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-grey); }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 3px; }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  z-index: 9999; width: 0%; transition: width 0.1s linear;
}

/* ---------- FLOATING DARKER GREEN HEADER ---------- */
.header {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 32px); max-width: 1320px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(3, 80, 58, 0.95), rgba(2, 60, 42, 0.95));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 40px rgba(3,80,58,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  transition: all var(--transition-smooth);
}
.header.scrolled {
  top: 8px; padding: 8px 20px;
  background: linear-gradient(135deg, rgba(2, 70, 50, 0.98), rgba(1, 50, 35, 0.98));
  box-shadow: 0 20px 50px rgba(3,80,58,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Logo only - no text */
.logo-area { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  width: 140px; height: auto; max-height: 44px; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-bounce);
}
.logo-area:hover .logo-img { transform: scale(1.05); }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; padding: 8px 16px;
  font-family: var(--font-accent); font-weight: 500; font-size: 0.85rem;
  color: rgba(255,255,255,0.85); text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--white); border-radius: 1px;
  transition: width var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after { width: 20px; }

.header-ctas { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; font-family: var(--font-accent); font-weight: 600;
  font-size: 0.85rem; border: none; border-radius: var(--radius-full);
  cursor: pointer; text-decoration: none; transition: all var(--transition-smooth);
  position: relative; overflow: hidden; z-index: 1;
}
.btn-primary {
  background: var(--white); color: var(--emerald);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  background: var(--off-white);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn i { font-size: 16px; transition: transform var(--transition-bounce); }
.btn:hover i { transform: translateX(3px); }

.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.5rem;
  cursor: pointer; padding: 8px; border-radius: 8px;
  transition: background var(--transition-fast);
}
.mobile-toggle:hover { background: rgba(255,255,255,0.15); }

/* ============================================
   HERO SECTION — PREMIUM REDESIGN
   Inspired by skincare reference: asymmetric layout,
   floating cards, glassmorphism, premium spacing
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #F0FDF4 0%, var(--white) 40%, #ECFDF5 100%);
  overflow: hidden; padding: 140px 24px 80px;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(4,120,87,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -15%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(4,120,87,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,120,87,0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 2; max-width: 1200px; width: 100%;
  margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center;
}

/* Hero Text */
.hero-text { animation: fadeInUp 0.8s ease-out both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: var(--radius-full);
  font-family: var(--font-accent); font-size: 0.8rem; font-weight: 500;
  color: var(--emerald); margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-badge i { font-size: 16px; }
.hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.15; letter-spacing: -2px; color: var(--dark);
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn { padding: 14px 28px; font-size: 0.9rem; }

.hero-brands-bar {
  display: flex; align-items: center; gap: 32px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid var(--border-light);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.hero-brands-label {
  font-family: var(--font-accent); font-size: 0.7rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px;
}
.hero-brand-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem;
  color: var(--text-secondary); transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-brand-pill:hover {
  border-color: var(--emerald); color: var(--emerald);
  box-shadow: 0 4px 12px rgba(4,120,87,0.1); transform: translateY(-2px);
}
.hero-brand-pill img { width: 20px; height: 20px; object-fit: contain; }

/* Hero Visual — Asymmetric Premium Layout */
.hero-visual {
  position: relative; animation: fadeInUp 0.8s ease-out 0.3s both;
  min-height: 520px; display: flex; align-items: center; justify-content: center;
}

/* Main hero image — large, rounded, soft shadow */
.hero-main-image {
  position: relative; width: 85%; max-width: 480px;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(4,120,87,0.06);
  z-index: 2;
}
.hero-main-image img {
  width: 100%; height: 380px; object-fit: cover; display: block;
  transition: transform 0.6s var(--transition-smooth);
}
.hero-main-image:hover img { transform: scale(1.03); }

/* Floating glassmorphism cards around the image */
.hero-float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 16px 20px;
  transition: all var(--transition-smooth);
}
.hero-float-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.hero-float-card-top {
  top: 20px; right: 0;
  max-width: 220px;
}
.hero-float-card-top .float-label {
  font-family: var(--font-accent); font-size: 0.7rem; font-weight: 600;
  color: var(--emerald); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 6px;
}
.hero-float-card-top .float-text {
  font-family: var(--font-body); font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.5;
}
.hero-float-card-top .float-stars {
  display: flex; gap: 2px; margin-top: 8px;
}
.hero-float-card-top .float-stars i {
  font-size: 14px; color: #F59E0B;
}

.hero-float-card-bottom {
  bottom: 40px; left: -20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card-bottom .float-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(4,120,87,0.3);
}
.hero-float-card-bottom .float-icon i { font-size: 20px; color: var(--white); }
.hero-float-card-bottom .float-content .float-number {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem;
  color: var(--dark); line-height: 1;
}
.hero-float-card-bottom .float-content .float-label {
  font-family: var(--font-accent); font-size: 0.7rem; font-weight: 500;
  color: var(--text-muted); margin-top: 2px;
}

/* Small product thumbnail floating */
.hero-float-thumb {
  position: absolute; z-index: 4;
  width: 70px; height: 70px; border-radius: var(--radius-md);
  overflow: hidden; border: 3px solid var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all var(--transition-smooth);
}
.hero-float-thumb:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.hero-float-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-thumb-1 { bottom: 100px; right: 10px; }
.hero-thumb-2 { top: 80px; left: -10px; }

/* Decorative circles */
.hero-deco-circle {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero-deco-1 {
  width: 200px; height: 200px;
  top: 10%; right: 5%;
  border: 2px solid rgba(4,120,87,0.1);
}
.hero-deco-2 {
  width: 120px; height: 120px;
  bottom: 15%; left: 10%;
  background: rgba(4,120,87,0.04);
}
.hero-deco-3 {
  width: 80px; height: 80px;
  top: 40%; right: 15%;
  background: rgba(16,185,129,0.06);
}

/* ---------- SECTION BASE ---------- */
.section { position: relative; padding: 100px 24px; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; background: var(--emerald-glow);
  border-radius: var(--radius-full);
  font-family: var(--font-accent); font-size: 0.75rem; font-weight: 600;
  color: var(--emerald); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.2;
  letter-spacing: -1px; margin-bottom: 16px; color: var(--dark);
}
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  background: linear-gradient(135deg, #022c1f 0%, #034d35 50%, #022c1f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.about-section .section-title,
.about-section .section-desc,
.about-content h3,
.about-content p,
.value-item span {
  color: var(--white);
}
.about-section .section-label {
  background: rgba(255,255,255,0.12);
  color: var(--emerald-light);
  border: 1px solid rgba(255,255,255,0.1);
}
.about-section .section-desc {
  color: rgba(255,255,255,0.75);
}
.about-content p {
  color: rgba(255,255,255,0.8);
}
.value-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.value-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--emerald-light);
}
.value-item i {
  color: var(--emerald-light);
}
.value-item span {
  color: rgba(255,255,255,0.95);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: perspective(1200px) rotateY(5deg) rotateX(-2deg);
  transition: transform var(--transition-slow);
}
.about-image-wrap:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.about-image-wrap img { width: 100%; height: auto; display: block; }
.about-section .about-content h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem;
  margin-bottom: 20px; color: var(--white); line-height: 1.3;
}
.about-section .about-content p {
  font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 20px; line-height: 1.8;
}
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.about-section .value-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.about-section .value-item:hover {
  border-color: var(--emerald-light); background: rgba(255,255,255,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); transform: translateX(4px);
}
.about-section .value-item i { font-size: 20px; color: var(--emerald-light); flex-shrink: 0; margin-top: 2px; }
.about-section .value-item span { font-family: var(--font-accent); font-weight: 600; font-size: 0.85rem; color: rgba(255,255,255,0.95); }

/* ---------- SERVICES SECTION — 3D CARDS ---------- */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative; padding: 32px 24px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  transform-style: preserve-3d; perspective: 1000px;
  cursor: pointer; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-12px) rotateX(5deg) rotateY(-3deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(4,120,87,0.1);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--emerald-glow), rgba(4,120,87,0.06));
  border-radius: var(--radius-md); margin-bottom: 20px;
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 12px rgba(4,120,87,0.1);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  box-shadow: 0 8px 24px rgba(4,120,87,0.3);
  transform: scale(1.15) rotate(-8deg) translateZ(30px);
}
.service-icon-wrap i { font-size: 24px; color: var(--emerald); transition: color var(--transition-fast); }
.service-card:hover .service-icon-wrap i { color: var(--white); }
.service-card h4 {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  margin-bottom: 10px; color: var(--dark);
}
.service-card p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;
}

/* ---------- PRODUCTS SECTION WITH CAROUSEL ---------- */
.products-section { background: var(--white); }
.products-tabs {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.product-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--white);
  border: 1.5px solid var(--border-light); border-radius: var(--radius-full);
  font-family: var(--font-accent); font-weight: 600; font-size: 0.85rem;
  color: var(--text-secondary); cursor: pointer;
  transition: all var(--transition-smooth);
}
.product-tab:hover, .product-tab.active {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  border-color: var(--emerald); color: var(--white);
  box-shadow: 0 4px 16px rgba(4,120,87,0.3);
}
.product-tab i { font-size: 18px; }

.product-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* Product Carousel — object-fit contain */
.product-carousel {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  transform: perspective(1200px) rotateY(5deg);
  transition: transform var(--transition-slow);
  background: var(--off-white);
}
.product-carousel:hover { transform: perspective(1200px) rotateY(0deg); }

.carousel-container {
  position: relative; width: 100%; overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
}
.carousel-track {
  display: flex; transition: transform 0.5s var(--transition-smooth);
}
.carousel-slide {
  min-width: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.carousel-slide img {
  width: 100%; max-height: 380px; object-fit: contain; display: block;
  border-radius: var(--radius-md);
}
.carousel-nav {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer; transition: all var(--transition-fast);
}
.carousel-dot.active {
  background: var(--emerald); border-color: var(--emerald);
  width: 28px; border-radius: 5px;
}
.carousel-dot:hover { background: var(--white); }

.carousel-arrows {
  position: absolute; top: 50%; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 16px; transform: translateY(-50%);
  pointer-events: none; z-index: 10;
}
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all var(--transition-fast);
  color: var(--emerald); font-size: 18px;
}
.carousel-arrow:hover {
  background: var(--emerald); color: var(--white);
  transform: scale(1.1);
}

.product-info h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.8rem;
  margin-bottom: 16px; color: var(--dark);
}
.product-info p {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px;
}
.product-features { display: flex; flex-direction: column; gap: 10px; }
.product-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--off-white);
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.product-feature:hover { border-color: var(--emerald); background: var(--white); transform: translateX(4px); }
.product-feature i { font-size: 18px; color: var(--emerald); }
.product-feature span { font-family: var(--font-accent); font-weight: 500; font-size: 0.85rem; color: var(--text-primary); }

/* ---------- MAP SECTION ---------- */
.map-section { background: var(--off-white); }
.map-container { position: relative; max-width: 1000px; margin: 0 auto; }
.map-wrapper {
  position: relative; width: 100%;
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--border-light);
  overflow: hidden;
  padding: 40px;
}
.map-stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.map-stat-item {
  text-align: center; padding: 20px;
  background: var(--off-white); border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}
.map-stat-item:hover {
  background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.map-stat-number {
  font-family: var(--font-heading); font-weight: 800; font-size: 2rem;
  color: var(--emerald); line-height: 1;
}
.map-stat-label {
  font-family: var(--font-accent); font-size: 0.7rem; font-weight: 600;
  color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px;
}
.nigeria-map-svg { width: 100%; height: auto; border-radius: var(--radius-md); }
.map-country { fill: #F1F5F9; stroke: #CBD5E1; stroke-width: 1.2; }
.map-region {
  fill: var(--light-grey); stroke: var(--border-light); stroke-width: 1;
  transition: all var(--transition-smooth); cursor: pointer;
}
.map-region:hover, .map-region.active {
  fill: var(--emerald-glow); stroke: var(--emerald); stroke-width: 2;
}
.map-marker-group { cursor: pointer; }
.map-marker-dot {
  fill: var(--emerald);
  filter: drop-shadow(0 0 8px rgba(4,120,87,0.5));
}
.map-marker-label-bg {
  fill: var(--white); rx: 12;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
.map-marker-label-text {
  font-family: var(--font-accent); font-weight: 600; font-size: 12px;
  fill: var(--dark); text-anchor: middle;
}
.map-legend {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-top: 24px; flex-wrap: wrap;
}
.map-legend-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-accent); font-size: 0.8rem; color: var(--text-secondary);
}
.map-legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.map-legend-dot.active { background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }
.map-legend-dot.planned { background: var(--border-light); border: 1.5px solid var(--text-muted); }

/* ---------- WHY PARTNER SECTION — 3D CARDS ---------- */
.partner-section {
  background: linear-gradient(135deg, #022c1f 0%, #034d35 50%, #022c1f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.partner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 10% 30%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.partner-section .section-title,
.partner-section .section-desc,
.partner-card h4,
.partner-card p,
.partner-metric-label {
  color: var(--white);
}
.partner-section .section-label {
  background: rgba(255,255,255,0.12);
  color: var(--emerald-light);
  border: 1px solid rgba(255,255,255,0.1);
}
.partner-section .section-desc {
  color: rgba(255,255,255,0.75);
}
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-section .partner-card {
  position: relative; padding: 28px 24px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition-smooth);
  transform-style: preserve-3d; perspective: 1000px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.partner-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--emerald-light), var(--emerald));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-smooth);
}
.partner-section .partner-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3); border-color: var(--emerald-light);
  background: rgba(255,255,255,0.12);
}
.partner-card:hover::after { transform: scaleX(1); }
.partner-section .partner-card .service-icon-wrap {
  background: rgba(255,255,255,0.1); box-shadow: none;
}
.partner-section .partner-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  box-shadow: 0 8px 24px rgba(4,120,87,0.4);
  transform: scale(1.15) rotate(-8deg) translateZ(30px);
}
.partner-section .partner-card .service-icon-wrap i { color: var(--emerald-light); }
.partner-section .partner-card:hover .service-icon-wrap i { color: var(--white); }
.partner-section .partner-metric {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.8rem;
  color: var(--emerald-light); margin-top: 14px; line-height: 1;
}
.partner-section .partner-metric-label {
  font-family: var(--font-accent); font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,0.6); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px;
}

/* ---------- BRANDS SECTION — WITH PRODUCT PHOTOS ---------- */
.brands-section { background: var(--off-white); }
.brand-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.brand-showcase-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--transition-smooth);
  transform-style: preserve-3d; perspective: 1000px;
  min-height: 480px; display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: var(--white);
}
.brand-showcase-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.brand-image-area {
  position: relative; width: 100%; height: 280px;
  overflow: hidden; border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.brand-image-area img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.brand-showcase-card:hover .brand-image-area img {
  transform: scale(1.05);
}

.brand-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

.brand-content-area {
  padding: 0 32px 32px; position: relative; z-index: 3;
  margin-top: -30px;
}
.brand-icon-float {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(4,120,87,0.3);
  margin-bottom: 16px;
  border: 3px solid var(--white);
}
.brand-icon-float i { font-size: 24px; color: var(--white); }
.brand-showcase-card h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem;
  margin-bottom: 10px; color: var(--dark);
}
.brand-showcase-card p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px;
}
.brand-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.brand-tag {
  padding: 6px 14px; background: var(--emerald-glow);
  border: 1px solid rgba(4,120,87,0.1); border-radius: var(--radius-full);
  font-family: var(--font-accent); font-size: 0.75rem; font-weight: 600;
  color: var(--emerald);
}

/* ---------- STATS SECTION ---------- */
.stats-section { background: linear-gradient(135deg, var(--dark), var(--darker)); padding: 80px 24px; }
.stats-section .section-title, .stats-section .section-desc { color: var(--white); }
.stats-section .section-label { background: rgba(255,255,255,0.1); color: var(--emerald-light); border: 1px solid rgba(255,255,255,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.stat-card {
  position: relative; padding: 32px 24px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  text-align: center; transition: all var(--transition-smooth); overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition-smooth);
}
.stat-card:hover {
  transform: translateY(-5px); border-color: rgba(4,120,87,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(4,120,87,0.2); border-radius: var(--radius-md); margin: 0 auto 16px;
}
.stat-card-icon i { font-size: 22px; color: var(--emerald-light); }
.stat-card-number {
  font-family: var(--font-heading); font-weight: 800; font-size: 2.2rem;
  color: var(--emerald-light); line-height: 1; margin-bottom: 8px;
}
.stat-card-label {
  font-family: var(--font-accent); font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem;
  margin-bottom: 16px; color: var(--dark);
}
.contact-info > p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}
.contact-detail:hover { border-color: var(--emerald); box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-detail-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  border-radius: var(--radius-md); flex-shrink: 0;
}
.contact-detail-icon i { font-size: 20px; color: var(--white); }
.contact-detail-text h5 {
  font-family: var(--font-accent); font-weight: 600; font-size: 0.8rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.contact-detail-text p, .contact-detail-text a {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text-primary);
  text-decoration: none; transition: color var(--transition-fast);
}
.contact-detail-text a:hover { color: var(--emerald); }
.contact-form-wrap {
  padding: 36px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; margin-bottom: 24px; color: var(--dark); }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--font-accent); font-weight: 500; font-size: 0.78rem;
  color: var(--text-muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; background: var(--off-white);
  border: 1.5px solid var(--border-light); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text-primary);
  outline: none; transition: all var(--transition-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--emerald); box-shadow: 0 0 0 3px var(--emerald-glow); background: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-wrap .btn-primary { width: 100%; padding: 14px; font-size: 0.9rem; }

/* ---------- FOOTER ---------- */
.footer {
  position: relative; background: var(--dark); padding: 80px 24px 40px;
}
.footer-divider {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.footer-brand .logo-area { margin-bottom: 20px; }
.footer-brand .logo-img {
  width: 160px; height: auto; max-height: 48px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--text-muted); text-decoration: none;
  transition: all var(--transition-fast); font-size: 16px;
}
.social-link:hover { background: var(--emerald); border-color: var(--emerald); color: var(--white); transform: translateY(-3px); }
.footer-col h5 { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted);
  text-decoration: none; transition: all var(--transition-fast);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--emerald); transform: translateX(4px); }
.footer-links a i { font-size: 12px; color: var(--emerald); opacity: 0; transition: opacity var(--transition-fast); }
.footer-links a:hover i { opacity: 1; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-family: var(--font-accent); font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-family: var(--font-accent); font-size: 0.8rem;
  color: var(--text-muted); text-decoration: none; transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--emerald); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s var(--transition-smooth); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.5rem;
  color: var(--dark); text-decoration: none; transition: color var(--transition-fast);
}
.mobile-nav a:hover { color: var(--emerald); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--dark); font-size: 2rem; cursor: pointer;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; max-width: 500px; margin: 0 auto; }
  .hero-brands-bar { justify-content: center; flex-wrap: wrap; }
  .about-grid, .product-showcase, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-showcase-grid { grid-template-columns: 1fr; }
  .map-stats-bar { grid-template-columns: 1fr; }
  .hero-float-card, .hero-float-thumb, .hero-deco-circle { display: none; }
  .hero-main-image { width: 100%; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-carousel { transform: none; margin-bottom: 32px; }
}
@media (max-width: 768px) {
  .header { width: calc(100% - 16px); padding: 10px 18px; }
  .nav-desktop, .header-ctas { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 120px 16px 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-visual { min-height: auto; }
  .hero-main-image img { height: 260px; }
  .services-grid, .partner-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 16px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .brand-showcase-card { min-height: auto; }
  .brand-image-area { height: 220px; }
  .map-wrapper { padding: 24px; }
  .carousel-slide { padding: 20px; }
  .carousel-slide img { max-height: 280px; }
  .logo-img { width: 120px; max-height: 38px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .section-title { font-size: 1.6rem; }
  .hero-brands-bar { flex-direction: column; gap: 12px; }
  .logo-img { width: 100px; max-height: 32px; }
  .carousel-slide img { max-height: 220px; }
}
