/* ============================================================
   NFT GROUP - Website Stylesheet
   Theme: Modern African Professional
   Colors: Terracotta, Gold, Deep Brown, Warm Cream
   ============================================================ */

/* ===== 1. RESET & ROOT VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand Colors */
  --primary:        #86202b;
  --primary-dark:   #9B3220;
  --primary-light:  #E07054;
  --gold:           #b2d82f;
  --gold-light:     #E8B84B;
  --gold-dark:      #9A6E1A;

  /* Dark Palette */
  --dark:           #1A0D08;
  --dark-2:         #2D1B0E;
  --dark-3:         #3E2A1A;

  /* Text */
  --text:           #1A1A1A;
  --text-medium:    #4A4A4A;
  --text-light:     #6B6060;
  --text-muted:     #9A8F8F;

  /* Backgrounds */
  --bg-cream:       #FDF8F2;
  --bg-light:       #F7F0E8;
  --bg-white:       #FFFFFF;
  --border:         #E8DDD5;
  --border-light:   #F0E8E0;

  /* Status */
  --success:        #2D7A4F;

  /* Typography */
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py:     96px;
  --container-max:  1240px;
  --gap:            24px;

  /* Effects */
  --shadow-sm:      0 2px 8px rgba(26, 13, 8, 0.08);
  --shadow:         0 4px 24px rgba(26, 13, 8, 0.12);
  --shadow-lg:      0 16px 48px rgba(26, 13, 8, 0.16);
  --shadow-primary: 0 8px 32px rgba(200, 75, 49, 0.30);
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 2. BASE TYPOGRAPHY ===== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-medium); }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

ul, ol { list-style: none; }

/* ===== 3. LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

/* Section Headers */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header.left { text-align: left; margin-left: 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(200, 75, 49, 0.08);
  border-left: 3px solid var(--primary);
  padding: 4px 14px 4px 10px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 16px;
}

.section-label.gold {
  color: var(--gold);
  background: rgba(201, 146, 43, 0.08);
  border-left-color: var(--gold);
}

.section-label.white {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--gold-light);
}

.section-title { margin-bottom: 16px; }
.section-title span { color: var(--primary); }
.section-title.white { color: #fff; }
.section-title.white span { color: var(--gold-light); }

.section-desc { font-size: 1.05rem; color: var(--text-light); margin-bottom: 0; }
.section-desc.white { color: rgba(255,255,255,0.75); }

/* Grid Utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* Flex Utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ===== 4. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

.btn i, .btn svg { font-size: 0.95em; }

/* ===== 5. NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}

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

.navbar-brand img {
  height: 48px;
  width: auto;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-2);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Nav Menu */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(200, 75, 49, 0.06);
}

.nav-link i { font-size: 0.7rem; transition: transform 0.2s; }
.nav-item:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-cream);
  color: var(--primary);
}

.dropdown-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(200, 75, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.dropdown-item-text { display: flex; flex-direction: column; }
.dropdown-item-title { font-weight: 600; line-height: 1.3; }
.dropdown-item-desc { font-size: 0.75rem; color: var(--text-light); margin-top: 1px; }

/* Navbar CTA */
.navbar-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== 6. HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 13, 8, 0.88) 0%,
    rgba(45, 27, 14, 0.82) 40%,
    rgba(155, 50, 32, 0.6) 100%
  );
  z-index: 1;
}

/* African diamond pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 4L56 30L30 56L4 30Z' fill='none' stroke='rgba(201,146,43,0.12)' stroke-width='1'/%3E%3C/svg%3E");
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 24px 40px;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold-light);
  opacity: 0.7;
}

.hero-title {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title span { color: var(--gold-light); font-style: italic; }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 24px;
}

.hero-stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hero-stat {
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 32px;
  background: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== 7. SERVICES SECTION ===== */
.services { background: var(--bg-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(200, 75, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.service-link i { font-size: 0.75rem; transition: transform 0.2s; }
.service-link:hover i { transform: translateX(4px); }

/* ===== 8. ABOUT SECTION ===== */
.about { background: var(--bg-cream); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-main:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-primary);
  min-width: 140px;
}

.about-badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}

.about-badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content { padding-right: 24px; }

.about-content .section-label { margin-bottom: 14px; }

.about-content h2 { margin-bottom: 20px; }
.about-content h2 span { color: var(--primary); }

.about-content p { margin-bottom: 18px; font-size: 1rem; }

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

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.about-value-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(200, 75, 49, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-value-title { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.about-value-desc { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ===== 9. WHY NFT SECTION (Dark Pattern BG) ===== */
.why-nft {
  background-color: var(--dark-2);
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpolygon points='40,5 75,22.5 75,57.5 40,75 5,57.5 5,22.5' stroke='rgba(201,146,43,0.08)' stroke-width='1'/%3E%3Cpolygon points='40,20 60,30 60,50 40,60 20,50 20,30' stroke='rgba(201,146,43,0.05)' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-nft::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 75, 49, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201, 146, 43, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(201, 146, 43, 0.12);
  border: 1px solid rgba(201, 146, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ===== 10. INDUSTRIES SECTION ===== */
.industries { background: var(--bg-white); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: default;
  transition: var(--transition);
  background: var(--bg-white);
}

.industry-card:hover {
  border-color: var(--primary);
  background: rgba(200, 75, 49, 0.03);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.industry-card i {
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.industry-card:hover i { color: var(--primary-dark); }

.industry-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ===== 11. CLIENTS SECTION ===== */
.clients { background: var(--bg-cream); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border-light);
}

.client-item {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.client-item:hover { background: var(--bg-cream); }

.client-item span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition);
}

.client-item:hover span { color: var(--primary); }

/* ===== 12. AWARDS SECTION ===== */
.awards { background: var(--bg-white); }

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

.award-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.award-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 146, 43, 0.1), rgba(200, 75, 49, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--gold);
}

.award-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.award-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.award-org {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== 13. CTA SPLIT SECTION ===== */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.cta-col {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-col-employer {
  background: var(--primary);
}

.cta-col-employer::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-col-seeker {
  background: var(--dark-2);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 4L56 30L30 56L4 30Z' fill='none' stroke='rgba(201,146,43,0.1)' stroke-width='1'/%3E%3C/svg%3E");
}

.cta-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.cta-col-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.cta-col-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

/* ===== 14. NEWSLETTER / CONTACT CTA ===== */
.contact-cta { background: var(--bg-cream); }

.contact-cta-inner {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-xl);
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 5L75 22.5V57.5L40 75L5 57.5V22.5Z' fill='none' stroke='rgba(201,146,43,0.07)' stroke-width='1'/%3E%3C/svg%3E");
}

.contact-cta-inner > * { position: relative; z-index: 1; }

/* ===== 15. FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand-col {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img { height: 44px; filter: brightness(10) grayscale(1); }

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nav a:hover { color: #fff; padding-left: 4px; }
.footer-nav a::before {
  content: '→';
  font-size: 0.7rem;
  color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}
.footer-nav a:hover::before { opacity: 1; }

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

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(200, 75, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-text strong { display: block; color: rgba(255,255,255,0.8); font-weight: 600; }

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

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

/* ===== 16. PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 5L75 22.5V57.5L40 75L5 57.5V22.5Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.65rem; }
.breadcrumb .current { color: var(--gold-light); }

.page-hero-title { color: #fff; margin-bottom: 16px; }
.page-hero-title span { color: var(--gold-light); font-style: italic; }

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0;
}

/* ===== 17. TEAM CARDS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img { transform: scale(1.05); }

.team-card-body { padding: 20px; }

.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== 18. CONTACT FORM ===== */
.contact-form { background: var(--bg-cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 75, 49, 0.08);
}

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

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

/* Contact Info */
.contact-info-card {
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
}

.contact-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.offices-list { display: flex; flex-direction: column; gap: 20px; }

.office-item { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.office-item:last-child { border-bottom: none; padding-bottom: 0; }

.office-country {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.office-address { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 6px; }
.office-phone { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== 19. COUNTER / STATS ===== */
.stats-section { background: var(--primary); }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 48px 32px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== 20. DIVIDER / DECORATIVE ===== */
.kente-divider {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px, var(--primary) 20px,
    var(--gold) 20px, var(--gold) 40px,
    var(--dark-2) 40px, var(--dark-2) 60px,
    var(--gold) 60px, var(--gold) 80px
  );
}

/* ===== 21. ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== 22. UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }
.text-white { color: #fff !important; }
.text-muted { color: var(--text-light) !important; }
.bg-cream { background: var(--bg-cream); }
.bg-white { background: var(--bg-white); }
.bg-dark { background: var(--dark-2); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.mt-6 { margin-top: 24px; }
.mb-6 { margin-bottom: 24px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
.w-full { width: 100%; }

/* ===== 23. RESPONSIVE / MEDIA QUERIES ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-py: 64px; }
  .navbar-nav { display: none; }
  .navbar-toggle { display: flex; }

  .navbar-inner { height: 64px; }

  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
    z-index: 999;
  }

  .navbar-nav.open .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: var(--bg-cream);
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .navbar-nav.open .nav-item.dropdown-open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-item.dropdown-open > .nav-link i {
    transform: rotate(180deg);
  }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-right: 0; }
  .about-badge { bottom: -10px; right: 10px; }

  .cta-split { grid-template-columns: 1fr; }
  .cta-col { padding: 48px 32px; }

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

  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-py: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stat + .hero-stat::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cta-inner { padding: 40px 24px; }
  .about-values { grid-template-columns: 1fr; }
}
