/*
Theme Name: KATAFRICA Strategic Solutions
Theme URI: https://katafrica.com
Description: Custom child theme for KATAFRICA Strategic Solutions built on Twenty Twenty
Author: KATAFRICA
Author URI: https://katafrica.com
Template: twentytwenty
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: katafrica
*/

/* =====================================================
   INLINE STYLE FIXES
   Add this to your style.css after the WordPress header
   ===================================================== */

/* Force sections with inline padding to work */
section[style*="padding: 6rem 0 4rem"],
section[style*="padding: 6rem"] {
    padding: 6rem 0 4rem !important;
}

section[style*="padding: 4rem 0"],
section[style*="padding: 4rem"] {
    padding: 4rem 0 !important;
}

section[style*="padding: 5rem 0"],
section[style*="padding: 5rem"] {
    padding: 5rem 0 !important;
}

section[style*="padding: 3rem 0"],
section[style*="padding: 3rem"] {
    padding: 3rem 0 !important;
}

section[style*="padding: 0"] {
    padding: 0 !important;
}

/* Background color and gradient fixes */
section[style*="background-color: var(--bg-light)"] {
    background-color: var(--bg-light) !important;
}

section[style*="background-color: var(--bg-white)"] {
    background-color: var(--bg-white) !important;
}

section[style*="background: linear-gradient"] {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
    color: white !important;
}

section[style*="linear-gradient"] * {
    color: inherit !important;
}

/* Text alignment */
[style*="text-align: center"] {
    text-align: center !important;
}

[style*="text-align: left"] {
    text-align: left !important;
}

/* Max-width containers */
[style*="max-width: 800px"] {
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

[style*="max-width: 900px"] {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Font sizes */
[style*="font-size: 1.25rem"] {
    font-size: 1.25rem !important;
}

[style*="font-size: 1.125rem"] {
    font-size: 1.125rem !important;
}

/* Color overrides */
h2[style*="color: white"] {
    color: white !important;
}

[style*="color: var(--primary-yellow)"] {
    color: var(--primary-yellow) !important;
}

/* Margin utilities */
[style*="margin-top: 2rem"] {
    margin-top: 2rem !important;
}

[style*="margin-top: 1.5rem"] {
    margin-top: 1.5rem !important;
}

[style*="margin-top: 1rem"] {
    margin-top: 1rem !important;
}

[style*="margin-bottom: 2rem"] {
    margin-bottom: 2rem !important;
}

[style*="margin-bottom: 1.5rem"] {
    margin-bottom: 1.5rem !important;
}

[style*="margin-bottom: 1rem"] {
    margin-bottom: 1rem !important;
}

[style*="margin: 0 auto"] {
    margin-left: auto !important;
    margin-right: auto !important;
}

[style*="margin: 0"] {
    margin: 0 !important;
}

/* Border radius */
[style*="border-radius: 10px"] {
    border-radius: 10px !important;
}

[style*="border-radius: 8px"] {
    border-radius: 8px !important;
}

[style*="border-radius: 5px"] {
    border-radius: 5px !important;
}

[style*="border-radius: 500%"],
[style*="border-radius: 50%"] {
    border-radius: 50% !important;
}

/* List styles */
ul[style*="list-style: none"] {
    list-style: none !important;
    margin: 0 !important;
}

ul[style*="padding: 0"] {
    padding: 0 !important;
}

li[style*="padding: 0.5rem 0"] {
    padding: 0.5rem 0 !important;
}

/* Specific height for images */
img[style*="height: 80px"] {
    height: 80px !important;
    width: auto !important;
}

/* Width 100% */
[style*="width: 100%"] {
    width: 100% !important;
}

/* Margin-left for lists */
ul[style*="margin-left: 1.5rem"] {
    margin-left: 1.5rem !important;
}

/* Line height */
div[style*="line-height: 1.8"] {
    line-height: 1.8 !important;
}

/* =====================================================
   END INLINE STYLE FIXES
   ===================================================== */
/* =====================================================
   CRITICAL OVERRIDES - FORCE LOAD CUSTOM STYLES
   ===================================================== */

/* Force reset all Twenty Twenty styles */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    line-height: 1.7 !important;
    color: #333333 !important;
    background-color: #FFFFFF !important;
    overflow-x: hidden !important;
}

*, *::before, *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

/* Remove Twenty Twenty's max-width restrictions */
.entry-content,
#site-content,
.section-inner {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables for Brand Colors */
:root {
  --primary-yellow: #FFB800;
  --secondary-yellow: #FFF8DC;
  --accent-gold: #D4AF37;
  --primary-black: #1A1A1A;
  --secondary-black: #2D2D2D;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E0E0E0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}

/* Typography - Force Override */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: var(--primary-black) !important;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
}

h1 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

h2 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}

h3 {
  font-size: 1.75rem !important;
  font-weight: 600 !important;
}

h4 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
}

p {
  margin-bottom: 1rem !important;
  color: var(--text-light) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

a {
  text-decoration: none !important;
  color: inherit !important;
  transition: all 0.3s ease !important;
}

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

/* Container */
.container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  width: 100% !important;
}

.container-wide {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  width: 100% !important;
}

/* Header and Navigation - Force Override */
header {
  background-color: var(--bg-white) !important;
  box-shadow: 0 2px 10px var(--shadow-light) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.header-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 1rem 2rem !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  text-decoration: none !important;
}

.logo-img {
  height: 50px !important;
  width: auto !important;
}

.logo-text {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--primary-black) !important;
}

.logo-text span {
  color: var(--primary-yellow) !important;
}

/* Navigation - Force Override */
nav ul {
  display: flex !important;
  list-style: none !important;
  gap: 2.5rem !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

nav ul li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

nav ul li a {
  font-weight: 500 !important;
  color: var(--text-dark) !important;
  font-size: 1rem !important;
  position: relative !important;
  padding: 0.5rem 0 !important;
  text-decoration: none !important;
}

nav ul li a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background-color: var(--primary-yellow) !important;
  transition: width 0.3s ease !important;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-yellow) !important;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100% !important;
}

.nav-cta {
  background-color: var(--primary-yellow) !important;
  color: var(--primary-black) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background-color: var(--accent-gold) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3) !important;
}

/* Hamburger Menu */
.hamburger {
  display: none !important;
  flex-direction: column !important;
  cursor: pointer !important;
  gap: 5px !important;
}

.hamburger span {
  width: 28px !important;
  height: 3px !important;
  background-color: var(--primary-black) !important;
  transition: all 0.3s ease !important;
  border-radius: 2px !important;
  display: block !important;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px) !important;
}

.hamburger.active span:nth-child(2) {
  opacity: 0 !important;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px) !important;
}

/* Hero Section - Force Override */
.hero {
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
  color: var(--bg-white) !important;
  padding: 8rem 0 6rem !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  margin: 0 !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}

.hero-text h1 {
  color: var(--bg-white) !important;
  margin-bottom: 1.5rem !important;
}

.hero-text .highlight {
  color: var(--primary-yellow) !important;
}

.hero-text p {
  font-size: 1.25rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 2rem !important;
}

.hero-buttons {
  display: flex !important;
  gap: 1.5rem !important;
}

.hero-image img {
  border-radius: 10px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
  width: 100% !important;
}

/* Buttons - Force Override */
.btn {
  display: inline-block !important;
  padding: 1rem 2rem !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  text-align: center !important;
  text-decoration: none !important;
}

.btn-primary {
  background-color: var(--primary-yellow) !important;
  color: var(--primary-black) !important;
  border-color: var(--primary-yellow) !important;
}

.btn-primary:hover {
  background-color: var(--accent-gold) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4) !important;
}

.btn-secondary {
  background-color: transparent !important;
  color: var(--bg-white) !important;
  border-color: var(--bg-white) !important;
}

.btn-secondary:hover {
  background-color: var(--bg-white) !important;
  color: var(--primary-black) !important;
}

/* Section Styles - Force Override */
section {
  padding: 5rem 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

.section-header {
  text-align: center !important;
  margin-bottom: 4rem !important;
}

.section-header .label {
  color: var(--primary-yellow) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-size: 0.875rem !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.section-header h2 {
  margin-bottom: 1rem !important;
}

.section-header p {
  max-width: 700px !important;
  margin: 0 auto !important;
  font-size: 1.125rem !important;
}

/* Stats Section - Force Override */
.stats {
  background-color: var(--primary-yellow) !important;
  padding: 3rem 0 !important;
}

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

.stat-item h3 {
  font-size: 3rem !important;
  color: var(--primary-black) !important;
  margin-bottom: 0.5rem !important;
}

.stat-item p {
  color: var(--primary-black) !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
}

/* Services Grid - Force Override */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  gap: 2rem !important;
}

.service-card {
  background: var(--bg-white) !important;
  border-radius: 10px !important;
  padding: 2.5rem !important;
  box-shadow: 0 5px 20px var(--shadow-light) !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
}

.service-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 40px var(--shadow-medium) !important;
  border-color: var(--primary-yellow) !important;
}

.service-icon {
  width: 80px !important;
  height: 80px !important;
  background: linear-gradient(135deg, #FFB800 0%, #D4AF37 100%) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.5rem !important;
}

.service-icon img {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.service-card h3 {
  margin-bottom: 1rem !important;
  color: var(--primary-black) !important;
}

.service-card p {
  margin-bottom: 1.5rem !important;
  line-height: 1.7 !important;
}

.service-link {
  color: var(--primary-yellow) !important;
  font-weight: 600 !important;
}

/* About Section - Force Override */
.about-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}

.about-image img {
  border-radius: 10px !important;
  box-shadow: 0 15px 40px var(--shadow-medium) !important;
  width: 100% !important;
}

.about-text h2 {
  margin-bottom: 1.5rem !important;
}

.about-text p {
  margin-bottom: 1.5rem !important;
  font-size: 1.0625rem !important;
  line-height: 1.8 !important;
}

/* Features Grid - Force Override */
.features-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 2rem !important;
}

.feature-card {
  background: var(--bg-white) !important;
  padding: 2rem !important;
  border-radius: 10px !important;
  box-shadow: 0 5px 20px var(--shadow-light) !important;
  text-align: center !important;
}

.feature-icon {
  width: 60px !important;
  height: 60px !important;
  margin: 0 auto 1rem !important;
  background: var(--bg-light) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.feature-icon img {
  width: 30px !important;
  height: 30px !important;
}

/* Credentials Grid - Force Override */
.credentials-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 3rem !important;
  text-align: center !important;
}

.credential-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1rem !important;
}

.credential-item img {
  height: 80px !important;
  width: auto !important;
  object-fit: contain !important;
}

.credential-item p {
  font-size: 0.9rem !important;
  color: var(--text-light) !important;
}

/* Footer - Force Override */
footer {
  background-color: var(--primary-black) !important;
  color: var(--bg-white) !important;
  padding: 4rem 0 2rem !important;
  width: 100% !important;
  margin: 0 !important;
}

.footer-content {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 3rem !important;
  margin-bottom: 3rem !important;
}

.footer-about h3 {
  color: var(--bg-white) !important;
  margin-bottom: 1rem !important;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.7 !important;
}

.footer-links h4 {
  color: var(--bg-white) !important;
  margin-bottom: 1rem !important;
  font-size: 1.125rem !important;
}

.footer-links ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-links ul li {
  margin-bottom: 0.75rem !important;
  list-style: none !important;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease !important;
}

.footer-links ul li a:hover {
  color: var(--primary-yellow) !important;
}

.social-links {
  display: flex !important;
  gap: 1rem !important;
  margin-top: 1.5rem !important;
}

.social-icon {
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.social-icon:hover {
  background-color: var(--primary-yellow) !important;
  transform: translateY(-3px) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 2rem !important;
  text-align: center !important;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 !important;
}

/* Responsive Design - Force Override */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem !important;
  }

  h2 {
    font-size: 2rem !important;
  }

  .hero-content,
  .about-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  nav ul {
    position: fixed !important;
    top: 70px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background-color: var(--bg-white) !important;
    flex-direction: column !important;
    padding: 2rem !important;
    box-shadow: 0 5px 20px var(--shadow-light) !important;
    transition: left 0.3s ease !important;
    gap: 1rem !important;
  }

  nav ul.active {
    left: 0 !important;
  }

  .hamburger {
    display: flex !important;
  }

  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  .hero {
    padding: 4rem 0 3rem !important;
  }

  .hero-text p {
    font-size: 1rem !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .btn {
    width: 100% !important;
  }

  section {
    padding: 3rem 0 !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
  }
}

/* Hide Twenty Twenty specific elements */
#site-header,
.entry-header,
#site-footer,
.pagination,
.search-modal {
    display: none !important;
}

/* =====================================================
   UTILITY CLASSES - Add these to your style.css
   These replace inline styles in PHP templates
   ===================================================== */

/* Background Colors */
.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
}

.bg-dark {
    background-color: var(--primary-black) !important;
}

/* Text Colors */
.text-white {
    color: white !important;
}

.text-yellow {
    color: var(--primary-yellow) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

/* Text Alignment */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/* Padding Utilities */
.py-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.pt-4 {
    padding-top: 4rem !important;
}

.pb-4 {
    padding-bottom: 4rem !important;
}

.p-0 {
    padding: 0 !important;
}

/* Margin Utilities */
.mt-1 {
    margin-top: 1rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.m-0 {
    margin: 0 !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Max Width Utilities */
.max-w-700 {
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.max-w-800 {
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.max-w-900 {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Width Utilities */
.w-100 {
    width: 100% !important;
}

/* Specific Page/Section Styles */
.hero-page {
    padding: 6rem 0 4rem !important;
}

.cta-gradient {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
    color: white !important;
    text-align: center !important;
    padding: 5rem 0 !important;
}

.cta-gradient h2 {
    color: white !important;
    margin-bottom: 1.5rem !important;
}

.cta-gradient .cta-text,
.cta-gradient p {
    font-size: 1.25rem !important;
    margin-bottom: 2.5rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.credential-img {
    height: 80px !important;
    width: auto !important;
}

/* Border Radius Utilities */
.rounded {
    border-radius: 10px !important;
}

.rounded-sm {
    border-radius: 5px !important;
}

.rounded-lg {
    border-radius: 15px !important;
}

.rounded-full {
    border-radius: 50% !important;
}

/* List Styles */
.list-none {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.list-checkmark li {
    padding: 0.5rem 0 !important;
    list-style: none !important;
}

.list-checkmark li::before {
    content: '✓' !important;
    color: var(--primary-yellow) !important;
    font-weight: bold !important;
    margin-right: 0.5rem !important;
}

/* Font Size Utilities */
.text-lg {
    font-size: 1.25rem !important;
}

.text-md {
    font-size: 1.125rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

/* Line Height */
.leading-relaxed {
    line-height: 1.7 !important;
}

.leading-loose {
    line-height: 1.8 !important;
}

/* Display Utilities */
.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

/* =====================================================
   END UTILITY CLASSES
   ===================================================== */

/* =====================================================
   ADDITIONAL CSS FOR CLEAN TEMPLATES
   Add these to your style.css after the utility classes
   ===================================================== */

/* Section-specific styles for About page */
.credentials-list {
    list-style: none !important;
    margin-left: 1.5rem !important;
    padding: 0 !important;
}

.credentials-list li {
    padding: 0.5rem 0 !important;
    position: relative !important;
}

.credentials-list li::before {
    content: '•' !important;
    position: absolute !important;
    left: -1.5rem !important;
    color: var(--primary-yellow) !important;
    font-weight: bold !important;
}

.client-highlight {
    background: var(--bg-white) !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    margin-top: 0.5rem !important;
}

.expertise-list {
    list-style: none !important;
    margin-left: 1.5rem !important;
    padding: 0 !important;
    color: var(--text-light) !important;
}

.expertise-list li {
    padding: 0.5rem 0 !important;
    position: relative !important;
}

.expertise-list li::before {
    content: '✓' !important;
    position: absolute !important;
    left: -1.5rem !important;
    color: var(--primary-yellow) !important;
    font-weight: bold !important;
}

/* Contact page specific */
.social-icon-yellow {
    background-color: var(--primary-yellow) !important;
}

.text-left {
    text-align: left !important;
}

.form-message {
    margin-top: 1rem !important;
    padding: 1rem !important;
    border-radius: 5px !important;
    display: none !important;
}

.form-message.success {
    background-color: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
    display: block !important;
}

.form-message.error {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
    display: block !important;
}

/* Leadership/Profile styles */
.leadership-profile {
    display: grid !important;
    grid-template-columns: 300px 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
}

.profile-image img {
    border-radius: 10px !important;
    box-shadow: 0 10px 30px var(--shadow-medium) !important;
}

.profile-title {
    color: var(--primary-yellow) !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    font-size: 1.125rem !important;
}

/* Mission/Vision cards */
.mission-vision-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
}

.mv-card {
    background: var(--bg-white) !important;
    padding: 2.5rem !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px var(--shadow-light) !important;
    text-align: center !important;
}

.mv-icon {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto 1.5rem !important;
    background: var(--bg-light) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mv-icon img {
    width: 35px !important;
    height: 35px !important;
}

/* Expertise cards */
.expertise-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
}

.expertise-card {
    background: var(--bg-white) !important;
    padding: 2rem !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px var(--shadow-light) !important;
}

.expertise-card h3 {
    color: var(--primary-black) !important;
    margin-bottom: 1rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .leadership-profile {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .profile-image {
        max-width: 250px !important;
        margin: 0 auto !important;
    }
}

/* =====================================================
   END ADDITIONAL CSS
   ===================================================== */

/* Credential Badges (homepage about section) */
.credentials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

.credential-badge {
    background-color: var(--bg-light) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--border-color) !important;
}

/* Button Outline variant */
.btn-outline {
    background-color: transparent !important;
    color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
}

.btn-outline:hover {
    background-color: var(--primary-yellow) !important;
    color: var(--primary-black) !important;
}

/* Service card list styling */
.service-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 1rem 0 1.5rem 0 !important;
}

.service-card ul li {
    padding: 0.5rem 0 !important;
    padding-left: 1.5rem !important;
    position: relative !important;
    color: var(--text-light) !important;
}

.service-card ul li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--primary-yellow) !important;
    font-weight: bold !important;
}

/* =====================================================
   MISSING STYLES FOR FRONT PAGE - Add to style.css
   ===================================================== */

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light) !important;
    padding: 5rem 0 !important;
}

.testimonial-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
}

.testimonial-card {
    background: var(--bg-white) !important;
    padding: 2.5rem !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px var(--shadow-light) !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px var(--shadow-medium) !important;
}

.testimonial-text {
    font-size: 1.0625rem !important;
    line-height: 1.8 !important;
    color: var(--text-light) !important;
    margin-bottom: 2rem !important;
    font-style: italic !important;
}

.testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.author-info h4 {
    color: var(--primary-black) !important;
    margin-bottom: 0.25rem !important;
    font-size: 1rem !important;
}

.author-info p {
    color: var(--text-light) !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
}

/* Logos Grid */
.logos-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    align-items: center !important;
    justify-items: center !important;
}

.logo-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.logo-item img {
    max-width: 100% !important;
    height: auto !important;
    filter: grayscale(0%) !important;
    transition: all 0.3s ease !important;
}

/* FAQ Section */
.faq-container {
    max-width: 900px !important;
    margin: 0 auto !important;
}

.faq-item {
    background: var(--bg-white) !important;
    border-radius: 8px !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 2px 10px var(--shadow-light) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faq-question {
    padding: 1.5rem 2rem !important;
    font-weight: 600 !important;
    color: var(--primary-black) !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

.faq-question:hover {
    background-color: var(--bg-light) !important;
    color: var(--primary-yellow) !important;
}

.faq-question::after {
    content: '+' !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease !important;
}

.faq-question.active::after {
    content: '-' !important;
    transform: rotate(180deg) !important;
}

.faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
    padding: 0 2rem !important;
}

.faq-answer.active {
    max-height: 500px !important;
    padding: 0 2rem 1.5rem 2rem !important;
}

.faq-answer p {
    color: var(--text-light) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* CTA Section Full Width */
.cta-section-fullwidth {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
    color: var(--bg-white) !important;
    text-align: center !important;
    padding: 5rem 0 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

.mb-15 {
    margin-bottom: 1.5rem !important;
}

.cta-description {
    font-size: 1.25rem !important;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 2.5rem !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-buttons-wrapper {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }
    
    .cta-buttons-wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cta-buttons-wrapper .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
}

/* =====================================================
   END MISSING STYLES
   ===================================================== */

/* =====================================================
   MISSING STYLES FOR CONTACT PAGE - Add to style.css
   ===================================================== */

/* Contact Content Layout */
.contact-content {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr !important;
    gap: 4rem !important;
    align-items: start !important;
}

/* Contact Info Section */
.contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.contact-item {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: flex-start !important;
}

.contact-icon {
    width: 50px !important;
    height: 50px !important;
    background: var(--bg-light) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.contact-icon img {
    width: 24px !important;
    height: 24px !important;
}

.contact-details h4 {
    color: var(--primary-black) !important;
    margin-bottom: 0.5rem !important;
    font-size: 1.125rem !important;
}

.contact-details p {
    color: var(--text-light) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.contact-details a {
    color: var(--primary-yellow) !important;
    transition: color 0.3s ease !important;
}

.contact-details a:hover {
    color: var(--accent-gold) !important;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white) !important;
    padding: 3rem !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 40px var(--shadow-light) !important;
}

.contact-form h3 {
    color: var(--primary-black) !important;
    margin-bottom: 1.5rem !important;
}

.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    font-size: 0.9375rem !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 5px !important;
    font-size: 1rem !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--text-dark) !important;
    transition: all 0.3s ease !important;
    background-color: var(--bg-white) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: var(--primary-yellow) !important;
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1) !important;
}

.form-group textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

.form-group select {
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    padding-right: 2.5rem !important;
}

.form-group-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem !important;
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.form-group-checkbox label {
    font-size: 0.9375rem !important;
    color: var(--text-light) !important;
    cursor: pointer !important;
    line-height: 1.5 !important;
}

/* Form Message */
.form-message {
    margin-top: 1rem !important;
    padding: 1rem !important;
    border-radius: 5px !important;
    display: none !important;
    font-weight: 500 !important;
}

.form-message.success {
    background-color: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
    display: block !important;
}

.form-message.error {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
    display: block !important;
}

/* CTA Contact Section */
.cta-contact {
    background-color: var(--bg-light) !important;
    padding: 5rem 0 !important;
}

.cta-contact h2 {
    color: var(--primary-black) !important;
    margin-bottom: 1rem !important;
}

.cta-contact-text {
    font-size: 1.125rem !important;
    color: var(--text-light) !important;
    margin-bottom: 2rem !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-contact-buttons {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Button Outline Dark variant */
.btn-outline-dark {
    background-color: transparent !important;
    color: var(--primary-black) !important;
    border-color: var(--primary-black) !important;
}

.btn-outline-dark:hover {
    background-color: var(--primary-black) !important;
    color: var(--bg-white) !important;
}

/* Social Icon Yellow variant (already exists but ensure it's there) */
.social-icon-yellow {
    background-color: var(--primary-yellow) !important;
}

.social-icon-yellow:hover {
    background-color: var(--accent-gold) !important;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .contact-form {
        padding: 2rem !important;
    }
}

@media (max-width: 768px) {
    .contact-item {
        gap: 1rem !important;
    }
    
    .contact-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .contact-icon img {
        width: 20px !important;
        height: 20px !important;
    }
    
    .cta-contact-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cta-contact-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
}

/* =====================================================
   END MISSING STYLES FOR CONTACT PAGE
   ===================================================== */

/* =====================================================
   MISSING STYLES FOR SERVICES PAGE - Add to style.css
   ===================================================== */

/* Service List Items (checkmark lists in service sections) */
.service-list-item {
    padding: 0.5rem 0 !important;
    list-style: none !important;
    position: relative !important;
    padding-left: 1.5rem !important;
}

.service-list-item::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--primary-yellow) !important;
    font-weight: bold !important;
}

/* Alternative - if checkmark character doesn't display properly */
.list-none.p-0 {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.list-none.p-0 li {
    padding: 0.5rem 0 !important;
    list-style: none !important;
}

/* =====================================================
   END MISSING STYLES FOR SERVICES PAGE
   ===================================================== */

/* =====================================================
   MISSING STYLES FOR ABOUT PAGE - Add to style.css
   ===================================================== */

/* Emoji Icons */
.emoji-icon {
    font-size: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Leadership Layout */
.leadership-layout {
    display: flex !important;
    gap: 3rem !important;
    align-items: flex-start !important;
}

.leadership-sidebar {
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    max-width: 320px !important;
}

.leadership-photo {
    border-radius: 10px !important;
    width: 300px !important;
    height: auto !important;
    max-width: 100% !important;
}

.leadership-bio {
    flex: 1 !important;
}

.leadership-title {
    color: var(--primary-yellow) !important;
    margin-bottom: 2rem !important;
}

.mb-075 {
    margin-bottom: 0.75rem !important;
}

/* Approach Grid */
.approach-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

.approach-number {
    background: linear-gradient(135deg, #FFB800 0%, #D4AF37 100%) !important;
    color: var(--primary-black) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

/* Client Types Dark Section */
.client-types-dark {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
    color: var(--bg-white) !important;
}

.label-yellow {
    color: var(--primary-yellow) !important;
}

.text-white-90 {
    color: rgba(255,255,255,0.9) !important;
}

.text-white-80 {
    color: rgba(255,255,255,0.8) !important;
}

.card-dark {
    background: rgba(255,255,255,0.05) !important;
    border: 2px solid rgba(255,184,0,0.3) !important;
}

/* Engagements Grid */
.engagements-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1rem !important;
}

.font-italic {
    font-style: italic !important;
}

.text-light {
    color: var(--text-light) !important;
}

/* CTA Yellow Gradient */
.cta-yellow-gradient {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-gold) 100%) !important;
    padding: 5rem 0 !important;
    text-align: center !important;
}

.text-black {
    color: var(--primary-black) !important;
}

.cta-yellow-text {
    font-size: 1.25rem !important;
    color: var(--primary-black) !important;
    margin-bottom: 2.5rem !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.btn-black-yellow {
    background-color: var(--primary-black) !important;
    color: var(--primary-yellow) !important;
    border-color: var(--primary-black) !important;
}

.btn-black-yellow:hover {
    background-color: var(--secondary-black) !important;
    color: var(--primary-yellow) !important;
}

/* Responsive Adjustments for About Page */
@media (max-width: 968px) {
    .leadership-layout {
        flex-direction: column !important;
    }
    
    .leadership-sidebar {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .leadership-photo {
        max-width: 300px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr !important;
    }
    
    .engagements-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   END MISSING STYLES FOR ABOUT PAGE
   ===================================================== */