/* ============================================================
   FRONTGATE OIL AND GAS LLC — Design 1 "African Sunrise"
   Shared Stylesheet
   Colors: #0B1426 navy · #C4622D terracotta · #D4A017 gold
           #4A7C59 sage · #FAF7F2 cream · #070E1C deep navy
   Fonts:  Cormorant Garamond (display) · Outfit (body) · Bebas Neue (stats)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #FAF7F2;
  color: #0B1426;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy: #0B1426;
  --deep: #070E1C;
  --terra: #C4622D;
  --gold: #D4A017;
  --sage: #4A7C59;
  --cream: #FAF7F2;
  --white: #FFFFFF;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

/* ── Typography ─────────────────────────────────────────────── */
.font-stat {
  font-family: 'Bebas Neue', sans-serif;
}

.overline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
}

.overline-gold {
  color: var(--gold);
}

.section-eyebrow {
  /* display: flex; */
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-eyebrow-center {
  justify-content: center;
}

.section-eyebrow-center::before,
.section-eyebrow-center::after {
  content: '';
  width: 2.5rem;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-eyebrow-center::before {
  order: -1;
}

.section-eyebrow-gold::before,
.section-eyebrow-gold::after {
  background: var(--gold);
}

.section-eyebrow-gold .overline {
  color: var(--gold);
}

.heading-xl {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.body-lg {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(11, 20, 38, 0.72);
}

.body-md {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(11, 20, 38, 0.68);
}

.body-sm {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(11, 20, 38, 0.65);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  transition: all 0.3s;
}

.btn-terra {
  background: var(--terra);
  color: #fff;
}

.btn-terra:hover {
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}

.btn-outline:hover {
  background: var(--terra);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--terra);
}

.btn-white:hover {
  background: var(--gold);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Cards ───────────────────────────────────────────────────── */
.fg-card {
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.07);
  border-radius: 8px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.fg-card:hover {
  box-shadow: 0 12px 40px rgba(11, 20, 38, 0.1);
  transform: translateY(-3px);
}

.fg-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: background 0.3s;
}

.fg-card-dark:hover {
  background: rgba(255, 255, 255, 0.09);
}

.card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* ── Check list ──────────────────────────────────────────────── */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: rgba(11, 20, 38, 0.75);
}

.check-list li::before {
  content: '✓';
  color: var(--terra);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── SVG Icons (inline) ──────────────────────────────────────── */
.icon {
  width: 1.375rem;
  height: 1.375rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ── Top contact bar ─────────────────────────────────────────── */
.topbar {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  padding: 0.625rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--gold);
}

.topbar-links {
  display: flex;
  gap: 1.5rem;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ── Navbar ──────────────────────────────────────────────────── */
#navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.875rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 1rem;
  padding: 0.6rem 1.25rem;
  background: var(--terra);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 0.5rem;
}

.nav-mobile {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile a {
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  display: block;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.nav-mobile .nav-cta {
  margin: 0.5rem 0 0;
  text-align: center;
  border-radius: 4px;
  display: block;
  padding: 0.75rem;
}

.nav-mobile-contacts {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile-contacts a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.25rem 1rem;
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 7rem 0 4.5rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 20, 38, 0.93) 50%, rgba(11, 20, 38, 0.72) 100%);
}

.page-hero-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.page-hero-deco {
  position: absolute;
  right: 0;
  top: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.04;
  transform: translate(30%, -30%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  font-size: 0.6rem;
}

.breadcrumb-current {
  color: var(--gold);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
}

/* ── Hero (home) ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 20, 38, 0.92) 45%, rgba(11, 20, 38, 0.7) 70%, transparent 100%);
}

.hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 20, 38, 0.6) 0%, transparent 40%);
}

.hero-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 680px;
}

.hero-eyebrow {
  /* display: flex; */
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 3rem;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
  animation: bounce 2s infinite;
}

.hero-scroll:hover {
  color: var(--gold);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── Stats strip ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ── About section ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(11, 20, 38, 0.15);
  background-size: cover;
  background-position: center top;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--terra);
  color: #fff;
  padding: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.3);
}

.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.about-badge-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.about-corner {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  border: 2px solid rgba(212, 160, 23, 0.25);
  border-radius: 8px;
}

/* ── Services grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--cream);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: rgba(11, 20, 38, 0.65);
  line-height: 1.7;
}

.service-card-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ── Renewable section ───────────────────────────────────────── */
.renewable-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.renewable-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.renewable-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 20, 38, 0.96) 50%, rgba(11, 20, 38, 0.75) 75%, rgba(11, 20, 38, 0.5) 100%);
}

.renewable-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.renewable-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.renewable-stats {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.renewable-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.rs-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
}

.rs-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.rs-desc {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ── Africa section ──────────────────────────────────────────── */
.africa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.africa-img-wrap {
  position: relative;
}

.africa-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(11, 20, 38, 0.15);
  background-size: cover;
  background-position: center;
}

.africa-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 20, 38, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  color: #fff;
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.region-card {
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.07);
  border-radius: 8px;
  padding: 1rem;
}

.region-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}

.region-card span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: rgba(11, 20, 38, 0.55);
}

/* ── Partnerships ────────────────────────────────────────────── */
.partnerships-img {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
  background-size: cover;
  background-position: center top;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Why choose ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: background 0.3s;
}

.why-card:hover {
  background: var(--cream);
}

.why-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  background: rgba(196, 98, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terra);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(11, 20, 38, 0.07);
  padding: 0 2rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(11, 20, 38, 0.05);
}

.faq-item {
  border-bottom: 1px solid rgba(11, 20, 38, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  gap: 1rem;
  text-align: left;
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(196, 98, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terra);
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.3s;
}

.faq-answer {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: rgba(11, 20, 38, 0.7);
  line-height: 1.8;
  padding-bottom: 1.25rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  background: var(--terra);
  color: #fff;
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  background: rgba(196, 98, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terra);
}

.contact-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: rgba(11, 20, 38, 0.65);
}

.contact-value a:hover {
  color: var(--terra);
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(11, 20, 38, 0.07);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(11, 20, 38, 0.12);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--terra);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: var(--gold);
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}

.form-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(74, 124, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--sage);
  font-size: 2rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--deep);
  color: #fff;
}

.footer-cta {
  background: var(--terra);
  padding: 3rem 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 700;
}

.footer-cta p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.footer-main {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand p {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

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

.footer-contact-icon {
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Tags / Badges ───────────────────────────────────────────── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Reveal animation ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .topbar {
    display: none;
  }
}

@media (max-width: 1024px) {
  .nav-mobile.open {
    display: flex;
  }
}

@media (max-width: 900px) {

  .about-grid,
  .africa-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .partnerships-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .renewable-cards {
    grid-template-columns: 1fr 1fr;
  }

  .renewable-stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .services-grid,
  .partnerships-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .regions-grid {
    grid-template-columns: 1fr;
  }
}