/* ==========================================================================
   CBA GLOBAL STYLES — COMPLETE STYLESHEET
   Creative Broadcast Agency | creativebroadcast.ae
   Version: 1.0.0

   This file contains ALL shared CBA component styles.
   Upload to: /wp-content/themes/Divi-child/cba-global-styles.css
   Enqueue via functions.php (see implementation guide)

   After uploading:
   1. Clear hero CSS from Divi → Theme Options → Integration → <head>
   2. Clear flip card CSS from Divi → Theme Options → Integration → <body>
   3. Remove all <style> blocks from Divi Code Modules
   ========================================================================== */


/* ==========================================================================
   0. GLOBAL SECTION HEADINGS (default for all modules)
   ========================================================================== */







   .cba-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-align: center;
}
.orange {
  color: #EA6121;
}
.cba-section-subtitle {
  font-size: 17px;
  color: #94A3B8;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cba-section-title { font-size: 26px; }
}

/* --- Global content block (body text used on location/service/glossary pages) --- */
.cba-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-content p {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 20px;
}
.cba-content a {
  color: #EA6121;
  text-decoration: none;
}
.cba-content a:hover {
  color: #D45519;
  text-decoration: underline;
}


/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.cba-hero {
  text-align: center;
  padding: 0 20px;
}
.cba-hero-eyebrow {
  color: #EA6121;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cba-hero-eyebrow span {
  width: 40px;
  height: 2px;
  background: #EA6121;
}
.cba-hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
/* .orange is now global — defined in Section 0 */
.cba-hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cba-hero-subtitle strong {
  color: #FFFFFF;
  font-weight: 600;
}
.cba-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cba-hero-btn {
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.cba-hero-btn-primary {
  background: #EA6121;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(234, 97, 33, 0.4);
}
.cba-hero-btn-primary:hover {
  background: #D45519;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(234, 97, 33, 0.5);
  color: #FFFFFF;
}
/* Shiny sweep effect */
.cba-hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.cba-hero-btn-primary:hover::before {
  left: 100%;
}
.cba-hero-btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.cba-hero-btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.cba-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.cba-hero-stat {
  text-align: center;
}
.cba-hero-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #EA6121;
  line-height: 1;
}
.cba-hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* Hero Mobile */
@media (max-width: 768px) {
  .cba-hero h1 {
    font-size: 32px;
  }
  .cba-hero-subtitle {
    font-size: 16px;
  }
  .cba-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .cba-hero-eyebrow span {
    width: 24px;
  }
  .cba-hero-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  .cba-hero-stats {
    gap: 30px;
  }
  .cba-hero-stat-number {
    font-size: 36px;
  }
  .cba-hero-stat-label {
    font-size: 11px;
  }
}


/* ==========================================================================
   2. FLIP CARDS
   ========================================================================== */
.flip-card {
  width: 100%;
  height: 420px;
  perspective: 1000px;
  margin-bottom: 0;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
  box-sizing: border-box;
}
/* Front Side */
.flip-card-front {
  background-color: #12203E;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.flip-card-front .flip-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(18,32,62,0.2) 0%, rgba(18,32,62,0.85) 100%);
  border-radius: 16px;
}
.flip-card-front h3 {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
/* Back Side */
.flip-card-back {
  background: linear-gradient(135deg, #1E293B 0%, #12203E 100%);
  padding: 30px;
  transform: scale(0.8);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(234, 97, 33, 0.2);
}
/* Orange glow border effect */
.flip-card-back::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(234, 97, 33, 0.4) 0%, rgba(234, 97, 33, 0.05) 50%, rgba(234, 97, 33, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.flip-card-back h3 {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.flip-card-back p {
  color: #94A3B8;
  font-size: 15px;
  line-height: 1.7em;
  margin: 0 0 20px 0;
}
/* Orange Button */
.flip-card-btn {
  display: inline-block;
  background-color: #EA6121;
  color: #FFFFFF !important;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(234, 97, 33, 0.3);
}
.flip-card-btn:hover {
  background-color: #D45519;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 97, 33, 0.4);
}
/* Hover Animation - Zoom Fade */
.flip-card:hover .flip-card-front {
  opacity: 0;
  transform: scale(1.05);
}
.flip-card:hover .flip-card-back {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

/* Flip Card Mobile */
@media (max-width: 767px) {
  .flip-card {
    height: auto;
  }
  .flip-card-front,
  .flip-card-back {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
  }
  .flip-card-front {
    height: 200px;
    border-radius: 16px 16px 0 0;
  }
  .flip-card-back {
    border-radius: 0 0 16px 16px;
    padding: 24px;
  }
  .flip-card-back::before {
    border-radius: 0 0 17px 17px;
  }
  .flip-card-front h3 { font-size: 20px; }
  .flip-card-back h3 { font-size: 18px; }
  .flip-card-back p { font-size: 14px; }
}


/* ==========================================================================
   3. LOCATION BADGE
   ========================================================================== */
.cba-location-badge {
  background: linear-gradient(135deg, #1E293B 0%, #12203E 100%);
  border-radius: 16px;
  padding: 24px 50px;
  text-align: center;
  border: 1px solid rgba(234, 97, 33, 0.2);
  display: inline-block;
}
.cba-location-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 97, 33, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.cba-location-icon svg {
  width: 28px;
  height: 28px;
  stroke: #EA6121;
  fill: none;
  stroke-width: 1.5;
}
.cba-location-city {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}
.cba-location-tagline {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 14px;
}
.cba-location-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cba-location-stat {
  text-align: center;
}
.cba-location-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #EA6121;
}
.cba-location-stat-label {
  font-size: 10px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}


/* ==========================================================================
   4. SERVICES GRID (wrapper for flip cards)
   ========================================================================== */
.cba-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .cba-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cba-services-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   5. PLATFORMS GRID
   ========================================================================== */
.cba-platforms-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cba-platforms-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cba-platforms-subtitle {
  font-size: 17px;
  color: #94A3B8;
  margin-bottom: 40px;
}
.cba-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cba-platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(234, 97, 33, 0.08);
  transition: all 0.3s ease;
}
.cba-platform-item:hover {
  background: rgba(234, 97, 33, 0.15);
  transform: translateY(-5px);
}
.cba-platform-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 97, 33, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cba-platform-icon svg {
  width: 28px;
  height: 28px;
  stroke: #EA6121;
  fill: none;
  stroke-width: 1.5;
}
.cba-platform-name {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}
.cba-platform-link {
  font-size: 12px;
  color: #EA6121;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cba-platform-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cba-platforms-section h2 { font-size: 28px; }
  .cba-platform-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}


/* ==========================================================================
   6. FEATURES LIST
   ========================================================================== */
.cba-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.cba-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cba-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cba-feature-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(234, 97, 33, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cba-feature-check svg {
  width: 16px;
  height: 16px;
  stroke: #EA6121;
  stroke-width: 3;
}
.cba-feature-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}
.cba-feature-text p {
  font-size: 14px;
  color: #94A3B8;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cba-features { grid-template-columns: 1fr; }
}


/* ==========================================================================
   7. PROCESS GRID (circle steps — used on homepage + all location pages)
   ========================================================================== */
.cba-process-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-process-header {
  text-align: center;
  margin-bottom: 50px;
}
.cba-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-process-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.cba-step {
  text-align: center;
}
.cba-step-num {
  width: 80px;
  height: 80px;
  background: rgba(234, 97, 33, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  font-weight: 700;
  color: #EA6121;
  transition: all 0.3s ease;
}
.cba-step:hover .cba-step-num {
  background: #EA6121;
  color: #FFFFFF;
  transform: scale(1.1);
}
.cba-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cba-step p {
  font-size: 14px;
  color: #94A3B8;
  margin: 0;
  line-height: 1.5;
}
.cba-process-footer {
  text-align: center;
  margin-top: 50px;
}
/* --- Global buttons (reusable across all sections) --- */

/* Primary: solid orange gradient + shiny sweep */
.cba-btn-primary {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(135deg, #EA6121 0%, #D45519 100%);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(234, 97, 33, 0.4);
}
.cba-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(234, 97, 33, 0.5);
  color: #FFFFFF;
}
.cba-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.cba-btn-primary:hover::before {
  left: 100%;
}

/* Outline: ghost border, fills orange on hover */
.cba-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(234, 97, 33, 0.5);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #EA6121;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cba-btn-outline:hover {
  background: #EA6121;
  border-color: #EA6121;
  color: #FFFFFF;
}

/* Button wrapper (centers any button below a section) */
.cba-btn-wrapper {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .cba-process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .cba-process-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================================
   8. FAQ ACCORDION
   ========================================================================== */
.cba-faq-section {
  max-width: 800px;
  margin: 0 auto;
}
.cba-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.cba-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.cba-faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  flex: 1;
}
.cba-faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(234, 97, 33, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EA6121;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.3s ease;
}
.cba-faq-item.active .cba-faq-toggle {
  background: #EA6121;
  color: #FFFFFF;
  transform: rotate(45deg);
}
.cba-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cba-faq-item.active .cba-faq-answer {
  max-height: 300px;
}
.cba-faq-answer p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
  padding-top: 14px;
  margin: 0;
}


/* ==========================================================================
   9. FINAL CTA
   ========================================================================== */
.cba-cta-final {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}
.cba-cta-final h2 {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.cba-cta-final p {
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 32px;
  line-height: 1.6;
}
.cba-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cba-cta-btn {
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cba-cta-btn-primary {
  background: #EA6121;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(234, 97, 33, 0.4);
}
.cba-cta-btn-primary:hover {
  background: #D45519;
  transform: translateY(-2px);
  color: #FFFFFF;
}
.cba-cta-btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}
.cba-cta-btn-whatsapp:hover {
  background: #1FB855;
  transform: translateY(-2px);
  color: #FFFFFF;
}


/* ==========================================================================
   10. BLOG / INSIGHTS GRID
   ========================================================================== */
.cba-blog-section {
  max-width: 1000px;
  margin: 0 auto;
}
.cba-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.cba-blog-card {
  background: #1E293B;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.cba-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 97, 33, 0.3);
}
.cba-blog-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.cba-blog-card p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.cba-blog-card a {
  color: #EA6121;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.cba-blog-card a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cba-blog-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   11. (RETIRED — merged into Section 19: GCC Coverage Map)
   ========================================================================== */


/* ==========================================================================
   12. SERVICE AREAS
   ========================================================================== */
.cba-service-areas {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cba-service-areas h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cba-service-areas-subtitle {
  font-size: 17px;
  color: #94A3B8;
  margin-bottom: 30px;
}
.cba-areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.cba-area-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  background: #0F172A;
  border: 1px solid rgba(234, 97, 33, 0.2);
  transition: all 0.3s ease;
}
.cba-area-tag:hover {
  border-color: #EA6121;
  background: rgba(234, 97, 33, 0.1);
}


/* ==========================================================================
   13. VENUES GRID
   ========================================================================== */
.cba-venues {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-venues-header {
  text-align: center;
  margin-bottom: 48px;
}
.cba-venues-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cba-venues-header p {
  font-size: 17px;
  color: #94A3B8;
}
.cba-venues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.cba-venue-card {
  background: linear-gradient(135deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(234, 97, 33, 0.15);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cba-venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(234, 97, 33, 0.2);
}
.cba-venue-icon {
  width: 60px;
  height: 60px;
  background: rgba(234, 97, 33, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cba-venue-icon svg {
  width: 32px;
  height: 32px;
  stroke: #EA6121;
  fill: none;
  stroke-width: 1.5;
}
.cba-venue-name {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cba-venue-info {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .cba-venues-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cba-venues-header h2 { font-size: 28px; }
  .cba-venues-grid { grid-template-columns: 1fr; }
  .cba-venue-card { padding: 24px; }
}


/* ==========================================================================
   14. CASE STUDIES
   ========================================================================== */
.cba-case-studies {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-case-studies-header {
  text-align: center;
  margin-bottom: 60px;
}
.cba-case-studies-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.cba-case-studies-header p {
  font-size: 17px;
  color: #94A3B8;
}
.cba-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.cba-case-card {
  background: linear-gradient(135deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(234, 97, 33, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cba-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(234, 97, 33, 0.2);
}
.cba-case-image {
  width: 100%;
  height: 220px;
  background: rgba(234, 97, 33, 0.1);
  overflow: hidden;
  position: relative;
}
.cba-case-image .cba-case-category {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
}
.cba-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cba-case-content {
  padding: 32px;
}
.cba-case-category {
  display: inline-block;
  background: rgba(234, 97, 33, 0.15);
  color: #EA6121;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.cba-case-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.cba-case-description {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 20px;
}
.cba-case-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cba-case-detail {
  font-size: 13px;
}
.cba-case-detail-label {
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cba-case-detail-value {
  font-size: 16px;
  font-weight: 700;
  color: #EA6121;
}
@media (max-width: 768px) {
  .cba-case-grid { grid-template-columns: 1fr; }
}
.cba-case-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .cba-case-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cba-case-grid-3 { grid-template-columns: 1fr; }
}
.cba-case-location {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}


/* ==========================================================================
   15. LOGO MARQUEE / TRUSTED BY SCROLLER
   ========================================================================== */
.cba-logo-wrapper {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #1e293b;
  padding: 50px 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cba-logo-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}
.cba-logo-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: scroll-logos 35s linear infinite;
  width: fit-content;
}
.cba-logo-track img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.cba-logo-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}
.cba-logo-wrapper:hover .cba-logo-track {
  animation-play-state: paused;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ==========================================================================
   16. WHY CBA / SERVICE USP CARDS
   ========================================================================== */
.cba-svc-why {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-why-header {
  text-align: center;
  margin-bottom: 50px;
}
.cba-svc-why-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cba-svc-why-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.cba-svc-why-subtitle {
  font-size: 16px;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.cba-svc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cba-svc-why-card {
  background: linear-gradient(145deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s ease;
}
.cba-svc-why-card:hover {
  border-color: rgba(234, 97, 33, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.cba-svc-why-icon {
  width: 64px;
  height: 64px;
  background: rgba(234, 97, 33, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: all 0.3s ease;
}
.cba-svc-why-card:hover .cba-svc-why-icon {
  background: rgba(234, 97, 33, 0.25);
  transform: scale(1.1);
}
.cba-svc-why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.cba-svc-why-card-desc {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .cba-svc-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
  .cba-svc-why-grid { grid-template-columns: 1fr; }
  .cba-svc-why-title { font-size: 28px; }
}


/* ==========================================================================
   17. PLATFORM LINKS (homepage — SVG brand icons with links)
   ========================================================================== */
.cba-platforms-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cba-platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.cba-platform-link:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.cba-platform-link svg {
  width: 40px;
  height: 40px;
  fill: #FFFFFF;
}
.cba-platform-link:hover svg {
  fill: #EA6121;
}
.cba-platform-label {
  font-size: 11px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cba-platform-link:hover .cba-platform-label {
  color: #EA6121;
}


/* ==========================================================================
   18. SKILL TREE EXPLORER (scoped under #cba-skill-explorer)
   ========================================================================== */
#cba-skill-explorer { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }
#cba-skill-explorer * { box-sizing: border-box; }
/* Header */
#cba-skill-explorer .skx-header { text-align: center; margin-bottom: 48px; }
#cba-skill-explorer .skx-label { color: #EA6121; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
#cba-skill-explorer .skx-title { font-size: 36px; font-weight: 700; color: #FFFFFF; margin-bottom: 16px; line-height: 1.2; }
#cba-skill-explorer .skx-subtitle { font-size: 16px; color: #94A3B8; max-width: 640px; margin: 0 auto; line-height: 1.6; }
/* Category Pills */
#cba-skill-explorer .skx-cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
#cba-skill-explorer .skx-cat { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; background: linear-gradient(145deg, #1E293B 0%, #12203E 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 50px; cursor: pointer; transition: all 0.3s ease; user-select: none; }
#cba-skill-explorer .skx-cat:hover { border-color: #EA6121; background: rgba(234,97,33,0.06); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
#cba-skill-explorer .skx-cat.active { border-color: #EA6121; background: rgba(234,97,33,0.12); box-shadow: 0 0 20px rgba(234,97,33,0.15); }
#cba-skill-explorer .skx-cat-icon { font-size: 20px; line-height: 1; }
#cba-skill-explorer .skx-cat-name { font-size: 15px; font-weight: 600; color: #FFFFFF; transition: color 0.3s ease; }
#cba-skill-explorer .skx-cat:hover .skx-cat-name,
#cba-skill-explorer .skx-cat.active .skx-cat-name { color: #EA6121; }
#cba-skill-explorer .skx-cat-count { background: rgba(234,97,33,0.2); color: #EA6121; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; }
/* Panel (level 1) */
#cba-skill-explorer .skx-panel { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease; margin-top: 0; }
#cba-skill-explorer .skx-panel.visible { max-height: 2000px; opacity: 1; margin-top: 32px; }
#cba-skill-explorer .skx-panel-inner { background: linear-gradient(160deg, #1E293B 0%, #12203E 100%); border: 1px solid rgba(234,97,33,0.15); border-radius: 20px; padding: 36px; }
#cba-skill-explorer .skx-panel-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
#cba-skill-explorer .skx-panel-icon { font-size: 28px; }
#cba-skill-explorer .skx-panel-title { font-size: 24px; font-weight: 700; color: #FFFFFF; }
#cba-skill-explorer .skx-panel-desc { font-size: 15px; color: #94A3B8; line-height: 1.7; margin-bottom: 28px; max-width: 700px; }
/* Tree connector */
#cba-skill-explorer .skx-tree { position: relative; padding-left: 24px; border-left: 2px solid rgba(234,97,33,0.2); display: flex; flex-direction: column; gap: 0; }
/* Branch (level 1) */
#cba-skill-explorer .skx-branch { position: relative; }
#cba-skill-explorer .skx-branch-bar { display: flex; align-items: center; gap: 14px; padding: 14px 20px; background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; position: relative; margin-bottom: 8px; }
#cba-skill-explorer .skx-branch-bar::before { content: ''; position: absolute; left: -25px; top: 50%; width: 24px; height: 2px; background: rgba(234,97,33,0.25); }
#cba-skill-explorer .skx-branch-bar:hover { border-color: #EA6121; background: rgba(234,97,33,0.06); transform: translateX(6px); }
#cba-skill-explorer .skx-branch-bar.active { border-color: #EA6121; background: rgba(234,97,33,0.08); }
#cba-skill-explorer .skx-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; transition: all 0.3s ease; }
#cba-skill-explorer .skx-dot.service { background: #EA6121; }
#cba-skill-explorer .skx-dot.glossary { background: #818CF8; }
#cba-skill-explorer .skx-dot.article { background: #4ADE80; }
#cba-skill-explorer .skx-dot.case-study { background: #FBBF24; }
#cba-skill-explorer .skx-branch-bar:hover .skx-dot { box-shadow: 0 0 10px currentColor; }
#cba-skill-explorer .skx-branch-info { flex: 1; min-width: 0; }
#cba-skill-explorer .skx-branch-name { font-size: 15px; font-weight: 600; color: #FFFFFF; transition: color 0.3s ease; margin-bottom: 2px; }
#cba-skill-explorer .skx-branch-bar:hover .skx-branch-name { color: #EA6121; }
#cba-skill-explorer .skx-branch-snippet { font-size: 13px; color: #64748B; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#cba-skill-explorer .skx-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 20px; flex-shrink: 0; }
#cba-skill-explorer .skx-badge.service { background: rgba(234,97,33,0.15); color: #EA6121; }
#cba-skill-explorer .skx-badge.glossary { background: rgba(99,102,241,0.15); color: #818CF8; }
#cba-skill-explorer .skx-badge.article { background: rgba(34,197,94,0.15); color: #4ADE80; }
#cba-skill-explorer .skx-badge.case-study { background: rgba(251,191,36,0.15); color: #FBBF24; }
#cba-skill-explorer .skx-chevron { color: #64748B; font-size: 14px; transition: all 0.3s ease; flex-shrink: 0; font-weight: 700; }
#cba-skill-explorer .skx-branch-bar:hover .skx-chevron { color: #EA6121; }
#cba-skill-explorer .skx-branch-bar.active .skx-chevron { transform: rotate(90deg); color: #EA6121; }
/* Sub-tree (level 2) */
#cba-skill-explorer .skx-sub { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease; padding-left: 32px; margin-left: 5px; border-left: 2px solid rgba(234,97,33,0.12); }
#cba-skill-explorer .skx-sub.open { max-height: 600px; opacity: 1; padding-bottom: 8px; }
#cba-skill-explorer .skx-leaf { display: flex; align-items: center; gap: 12px; padding: 10px 16px; margin-bottom: 4px; background: rgba(15,23,42,0.4); border: 1px solid rgba(255,255,255,0.03); border-radius: 10px; text-decoration: none; transition: all 0.3s ease; position: relative; }
#cba-skill-explorer .skx-leaf::before { content: ''; position: absolute; left: -33px; top: 50%; width: 32px; height: 2px; background: rgba(234,97,33,0.15); }
#cba-skill-explorer .skx-leaf:hover { border-color: rgba(234,97,33,0.4); background: rgba(234,97,33,0.04); transform: translateX(4px); }
#cba-skill-explorer .skx-leaf-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
#cba-skill-explorer .skx-leaf-dot.glossary { background: #818CF8; }
#cba-skill-explorer .skx-leaf-dot.article { background: #4ADE80; }
#cba-skill-explorer .skx-leaf-dot.service { background: #EA6121; }
#cba-skill-explorer .skx-leaf-dot.case-study { background: #FBBF24; }
#cba-skill-explorer .skx-leaf-name { font-size: 13px; font-weight: 500; color: #CBD5E1; flex: 1; transition: color 0.3s ease; }
#cba-skill-explorer .skx-leaf:hover .skx-leaf-name { color: #EA6121; }
#cba-skill-explorer .skx-leaf-badge { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
#cba-skill-explorer .skx-leaf-badge.glossary { background: rgba(99,102,241,0.12); color: #818CF8; }
#cba-skill-explorer .skx-leaf-badge.article { background: rgba(34,197,94,0.12); color: #4ADE80; }
#cba-skill-explorer .skx-leaf-badge.service { background: rgba(234,97,33,0.12); color: #EA6121; }
#cba-skill-explorer .skx-leaf-badge.case-study { background: rgba(251,191,36,0.12); color: #FBBF24; }
#cba-skill-explorer .skx-leaf-arrow { color: #475569; font-size: 13px; flex-shrink: 0; transition: all 0.3s ease; }
#cba-skill-explorer .skx-leaf:hover .skx-leaf-arrow { color: #EA6121; transform: translateX(3px); }
/* Branch CTA */
#cba-skill-explorer .skx-branch-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; margin-bottom: 12px; margin-left: 4px; padding: 8px 18px; background: rgba(234,97,33,0.1); border: 1px solid rgba(234,97,33,0.25); border-radius: 50px; color: #EA6121; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
#cba-skill-explorer .skx-branch-cta:hover { background: rgba(234,97,33,0.18); border-color: #EA6121; transform: translateX(4px); }
#cba-skill-explorer .skx-branch-cta span { transition: transform 0.3s ease; }
#cba-skill-explorer .skx-branch-cta:hover span { transform: translateX(3px); }
/* Legend */
#cba-skill-explorer .skx-legend { display: flex; justify-content: center; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
#cba-skill-explorer .skx-legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #64748B; }
#cba-skill-explorer .skx-legend-dot { width: 8px; height: 8px; border-radius: 50%; }
/* Responsive */
@media (max-width: 768px) {
  #cba-skill-explorer { padding: 50px 16px; }
  #cba-skill-explorer .skx-title { font-size: 28px; }
  #cba-skill-explorer .skx-cat { padding: 12px 20px; }
  #cba-skill-explorer .skx-cat-name { font-size: 13px; }
  #cba-skill-explorer .skx-panel-inner { padding: 24px 20px; }
  #cba-skill-explorer .skx-panel-title { font-size: 20px; }
  #cba-skill-explorer .skx-branch-snippet { display: none; }
  #cba-skill-explorer .skx-branch-bar { padding: 12px 16px; }
  #cba-skill-explorer .skx-sub { padding-left: 20px; }
}
@media (max-width: 480px) {
  #cba-skill-explorer .skx-cats { gap: 8px; }
  #cba-skill-explorer .skx-cat { padding: 10px 16px; }
  #cba-skill-explorer .skx-cat-count { display: none; }
}


/* ==========================================================================
   19. GCC COVERAGE MAP (homepage — flag pills with links)
   ========================================================================== */
.cba-svc-coverage {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-coverage-header {
  text-align: center;
  margin-bottom: 40px;
}
.cba-svc-coverage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cba-svc-coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(145deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cba-svc-coverage-tag:hover {
  border-color: #EA6121;
  background: rgba(234, 97, 33, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cba-svc-coverage-flag {
  font-size: 22px;
}
.cba-svc-coverage-name {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}
.cba-svc-coverage-tag:hover .cba-svc-coverage-name {
  color: #EA6121;
}
.cba-svc-coverage-badge {
  background: rgba(234, 97, 33, 0.2);
  color: #EA6121;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Active state — highlight the current location on location pages */
.cba-svc-coverage-tag.active {
  border-color: #EA6121;
  background: rgba(234, 97, 33, 0.15);
}
.cba-svc-coverage-tag.active .cba-svc-coverage-name {
  color: #EA6121;
}
@media (max-width: 550px) {
  .cba-svc-coverage-tag { padding: 14px 22px; }
}


/* ==========================================================================
   20. INDUSTRY CARDS (icon-based flip cards for location/service pages)
   ========================================================================== */
.cba-industry {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-industry-header {
  text-align: center;
  margin-bottom: 50px;
}
.cba-industry-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cba-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cba-industry-card {
  perspective: 1000px;
  height: 280px;
}
.cba-industry-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.cba-industry-card:hover .cba-industry-card-inner {
  transform: rotateY(180deg);
}
.cba-industry-card-front,
.cba-industry-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.cba-industry-card-front {
  background: linear-gradient(145deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.cba-industry-card:hover .cba-industry-card-front {
  border-color: rgba(234, 97, 33, 0.3);
}
.cba-industry-card-back {
  background: linear-gradient(145deg, #1E293B 0%, #12203E 100%);
  border: 2px solid #EA6121;
  transform: rotateY(180deg);
  justify-content: space-between;
}
.cba-industry-card-back::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(234,97,33,0.2), transparent);
  z-index: -1;
  filter: blur(20px);
}
.cba-industry-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 97, 33, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cba-industry-icon svg {
  width: 28px;
  height: 28px;
  stroke: #EA6121;
  fill: none;
  stroke-width: 1.5;
}
.cba-industry-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.cba-industry-teaser {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.55;
  flex-grow: 1;
}
.cba-industry-back-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.cba-industry-back-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
  flex-grow: 1;
}
.cba-industry-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #EA6121;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.cba-industry-back-link:hover {
  gap: 12px;
  color: #EA6121;
}
@media (max-width: 900px) {
  .cba-industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cba-industry-grid { grid-template-columns: 1fr; }
  .cba-industry-card { height: 260px; }
}


/* ==========================================================================
   21. CONTENT INTRO (2-column with highlights sidebar)
   ========================================================================== */
.cba-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.cba-intro-text p {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.8;
  margin-bottom: 20px;
}
.cba-intro-text p:last-child {
  margin-bottom: 0;
}
.cba-intro-text strong {
  color: #FFFFFF;
  font-weight: 600;
}
.cba-intro-text a {
  color: #EA6121;
  text-decoration: none;
}
.cba-intro-text a:hover {
  text-decoration: underline;
}
.cba-intro-highlights {
  background: linear-gradient(135deg, #1E293B 0%, #12203E 100%);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(234, 97, 33, 0.2);
}
.cba-intro-highlights h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cba-intro-highlights h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: #EA6121;
  border-radius: 2px;
}
.cba-intro-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.cba-intro-highlight-item:last-child {
  margin-bottom: 0;
}
.cba-intro-highlight-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cba-intro-highlight-icon svg {
  width: 24px;
  height: 24px;
  stroke: #EA6121;
  fill: none;
  stroke-width: 2;
}
.cba-intro-highlight-text {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.5;
}
.cba-intro-highlight-text strong {
  color: #FFFFFF;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cba-intro-grid { grid-template-columns: 1fr; gap: 30px; }
}


/* ==========================================================================
   22. NAVIGATION — Phase 1 SEO-Friendly Flexbox Nav
   Replaces old hamburger-only menu. All links visible to crawlers.
   Header creates its OWN stacking context — no more z-index: auto on #page-container.
   ========================================================================== */

/* --- Remove old hamburger overrides --- */
/* DELETE these from Divi Integrations if they still exist:
   #page-container { z-index: auto !important; isolation: auto !important; }
   .et_pb_section { z-index: auto !important; transform-style: flat !important; }
*/

/* --- Hide Divi default header background --- */
.et-l--header,
.et-l--header .et_pb_section,
.et-l--header .et_pb_row {
  background: transparent !important;
  padding: 0 !important;
}
.et-l--header .et_pb_section {
  position: absolute !important;
  width: 100% !important;
}

/* --- Header Bar --- */
.cba-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 16px 30px;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate; /* creates stacking context HERE only */
}
.cba-nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.cba-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo --- */
.cba-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.cba-nav-logo img {
  height: 44px;
  width: auto;
}
.cba-nav-logo-text {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* --- Desktop Nav Links --- */
.cba-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.cba-nav-links > a,
.cba-nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cba-nav-links > a:hover,
.cba-nav-dropdown-toggle:hover {
  color: #EA6121;
}
.cba-nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}
.cba-nav-dropdown.open .cba-nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

/* --- CTA Button --- */
.cba-nav-cta {
  background: #EA6121 !important;
  color: #FFFFFF !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}
.cba-nav-cta:hover {
  background: #D45519 !important;
  transform: translateY(-1px);
}

/* --- Desktop Dropdown --- */
.cba-nav-dropdown {
  position: relative;
}
.cba-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #1E293B;
  border: 1px solid rgba(234, 97, 33, 0.2);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.cba-nav-dropdown.open .cba-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.cba-nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease, background 0.2s ease;
}
.cba-nav-dropdown-menu a:hover {
  color: #EA6121;
  background: rgba(234, 97, 33, 0.08);
}

/* --- Hamburger Button (mobile only) --- */
.cba-nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.cba-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  position: absolute;
  left: 11px;
  transition: 0.3s ease;
}
.cba-nav-burger span:nth-child(1) { top: 13px; }
.cba-nav-burger span:nth-child(2) { top: 21px; }
.cba-nav-burger span:nth-child(3) { top: 29px; }
.cba-nav-burger.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.cba-nav-burger.active span:nth-child(2) { opacity: 0; }
.cba-nav-burger.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* --- Mobile Menu (always in DOM, hidden via transform) --- */
.cba-nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0F172A;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  visibility: hidden;
}
.cba-nav-mobile.open {
  transform: translateX(0);
  visibility: visible;
}
.cba-nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cba-nav-mobile-links > a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.cba-nav-mobile-links > a:hover {
  color: #EA6121;
}

/* --- Mobile Sub-Menu --- */
.cba-nav-mobile-group {
  text-align: center;
}
.cba-nav-mobile-toggle {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.cba-nav-mobile-toggle:hover {
  color: #EA6121;
}
.cba-nav-mobile-toggle svg {
  transition: transform 0.3s ease;
}
.cba-nav-mobile-group.open .cba-nav-mobile-toggle svg {
  transform: rotate(180deg);
}
.cba-nav-mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cba-nav-mobile-group.open .cba-nav-mobile-sub {
  max-height: 500px;
  padding-top: 12px;
}
.cba-nav-mobile-sub a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.2s ease;
}
.cba-nav-mobile-sub a:hover {
  color: #EA6121;
}

/* --- Mobile Socials --- */
.cba-nav-mobile-socials {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 24px;
}
.cba-nav-mobile-socials a {
  display: flex;
}
.cba-nav-mobile-socials svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.2s ease;
}
.cba-nav-mobile-socials a:hover svg {
  fill: #EA6121;
}

/* --- Responsive: Show burger, hide desktop links --- */
@media (max-width: 960px) {
  .cba-nav-links { display: none; }
  .cba-nav-burger { display: block; }
  .cba-nav { padding: 12px 16px; }
  .cba-nav.scrolled { padding: 8px 16px; }
  .cba-nav-logo img { height: 38px; }
  .cba-nav-logo-text { font-size: 0.85rem; }
}

/* =====================================================
   SECTION 23: GLOSSARY PAGES
   - Badge, related topics pills
   - Content uses .cba-content (Section 0)
   - FAQ uses .cba-faq-section (Section 8)
   - CTA uses .cba-cta-final (Section 9)
   ===================================================== */

.cba-gloss-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(234, 97, 33, 0.1);
  color: #EA6121;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 16px;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cba-gloss-badge + .cba-section-title + .cba-content {
  margin-bottom: 60px;
}

.cba-gloss-badge + .cba-section-title + .cba-content p {
  color: #CBD5E1;
  font-size: 16px;
  line-height: 1.8;
}

.cba-gloss-related {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cba-gloss-related a {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid #EA6121;
  color: #EA6121;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cba-gloss-related a:hover {
  background: #EA6121;
  color: #FFFFFF;
}

/* ===================================================
   SECTION 24: GLOSSARY INDEX PAGE
   Main glossary listing page with categorised card grid.
   Uses: .cba-gloss-index-* classes
   =================================================== */

.cba-gloss-index {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cba-gloss-index-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(234, 97, 33, 0.1);
  color: #EA6121;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cba-gloss-index-title {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 12px;
}

.cba-gloss-index-subtitle {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 48px;
}

.cba-gloss-index-section-label {
  font-size: 14px;
  font-weight: 700;
  color: #EA6121;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(234, 97, 33, 0.2);
}

.cba-gloss-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.cba-gloss-index-card {
  background: #1E293B;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: block;
}

.cba-gloss-index-card:hover {
  border-color: #EA6121;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cba-gloss-index-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.cba-gloss-index-card:hover .cba-gloss-index-card-title {
  color: #EA6121;
}

.cba-gloss-index-card-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

.cba-gloss-index-cta {
  text-align: center;
  padding: 48px 20px;
  margin-top: 20px;
}

.cba-gloss-index-cta-heading {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cba-gloss-index-cta-sub {
  font-size: 16px;
  color: #94A3B8;
  margin-bottom: 24px;
}

.cba-gloss-index-cta-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #EA6121;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #EA6121;
}

.cba-gloss-index-cta-button:hover {
  background-color: transparent;
  color: #EA6121;
}

@media (max-width: 768px) {
  .cba-gloss-index-grid {
    grid-template-columns: 1fr;
  }
  .cba-gloss-index-title {
    font-size: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cba-gloss-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   25. SERVICE DETAIL PAGES
   Used on all individual service pages (/services/[slug]/)
   Also used on case study pages (same hero layout)
   ========================================================================== */

/* --- Hero (2-column image + content layout) --- */
.cba-svc-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}
.cba-svc-detail-hero-content {
  max-width: 560px;
}
.cba-svc-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(234, 97, 33, 0.1);
  border: 1px solid rgba(234, 97, 33, 0.3);
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 24px;
}
.cba-svc-detail-badge-icon {
  font-size: 18px;
}
.cba-svc-detail-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: #EA6121;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.cba-svc-detail-hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cba-svc-detail-hero h1 .orange {
  color: #EA6121;
}
.cba-svc-detail-hero-sub {
  font-size: 18px;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 32px;
}
.cba-svc-detail-hero-sub a {
  color: #EA6121;
  text-decoration: none;
}
.cba-svc-detail-hero-sub a:hover {
  color: #D45519;
  text-decoration: underline;
}
.cba-svc-detail-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cba-svc-detail-btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cba-svc-detail-btn-primary {
  background: #EA6121;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(234, 97, 33, 0.4);
}
.cba-svc-detail-btn-primary:hover {
  background: #D45519;
  transform: translateY(-2px);
  color: #FFFFFF;
}
.cba-svc-detail-btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.3);
}
.cba-svc-detail-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #FFFFFF;
}
.cba-svc-detail-hero-visual {
  position: relative;
}
.cba-svc-detail-hero-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.cba-svc-detail-hero-stats {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 16px;
}
.cba-svc-detail-hero-stat {
  flex: 1;
  background: #12203E;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.cba-svc-detail-hero-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #EA6121;
}
.cba-svc-detail-hero-stat-label {
  font-size: 11px;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .cba-svc-detail-hero { grid-template-columns: 1fr; gap: 40px; }
  .cba-svc-detail-hero h1 { font-size: 32px; }
  .cba-svc-detail-hero-stats { position: relative; bottom: auto; left: auto; right: auto; margin-top: 20px; }
}

/* --- The Challenge (3-card problem grid) --- */
.cba-svc-problem {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.cba-svc-problem-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cba-svc-problem h2 {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 28px;
  line-height: 1.25;
}
.cba-svc-problem p {
  font-size: 18px;
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 20px;
}
.cba-svc-problem-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.cba-svc-problem-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.cba-svc-problem-card:hover {
  border-color: rgba(234, 97, 33, 0.3);
  background: rgba(255,255,255,0.04);
}
.cba-svc-problem-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.cba-svc-problem-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.cba-svc-problem-card-desc {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.6;
}
.cba-svc-problem-card-desc a {
  color: #EA6121;
  text-decoration: none;
}
.cba-svc-problem-card-desc a:hover {
  color: #D45519;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cba-svc-problem-scenarios { grid-template-columns: 1fr; }
  .cba-svc-problem h2 { font-size: 28px; }
}

/* --- Perfect For / Use Cases (3-column icon cards) --- */
.cba-svc-usecases {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-usecases-header {
  text-align: center;
  margin-bottom: 50px;
}
.cba-svc-usecases-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cba-svc-usecases h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
}
.cba-svc-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cba-svc-usecase-card {
  background: linear-gradient(145deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.cba-svc-usecase-card:hover {
  border-color: rgba(234, 97, 33, 0.4);
  transform: translateY(-4px);
}
.cba-svc-usecase-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.cba-svc-usecase-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.cba-svc-usecase-desc {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.6;
}
.cba-svc-usecase-desc a {
  color: #EA6121;
  text-decoration: none;
}
.cba-svc-usecase-desc a:hover {
  color: #D45519;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cba-svc-usecases-grid { grid-template-columns: 1fr; }
}

/* --- Our Solution (2-column horizontal icon + text cards) --- */
.cba-svc-solution {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-solution-header {
  text-align: center;
  margin-bottom: 50px;
}
.cba-svc-solution-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cba-svc-solution h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.cba-svc-solution-subtitle {
  font-size: 16px;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto;
}
.cba-svc-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cba-svc-solution-card {
  background: linear-gradient(145deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}
.cba-svc-solution-card:hover {
  border-color: rgba(234, 97, 33, 0.4);
  transform: translateY(-4px);
}
.cba-svc-solution-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 97, 33, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.cba-svc-solution-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.cba-svc-solution-card-desc {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.65;
}
.cba-svc-solution-card-desc a {
  color: #EA6121;
  text-decoration: none;
}
.cba-svc-solution-card-desc a:hover {
  color: #D45519;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cba-svc-solution-grid { grid-template-columns: 1fr; }
  .cba-svc-solution-card { flex-direction: column; }
}

/* --- Technical Specifications (4-column stat boxes) --- */
.cba-svc-specs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-specs-header {
  text-align: center;
  margin-bottom: 50px;
}
.cba-svc-specs-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cba-svc-specs h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
}
.cba-svc-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cba-svc-spec-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.cba-svc-spec-box:hover {
  border-color: rgba(234, 97, 33, 0.3);
}
.cba-svc-spec-value {
  font-size: 28px;
  font-weight: 700;
  color: #EA6121;
  margin-bottom: 8px;
}
.cba-svc-spec-label {
  font-size: 12px;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .cba-svc-specs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- How It Works (vertical numbered timeline) --- */
.cba-svc-how {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-how-header {
  text-align: center;
  margin-bottom: 60px;
}
.cba-svc-how-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cba-svc-how h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
}
.cba-svc-how-steps {
  position: relative;
}
.cba-svc-how-steps::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #EA6121 0%, rgba(234,97,33,0.2) 100%);
}
.cba-svc-how-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.cba-svc-how-step:last-child {
  margin-bottom: 0;
}
.cba-svc-how-step-number {
  width: 80px;
  height: 80px;
  background: #12203E;
  border: 3px solid #EA6121;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #EA6121;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cba-svc-how-step-content {
  padding-top: 16px;
}
.cba-svc-how-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.cba-svc-how-step-desc {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.7;
}
.cba-svc-how-step-desc a {
  color: #EA6121;
  text-decoration: none;
}
.cba-svc-how-step-desc a:hover {
  color: #D45519;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .cba-svc-how-steps::before { left: 30px; }
  .cba-svc-how-step-number { width: 60px; height: 60px; font-size: 22px; }
  .cba-svc-how-step { gap: 20px; }
}

/* --- Related Services wrapper (uses existing .flip-card from Section 2) --- */
.cba-svc-related {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-related-header {
  text-align: center;
  margin-bottom: 40px;
}
.cba-svc-related h3 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
}
.cba-svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .cba-svc-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cba-svc-related-grid { grid-template-columns: 1fr; }
}

/* --- Related Articles (blog card grid) --- */
.cba-remote-articles {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-remote-articles-header {
  text-align: center;
  margin-bottom: 40px;
}
.cba-remote-articles-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cba-remote-articles h2 {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
}
.cba-remote-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cba-remote-article-card {
  background: linear-gradient(145deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.cba-remote-article-card:hover {
  border-color: rgba(234, 97, 33, 0.4);
  transform: translateY(-4px);
}
.cba-remote-article-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.cba-remote-article-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cba-remote-article-tag {
  font-size: 11px;
  font-weight: 600;
  color: #EA6121;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cba-remote-article-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
}
.cba-remote-article-excerpt {
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cba-remote-article-link {
  font-size: 14px;
  font-weight: 600;
  color: #EA6121;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.cba-remote-article-link:hover {
  gap: 10px;
}
@media (max-width: 900px) {
  .cba-remote-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cba-remote-articles-grid { grid-template-columns: 1fr; }
}

/* --- LIVE Indicator (hero eyebrow — replaces generic badge on service pages) --- */
.cba-svc-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 30px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.cba-svc-live-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: cba-pulse-live 2s ease-in-out infinite;
}
.cba-svc-live-text {
  font-size: 11px;
  font-weight: 700;
  color: #EF4444;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
@keyframes cba-pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* --- The Stakes (full-width tension section — no cards, pure typography) --- */
.cba-svc-stakes {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.cba-svc-stakes-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #EA6121;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.cba-svc-stakes-eyebrow::before,
.cba-svc-stakes-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: #EA6121;
  opacity: 0.5;
}
.cba-svc-stakes-headline {
  font-size: 46px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.cba-svc-stakes-headline span {
  color: #EA6121;
}
.cba-svc-stakes-body {
  font-size: 19px;
  color: #94A3B8;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 56px;
}
.cba-svc-stakes-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
}
.cba-svc-stakes-col {
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}
.cba-svc-stakes-col:last-child {
  border-right: none;
}
.cba-svc-stakes-col-number {
  font-size: 40px;
  font-weight: 800;
  color: #EA6121;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.cba-svc-stakes-col-label {
  font-size: 13px;
  color: #64748B;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .cba-svc-stakes-headline { font-size: 32px; letter-spacing: -0.5px; }
  .cba-svc-stakes-body { font-size: 16px; }
  .cba-svc-stakes-cols { grid-template-columns: 1fr; }
  .cba-svc-stakes-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .cba-svc-stakes-col:last-child { border-bottom: none; }
}

/* --- What You Get (deliverables grid with SVG icons) --- */
.cba-svc-deliverables {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-deliverables-header {
  text-align: center;
  margin-bottom: 56px;
}
.cba-svc-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cba-svc-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(145deg, #1E293B 0%, #12203E 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: border-color 0.3s ease;
}
.cba-svc-deliverable:hover {
  border-color: rgba(234, 97, 33, 0.3);
}
.cba-svc-deliverable-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(234, 97, 33, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cba-svc-deliverable-icon svg {
  width: 22px;
  height: 22px;
  stroke: #EA6121;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cba-svc-deliverable-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.cba-svc-deliverable-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .cba-svc-deliverables-grid { grid-template-columns: 1fr; }
}

/* --- Testimonial / Pull Quote --- */
.cba-svc-quote {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.cba-svc-quote-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 97, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.cba-svc-quote-icon svg {
  width: 24px;
  height: 24px;
  fill: #EA6121;
}
.cba-svc-quote-text {
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 40px;
}
.cba-svc-quote-text em {
  font-style: normal;
  color: #EA6121;
  font-weight: 600;
}
.cba-svc-quote-divider {
  width: 48px;
  height: 2px;
  background: rgba(234, 97, 33, 0.4);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.cba-svc-quote-author {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.cba-svc-quote-role {
  font-size: 13px;
  color: #64748B;
}
.cba-svc-quote-logo {
  height: 26px;
  width: auto;
  opacity: 0.55;
  filter: brightness(10) grayscale(1);
  margin-top: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cba-svc-quote-text { font-size: 19px; }
}

/* ==========================================================================
   26. EMIRATES COVERAGE GRID (UAE location page — emirate cards with icon + event count)
   ========================================================================== */

.cba-emirates {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.cba-emirates-header {
  text-align: center;
  margin-bottom: 40px;
}
.cba-emirates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.cba-emirate-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cba-emirate-card:hover {
  border-color: rgba(234, 97, 33, 0.4);
  background: rgba(234, 97, 33, 0.05);
  transform: translateY(-3px);
}
.cba-emirate-card.featured {
  background: rgba(234, 97, 33, 0.08);
  border-color: rgba(234, 97, 33, 0.35);
}
.cba-emirate-card.gcc {
  background: rgba(234, 97, 33, 0.1);
  border-color: #EA6121;
}
.cba-emirate-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(234, 97, 33, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.cba-emirate-card.gcc .cba-emirate-icon {
  background: #EA6121;
}
.cba-emirate-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #EA6121;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cba-emirate-card.gcc .cba-emirate-icon svg {
  stroke: #FFFFFF;
}
.cba-emirate-name {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.cba-emirate-events {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 12px;
}
.cba-emirate-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #EA6121;
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 97, 33, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.cba-emirate-link:hover {
  border-color: #EA6121;
}
@media (max-width: 1024px) {
  .cba-emirates-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .cba-emirates-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .cba-emirate-card { padding: 16px 12px; }
  .cba-emirate-icon { width: 44px; height: 44px; }
  .cba-emirate-icon svg { width: 20px; height: 20px; }
  .cba-emirate-name { font-size: 13px; }
  .cba-emirate-events { font-size: 11px; }
  .cba-emirate-link { font-size: 11px; }
}
@media (max-width: 480px) {
  .cba-emirates-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}


/* ==========================================================================
   27. LOCATIONS HUB PAGE (locations landing page — country cards by region)
   ========================================================================== */

.cba-locations-region {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}
.cba-locations-region-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(234, 97, 33, 0.12);
  color: #EA6121;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 16px;
}
.cba-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cba-locations-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cba-location-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cba-location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EA6121, rgba(234, 97, 33, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cba-location-card:hover {
  border-color: rgba(234, 97, 33, 0.35);
  background: rgba(234, 97, 33, 0.04);
  transform: translateY(-4px);
}
.cba-location-card:hover::before {
  opacity: 1;
}
.cba-location-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(234, 97, 33, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.cba-location-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #EA6121;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cba-location-card-name {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.2;
}
.cba-location-card-tagline {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 24px;
  line-height: 1.5;
}
.cba-location-card-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cba-location-card-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #EA6121;
  line-height: 1;
  margin-bottom: 4px;
}
.cba-location-card-stat-label {
  font-size: 11px;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.cba-location-card-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.cba-location-card-city {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 4px 8px;
}
.cba-location-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #EA6121;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.cba-location-card-link:hover {
  gap: 10px;
}
.cba-location-card.global {
  border-color: rgba(234, 97, 33, 0.2);
}
.cba-location-card.global .cba-location-card-icon {
  background: rgba(234, 97, 33, 0.08);
}
/* Divider between regions */
.cba-locations-divider {
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 1024px) {
  .cba-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .cba-locations-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cba-locations-grid,
  .cba-locations-grid-2 { grid-template-columns: 1fr; }
  .cba-location-card { padding: 24px 20px; }
}


/* ==========================================================================
   28. ABOUT PAGE
   ========================================================================== */

/* MVV section — scoped overrides on .cba-svc-why-card */
.cba-abt-mvv { padding: 90px 5%; }
.cba-abt-mvv .cba-svc-why-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.cba-abt-mvv .cba-svc-why-card {
  position: relative;
  overflow: hidden;
  text-align: left;
}
.cba-abt-mvv .cba-svc-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EA6121, #F59E0B);
  border-radius: 16px 16px 0 0;
}
.cba-abt-mvv .cba-svc-why-icon {
  border-radius: 14px;
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  .cba-abt-mvv { padding: 60px 6%; }
  .cba-abt-mvv .cba-svc-why-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* Leader photo — fixed dimensions + gradient fade overlay */
.cba-leader-photo {
  width: 300px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1E293B;
  flex-shrink: 0;
}
.cba-leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cba-leader-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.6));
}
@media (max-width: 768px) {
  .cba-leader-photo { width: 220px; height: 280px; margin: 0 auto; }
}

/* Coverage pills (location links with country code + name + HQ badge) */
.cba-abt-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.cba-abt-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1E293B;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cba-abt-pill:hover {
  border-color: #EA6121;
  background: rgba(234, 97, 33, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(234, 97, 33, 0.15);
}
.cba-abt-pill-flag {
  font-size: 11px;
  font-weight: 700;
  color: #EA6121;
  background: rgba(234, 97, 33, 0.12);
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  min-width: 24px;
  text-align: center;
}
.cba-abt-pill-name {
  font-size: 16px;
  font-weight: 600;
  color: #E2E8F0;
}
.cba-abt-pill-hq {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  background: #EA6121;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .cba-abt-pills { gap: 10px; }
  .cba-abt-pill { padding: 12px 22px; }
}

/* Why Choose Us — numbered horizontal cards (2-col grid) */
.cba-abt-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.cba-abt-why-card {
  background: #1E293B;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.cba-abt-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 97, 33, 0.3);
}
.cba-abt-why-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(234, 97, 33, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #EA6121;
}
/* Large watermark number inside .cba-case-image on Why cards */
.cba-why-num-display {
  position: absolute;
  bottom: 12px;
  left: 20px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  user-select: none;
}
.cba-abt-why-card .cba-svc-why-card-title {
  text-align: left;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cba-abt-why-grid { grid-template-columns: 1fr; max-width: 600px; }
}

/* FAQ card variant — overrides Section 8 base styles inside .cba-abt-faq */
.cba-abt-faq .cba-faq-section { max-width: 800px; margin: 0 auto; }
.cba-abt-faq .cba-faq-item {
  background: #1E293B;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.cba-abt-faq .cba-faq-item.active { border-color: rgba(234, 97, 33, 0.3); }
.cba-abt-faq .cba-faq-question { padding: 20px 24px; }
.cba-abt-faq .cba-faq-answer p { padding: 0 24px 20px; padding-top: 0; }

/* Story image wrapper + accent corner decoration */
.cba-story-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.cba-story-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.cba-story-img-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(234, 97, 33, 0.3);
  border-radius: 16px;
  z-index: -1;
}

/* =============================================================
   SECTION 29 — Services Hub Page
   Stat strip, industries grid, timeline modifier,
   two-column FAQ, text-based service cards, CTA box
   ============================================================= */

/* --- Stat Strip --- */
.cba-svc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.cba-svc-stat-box {
  background: #1E293B;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.cba-svc-stat-box:hover {
  border-color: rgba(234, 97, 33, 0.3);
  transform: translateY(-4px);
}
.cba-svc-stat-num {
  font-size: 48px;
  font-weight: 800;
  color: #EA6121;
  line-height: 1;
  margin-bottom: 10px;
}
.cba-svc-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  .cba-svc-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cba-svc-stats { grid-template-columns: 1fr; }
  .cba-svc-stat-num { font-size: 40px; }
}

/* --- Industries Grid --- */
.cba-svc-industries {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cba-svc-industries-header {
  text-align: center;
  margin-bottom: 50px;
}
.cba-svc-industries-label {
  color: #EA6121;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cba-svc-industries-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.cba-svc-industries-subtitle {
  font-size: 16px;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.cba-svc-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cba-svc-ind-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.cba-svc-ind-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(234, 97, 33, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(234, 97, 33, 0.15);
}
.cba-svc-ind-card.featured {
  background: linear-gradient(135deg, #EA6121 0%, #D45519 100%);
  border-color: #EA6121;
}
.cba-svc-ind-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 50px rgba(234, 97, 33, 0.4);
}
/* Sparkle glow on hover */
.cba-svc-ind-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle at 30% 30%, rgba(234,97,33,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.cba-svc-ind-card:hover::before { opacity: 1; }
/* Sparkle particle top-right */
.cba-svc-ind-card::after {
  content: '\2736';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  color: #EA6121;
  opacity: 0;
  transition: all 0.3s ease;
  animation: cba-svc-sparkle 1.5s ease-in-out infinite;
}
.cba-svc-ind-card:hover::after { opacity: 1; }
.cba-svc-ind-card.featured::after { color: rgba(255,255,255,0.8); }
@keyframes cba-svc-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.4) rotate(20deg); opacity: 1; }
}
/* Sparkle particle bottom-right */
.cba-svc-ind-card .sparkle-2 {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 10px;
  color: #EA6121;
  opacity: 0;
  transition: all 0.3s ease 0.1s;
  animation: cba-svc-sparkle-2 2s ease-in-out infinite 0.5s;
}
.cba-svc-ind-card:hover .sparkle-2 { opacity: 0.7; }
.cba-svc-ind-card.featured .sparkle-2 { color: rgba(255,255,255,0.6); }
@keyframes cba-svc-sparkle-2 {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}
.cba-svc-ind-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 97, 33, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.cba-svc-ind-icon svg {
  width: 28px;
  height: 28px;
  stroke: #EA6121;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cba-svc-ind-card.featured .cba-svc-ind-icon {
  background: rgba(255,255,255,0.2);
}
.cba-svc-ind-card.featured .cba-svc-ind-icon svg { stroke: #FFFFFF; }
.cba-svc-ind-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cba-svc-ind-desc {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cba-svc-ind-card.featured .cba-svc-ind-desc { color: rgba(255,255,255,0.9); }
.cba-svc-ind-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #EA6121;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap 0.2s ease;
}
.cba-svc-ind-link:hover { gap: 10px; color: #EA6121; }
.cba-svc-ind-card.featured .cba-svc-ind-link { color: #FFFFFF; }
.cba-svc-ind-card.featured .cba-svc-ind-link:hover { color: #FFFFFF; }
@media (max-width: 900px) {
  .cba-svc-industries-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 550px) {
  .cba-svc-industries-grid { grid-template-columns: 1fr; }
  .cba-svc-industries-title { font-size: 28px; }
}

/* --- Process Grid Timeline Modifier (extends Section 7) --- */
.cba-timeline {
  position: relative;
}
.cba-timeline .cba-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(234, 97, 33, 0.4), transparent);
  pointer-events: none;
}
.cba-timeline .cba-process-grid {
  position: relative;
}

/* --- Two-Column FAQ --- */
.cba-faq-2col .cba-faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 768px) {
  .cba-faq-2col .cba-faq-section { grid-template-columns: 1fr; }
}

/* --- Text-Based Service Cards --- */
.cba-svc-cards {
  max-width: 1200px;
  margin: 0 auto;
}
.cba-svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cba-svc-card {
  background: #1E293B;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cba-svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}
.cba-svc-card:hover {
  border-color: rgba(234, 97, 33, 0.3);
  transform: translateY(-4px);
}
.cba-svc-card:hover::after {
  background: #EA6121;
}
.cba-svc-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 97, 33, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cba-svc-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #EA6121;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cba-svc-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
}
.cba-svc-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  flex: 1;
}
.cba-svc-card-link {
  font-size: 14px;
  font-weight: 600;
  color: #EA6121;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
  margin-top: auto;
}
.cba-svc-card-link:hover { gap: 10px; }
.cba-svc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cba-svc-card-tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 4px 12px;
}
@media (max-width: 900px) {
  .cba-svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .cba-svc-cards-grid { grid-template-columns: 1fr; }
}

/* --- Services FAQ (sidebar layout) --- */
.cba-svc-faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 40px;
  align-items: start;
}
.cba-svc-faq-heading {
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  position: sticky;
  top: 100px;
}
.cba-svc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cba-svc-faq-item {
  background: #1E293B;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.cba-svc-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
}
.cba-svc-faq-question span {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}
.cba-svc-faq-toggle {
  font-size: 22px;
  color: #EA6121;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}
.cba-svc-faq-item.active .cba-svc-faq-toggle {
  transform: rotate(45deg);
}
.cba-svc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cba-svc-faq-item.active .cba-svc-faq-answer {
  max-height: 800px;
}
.cba-svc-faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .cba-svc-faq { grid-template-columns: 1fr; gap: 20px 0; }
  .cba-svc-faq-heading { font-size: 32px; position: static; }
}

/* --- Services CTA Box --- */
.cba-svc-cta-box {
  background: linear-gradient(135deg, #1E293B 0%, rgba(234, 97, 33, 0.12) 100%);
  border: 1px solid rgba(234, 97, 33, 0.25);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.cba-svc-cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cba-svc-cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cba-svc-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cba-svc-cta-box { padding: 48px 24px; }
  .cba-svc-cta-box h2 { font-size: 28px; }
}
