/* =============================================
   ROOT VARIABLES & BASE
   ============================================= */
:root {
  --gold: #ffc107;
  --gold-dark: #e0a800;
  --gold-light: #ffe082;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --dark-3: #3a3a3a;
  --light: #f8f5f0;
  --white: #ffffff;
  --text-muted: #6c757d;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--white);
  color: var(--dark);
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 400 !important;
  font-family: "Playball", cursive !important;
  line-height: 1.3;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 600 !important;
  font-family: "Open Sans", sans-serif !important;
}

/* =============================================
   UTILITIES
   ============================================= */
.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.wow,
.animated {
  animation-duration: 1.5s !important;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 6px 18px;
  border-radius: 0 50px 50px 0;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--gold-dark);
}

.divider-gold {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 2rem;
}

/* =============================================
   SPINNER
   ============================================= */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
  background: var(--dark) !important;
}

#spinner.show {
  transition:
    opacity 0.8s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

#spinner .spinner-grow {
  color: var(--gold) !important;
  width: 3rem;
  height: 3rem;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark) !important;
  transition: var(--transition);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 90px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.my-float {
  margin-top: 0 !important;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-radius: 50px;
  padding: 12px 32px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), #c69500);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.45);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 10px 32px;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
}

.btn-warning {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  border: none !important;
  color: var(--dark) !important;
  font-weight: 600;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.45) !important;
}

.btn-square {
  width: 32px;
  height: 32px;
}
.btn-sm-square {
  width: 38px;
  height: 38px;
}
.btn-md-square {
  width: 44px;
  height: 44px;
}
.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/* =============================================
   NAVBAR
   ============================================= */
.nav-bar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 193, 7, 0.3);
  position: fixed;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-bar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand img {
  transition: var(--transition);
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar .navbar-nav .nav-link {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark) !important;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-toggler {
  border: 1px solid rgba(255, 193, 7, 0.6) !important;
  padding: 6px 12px !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* =============================================
   HERO / BANNER
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(255, 193, 7, 0.08) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 0.7rem;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item .stat-number {
  font-family: "Playball", cursive;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   INNER PAGE HERO (breadcrumb pages)
   ============================================= */
.page-hero {
  position: relative;
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/pic/corporate-jollof40.jpg") center/cover no-repeat;
  opacity: 0.18;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-hero .breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
}

.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.about-img-badge .number {
  font-family: "Playball", cursive;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-img-badge .label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li .icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--dark);
  flex-shrink: 0;
}

/* =============================================
   CORE VALUES
   ============================================= */
.values-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 193, 7, 0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  background: rgba(255, 193, 7, 0.08);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 193, 7, 0.15);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.value-card h5 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   STATS / FACTS
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stat-card .stat-number {
  font-family: "Playball", cursive;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  background: var(--light);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 193, 7, 0.3);
}

.service-card .card-icon-wrap {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card .card-icon-wrap::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
}

.service-card .card-icon-wrap i {
  font-size: 3.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.service-card .card-body-content {
  padding: 36px 24px 28px;
  text-align: center;
}

.service-card .card-body-content h4 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.service-card .card-body-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   MISSION & VISION
   ============================================= */
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mv-card .mv-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
}

.mv-card h4 {
  font-size: 1.5rem !important;
  font-family: "Playball", cursive !important;
  color: var(--dark);
  margin-bottom: 1rem;
}

.mv-card p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* =============================================
   VIDEO SECTION
   ============================================= */
.video {
  position: relative;
  height: 100%;
  min-height: 420px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/pic/corporate-jollof25.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius);
  overflow: hidden;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
  background: transparent;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}
#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}
#videoModal .modal-body {
  position: relative;
  padding: 0;
}

/* =============================================
   GALLERY / EVENTS
   ============================================= */
.gallery-section {
  background: var(--white);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-tabs .filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 193, 7, 0.4);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tabs .filter-btn:hover,
.filter-tabs .filter-btn.active,
.event .tab-class .nav-item a.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  border-color: var(--gold) !important;
  color: var(--dark) !important;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
}

.event .tab-class .nav-item a {
  border: 2px solid rgba(255, 193, 7, 0.4) !important;
  color: var(--dark) !important;
  font-weight: 700;
  transition: var(--transition);
  background: var(--white) !important;
}

.event-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.event-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-img-wrap:hover img {
  transform: scale(1.08);
}

.event .event-img {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.event .event-img img {
  transition: transform 0.5s ease;
}

.event .event-img:hover img {
  transform: scale(1.08);
}

.event .event-img .event-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.88),
    rgba(224, 168, 0, 0.88)
  );
  border-radius: var(--radius-sm);
  transition: 0.4s;
  opacity: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 24px !important;
}

.event .event-img:hover .event-overlay {
  opacity: 1;
}

.event .event-overlay h4 {
  color: var(--dark) !important;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--light);
  position: relative;
}

.testimonial-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
  position: relative;
  margin: 8px;
}

.testimonial-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-item .quote-icon {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--gold);
  opacity: 0.3;
  font-size: 2.5rem;
}

.testimonial-item .client-name {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-item .client-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-item .stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-item .review-text {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 0;
  font-style: italic;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
  direction: ltr !important;
}

/* =============================================
   BLOG
   ============================================= */
.blog-section {
  background: var(--white);
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card .img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .img-wrap img {
  transform: scale(1.08);
}

.blog-card .date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.blog-card .card-content {
  padding: 24px;
}

.blog-card .card-content h5 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  line-height: 1.5;
  transition: color 0.3s;
}

.blog-card:hover .card-content h5 {
  color: var(--gold-dark);
}

.blog-card .read-more {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.blog-card .read-more:hover {
  gap: 10px;
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/pic/corporate-jollof42.jpg") center/cover no-repeat;
  opacity: 0.1;
}

.cta-strip .content {
  position: relative;
  z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--white);
  color: var(--dark);
  padding: 70px 0 0;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.06);
}

.footer-brand h1 {
  font-size: 2rem;
  color: var(--gold-dark) !important;
  margin-bottom: 0.5rem;
}

.footer-brand h1 span {
  color: var(--dark) !important;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.85rem;
  text-decoration: none;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--dark) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  font-family: "Open Sans", sans-serif !important;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer-gallery-grid .gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}

.footer-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.footer-gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

.footer-gallery-grid .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 193, 7, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-gallery-grid .gallery-item:hover::after {
  opacity: 1;
}

.footer-divider {
  border-color: rgba(0, 0, 0, 0.1);
  margin: 40px 0 0;
}

.footer-bottom {
  padding: 20px 0;
  background: var(--light);
}

.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--gold-dark);
}

.footer .footer-item a.text-body:hover {
  color: var(--gold-dark) !important;
}

.site-footer a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--gold-dark);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  margin-bottom: 20px;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 193, 7, 0.3);
}

.contact-info-card .ci-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.contact-info-card h5 {
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat-item .stat-number {
    font-size: 1.5rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .about-img-wrapper {
    margin-bottom: 2rem;
  }

  .footer-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-stat-item .stat-number {
    font-size: 1.8rem;
  }
}
