/* ma.css - Modern Akkwa English Version (LTR) */
:root {
  --deep-navy: #0f172a;
  --warm-black: #1e293b;
  --rich-sand: #d6d3d1;
  --terra-cotta: #9f2920;
  --warm-red: #b53b34;
  --gold-accent: #8B6914;
  --warm-gray: #6b7280;
  --cool-gray: #9ca3af;
  --light-sand: #f8f9fa;
  --off-white: #ffffff;
  
  --bg-primary: var(--off-white);
  --bg-secondary: var(--light-sand);
  --text-primary: var(--warm-black);
  --text-secondary: var(--warm-gray);
  --accent-primary: var(--terra-cotta);
  --accent-secondary: var(--gold-accent);
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  direction: ltr;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-align: left;
}

.shell {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* Language Switcher with Icons */
.language-switcher {
  display: flex;
  gap: 8px;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border-light);
  align-items: center;
}

.lang-btn {
  padding: 6px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.lang-btn.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.lang-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(159, 41, 32, 0.2);
}

.lang-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 2px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.title-accent {
  color: var(--accent-primary);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 48rem;
  line-height: 1.6;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
}

.logo-main {
  height: 55px;
  width: auto;
}
/* Mobile Logo Size */
@media (max-width: 768px) {
  .logo-main {
    height: 40px !important; /* Smaller mobile size */
  }
  
  .mobile-language-switcher-header {
    display: block;
    margin-right: 10px;
  }
  
  .mobile-language-switcher-header .language-switcher {
    margin: 0;
    padding: 0;
    border: none;
    gap: 5px;
  }
  
  .main-nav .language-switcher {
    display: none;
  }
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #8B1A1A 100%);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  font-weight: 600;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(159, 41, 32, 0.3);
}

/* Hero Section */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.globe-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  transform: scale(1.1);
  filter: grayscale(100%) brightness(1.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-visual {
  position: relative;
}

.image-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image, .about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover .hero-image,
.image-container:hover .about-image {
  transform: scale(1.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #8B1A1A 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(159, 41, 32, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(159, 41, 32, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
  font-weight: 500;
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-head {
  max-width: 48rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #8B1A1A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.service-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual .image-container {
  margin-left: 2rem;
}

/* Clients Section */
#clients {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.clients-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-intro {
  margin-bottom: 30px;
  text-align: center;
}

.clients-label {
  display: block;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.client-logo {
  background: white;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.client-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.client-logo img {
  max-width: 280px;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.field label.required::after {
  content: ' *';
  color: var(--accent-primary);
}

.field input,
.field select,
.field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--bg-primary);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(159, 41, 32, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.g-recaptcha {
  margin: 0.5rem 0;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #8B1A1A 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 500;
  color: var(--text-primary);
}

.contact-value a {
  color: inherit;
  text-decoration: none;
}

.contact-value a:hover {
  color: var(--accent-primary);
}

/* Help List */
.help-list {
  list-style: none;
}

.help-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.help-list li:last-child {
  border-bottom: none;
}

.help-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
}

/* Footer */
.site-footer {
  background: var(--deep-navy);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--cool-gray);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--cool-gray);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  text-align: center;
  color: var(--cool-gray);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
  padding: 80px 20px 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent-primary);
}

/* Mobile Menu Contact Button - RED COLOR */
.mobile-menu .nav-cta {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #8B1A1A 100%) !important;
  color: white !important;
  border-radius: 6px;
  padding: 12px 20px !important;
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  border: 2px solid var(--accent-primary) !important;
  transition: all 0.3s ease;
}

.mobile-menu .nav-cta:hover {
  background: transparent !important;
  color: var(--accent-primary) !important;
}

body.menu-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .language-switcher {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
  }
  
  .lang-icon {
    width: 20px;
    height: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .about-visual .image-container {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .clients-logos {
    grid-template-columns: 1fr;
  }
}
/* Mobile Language Switcher in Header */
.mobile-language-switcher-header {
  display: none;
}

@media (max-width: 768px) {
  .mobile-language-switcher-header {
    display: block;
    margin-right: 10px;
  }
  
  .mobile-language-switcher-header .language-switcher {
    margin: 0;
    padding: 0;
    border: none;
    gap: 5px;
  }
  
  /* Hide desktop language switcher on mobile */
  .main-nav .language-switcher {
    display: none;
  }
}

.approach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.approach-text {
  max-width: 100%;
}

.approach-text .section-title {
  text-align: left;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 500;
}

.approach-text .section-description {
  text-align: left;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 100%;
}
/* Section Head with Image - PRESERVE ORIGINAL CENTERED STYLING */
.section-head-with-image {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.section-text {
  text-align: center;
  max-width: 100%;
}

.section-text .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.section-text .section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 48rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}

.section-image .image-container {
  margin: 0;
}

@media (max-width: 768px) {
  .section-head-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Approach section uses the site's section/section-alt spacing & bg */
.ma-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}


.ma-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ma-approach-header {
  text-align: center;
  margin-bottom: 48px;
}

.ma-approach-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #16213e;
}

.ma-approach-header p {
  max-width: 640px;
  margin: 0 auto;
  color: #5b6475;
  line-height: 1.6;
}

/* Cards layout */
.ma-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.ma-step {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
}

/* Number + line on top */
.ma-step-top {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.ma-step-number {
  font-weight: 600;
  color: #c5402c; /* accent colour – adjust to your brand */
  margin-right: 12px;
  letter-spacing: 0.14em;
  font-size: 14px;
}

.ma-step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(203, 213, 225, 0.4), rgba(148, 163, 184, 0.9));
}

.ma-step-title {
  font-size: 18px;
  margin: 0 0 10px;
  color: #1f2933;
}

.ma-step-text {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: 14px;
}

/* Small screens */
@media (max-width: 640px) {
  .ma-approach {
    padding: 56px 16px;
  }

  .ma-step {
    padding: 24px 20px;
  }

  .ma-approach-header h2 {
    font-size: 26px;
  }
}
/* Make ALL section card titles red (Services + Highlights + Approach) */
.ma-step-title,
.service-card h3,
.highlight-card h3 {
  color: var(--accent-primary) !important;
}

/* ABOUT SECTION – restore red styling & stats look */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-pillars {
  display: grid;
  gap: 2rem;
}

/* Pillar titles in red */
.pillar h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--accent-primary); /* same as #9f2920 */
  font-weight: 600;
}

.pillar p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About image & stats */
.about-visual .image-container {
  margin-left: 2rem;
}

.about-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* Stats row under the image */
.experience-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
}

.stat {
  text-align: center;
}

/* Big bold red 45+ / 100+ */
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
}

/* ABOUT / HANDSHAKE IMAGE – rounded & full bleed */
.about-visual .visual-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-visual .visual-container .about-image,
.about-visual .visual-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual .image-container {
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
}

.hero-visual .image-container,
.hero-visual .image-container:hover {
  transform: none !important;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15); /* keep the nice shadow */
  border: none !important;          /* remove the thin white border */
  background: transparent !important;
  overflow: hidden;                 /* clip anything inside */
}
.hero-visual .hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Stop hero-image from zooming */
.hero-visual .image-container:hover .hero-image {
  transform: none !important;
}
