/* ══════════════════════════════════════════════
   FAYOMA SIGNS — about.css
   Place this file in your css/ folder
   Works together with styles.css
══════════════════════════════════════════════ */

/* ── NAVBAR SOLID (no hero behind it) ── */
.navbar-solid {
  position: relative;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 16px 60px;
}

/* ══════════════════════════════════════════════
   PAGE HERO BANNER
══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/hero-signage.jpg') center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.7) 100%);
  z-index: 1;
}

.page-hero-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  box-shadow: 0 0 30px 6px rgba(245,168,0,0.3);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: var(--gold); }

.page-hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fade-up 0.7s 0.1s ease both;
}

.page-hero-content h1 span { color: var(--gold); }

.page-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  animation: fade-up 0.7s 0.25s ease both;
}


/* ══════════════════════════════════════════════
   SECTION TAG
══════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  background: rgba(245,168,0,0.12);
  border: 1px solid rgba(245,168,0,0.3);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}


/* ══════════════════════════════════════════════
   WHO WE ARE — INTRO SECTION
══════════════════════════════════════════════ */
.about-intro {
  padding: 100px 0;
  background: var(--dark);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left visual */
.about-visual { position: relative; }

.about-img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,168,0,0.4);
}

.badge-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.85;
  margin-top: 2px;
}

.about-img-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.mini-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}

.mini-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.mini-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

/* Right text */
.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-text h2 span { color: var(--gold); }

.about-text .lead {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
}

.about-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.highlight-icon {
  width: 22px; height: 22px;
  background: rgba(245,168,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.highlight-icon svg { width: 12px; height: 12px; }


/* ══════════════════════════════════════════════
   MISSION / VISION / VALUES
══════════════════════════════════════════════ */
.mvv-section {
  padding: 90px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.mvv-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(245,168,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.mvv-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}

.mvv-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(245,168,0,0.25);
  transform: translateY(-4px);
}

.mvv-card--featured {
  background: rgba(245,168,0,0.06);
  border-color: rgba(245,168,0,0.35);
}

.mvv-card--featured:hover {
  background: rgba(245,168,0,0.1);
}

.mvv-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.mvv-icon svg { width: 100%; height: 100%; }

.mvv-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
}

.mvv-card--featured h3 { color: var(--gold); }

.mvv-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}


/* ══════════════════════════════════════════════
   WHY CHOOSE US / DIFFERENCE
══════════════════════════════════════════════ */
.difference-section {
  padding: 100px 0;
  background: var(--dark);
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.difference-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.difference-text h2 span { color: var(--gold); }

.difference-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 14px;
}

.difference-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.25s;
}

.feature-item:hover {
  background: rgba(245,168,0,0.05);
  border-color: rgba(245,168,0,0.3);
  transform: translateX(4px);
}

.feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  color: var(--gold);
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}


/* ══════════════════════════════════════════════
   SECTORS
══════════════════════════════════════════════ */
.sectors-section {
  padding: 90px 0;
  background: var(--navy);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.sector-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.25s;
}

.sector-card:hover {
  background: rgba(245,168,0,0.07);
  border-color: rgba(245,168,0,0.35);
  transform: translateY(-3px);
}

.sector-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.sector-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
}

.sector-card:hover h4 { color: var(--gold); }


/* ══════════════════════════════════════════════
   ABOUT CTA STRIP
══════════════════════════════════════════════ */
.about-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #0d1420 0%, #0A0F1E 100%);
  border-top: 1px solid rgba(245,168,0,0.12);
  border-bottom: 1px solid rgba(245,168,0,0.12);
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.about-cta-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-cta-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

.about-cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-intro-grid,
  .difference-grid { grid-template-columns: 1fr; gap: 48px; }
  .mvv-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar-solid { padding: 14px 24px; }
  .page-hero-content { padding: 0 24px; }
  .about-highlights { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta-inner { flex-direction: column; text-align: center; }
  .about-cta-btns { justify-content: center; }
}