/* ==========================================================================
   GLC ULTRA-PROFESSIONAL ENTERPRISE DESIGN SYSTEM
   B2B Management Consulting & Senior Training - GCC Regional Authority
   Palette: Navy #1E2068 | Green #6DC040 | Gold #C9973A | Cream #F6F4EE | Charcoal #242533
   ========================================================================== */

:root {
  /* Colors */
  --navy: #1E2068;
  --navy-dark: #101242;
  --navy-deep: #0B0D30;
  --navy-light: #2D3094;
  --green: #6DC040;
  --green-dark: #4E922A;
  --green-soft: #EFF8EB;
  --gold: #C9973A;
  --gold-light: #DFB054;
  --gold-bg: #FFFBF2;
  --gold-border: rgba(201, 151, 58, 0.3);
  --cream: #F6F4EE;
  --charcoal: #242533;
  --gray: #4A4B5D;
  --gray-light: #9596A6;
  --soft: #FAF9F5;
  --white: #FFFFFF;
  --line: #E5E1D5;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic: 'Cairo', 'Tajawal', sans-serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(16, 18, 66, 0.04);
  --shadow-md: 0 8px 24px rgba(16, 18, 66, 0.07);
  --shadow-lg: 0 16px 40px rgba(16, 18, 66, 0.12);
  --shadow-xl: 0 24px 60px rgba(16, 18, 66, 0.18);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] {
  --font-heading: 'Cairo', sans-serif;
  --font-sans: 'Cairo', sans-serif;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--gray);
  background-color: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--white);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.max-w-760 { max-width: 760px; margin: 0 auto; }
.text-center { text-align: center; }

/* SVG Icons Styling */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   TOP BAR UTILITIES
   ========================================================================== */
.top-bar {
  background-color: var(--navy-deep);
  color: #D3D5F5;
  font-size: 0.8125rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E2E4FF;
}

.top-badge .icon {
  color: var(--gold);
}

.top-divider {
  color: rgba(255, 255, 255, 0.2);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  color: #E2E4FF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: var(--transition);
}

.top-link:hover { color: var(--gold-light); }

.top-link.whatsapp {
  color: var(--green);
  font-weight: 600;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(16, 18, 66, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--green);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 82px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-logo-container {
 
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}



.header-logo-img {
  height: 75px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #E2E4FF;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green);
  transition: var(--transition);
}

[dir="rtl"] .nav-link::after { left: auto; right: 0; }

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 1100;
}

[dir="rtl"] .dropdown-menu { left: auto; right: 0; }

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.875rem;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

[dir="rtl"] .dropdown-item { border-left: none; border-right: 3px solid transparent; }

.dropdown-item:hover {
  background: var(--cream);
  color: var(--navy);
  border-left-color: var(--green);
}

[dir="rtl"] .dropdown-item:hover { border-right-color: var(--green); }

.dropdown-item.highlight {
  color: #8A6420;
  font-weight: 700;
  background: #FFF9ED;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 34px; font-size: 1.0625rem; }

.btn-green {
  background-color: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(109, 192, 64, 0.3);
}

.btn-green:hover {
  background-color: var(--green-dark);
  box-shadow: 0 6px 20px rgba(109, 192, 64, 0.45);
  transform: translateY(-1px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201, 151, 58, 0.3);
}

.btn-gold:hover {
  background-color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(201, 151, 58, 0.45);
  transform: translateY(-1px);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background-color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(30, 32, 104, 0.35);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.12);
}

.btn-outline-navy {
  background-color: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-block { width: 100%; }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* ==========================================================================
   VIEW CONTROLLER (SPA) & PAGE BANNERS
   ========================================================================== */
.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.page-view.active {
  display: block;
  opacity: 1;
}

.page-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 13, 48, 0.88) 0%, rgba(16, 18, 66, 0.94) 100%), 
              url('assets/sub_banner.jpg') no-repeat center center / cover;
  color: var(--white);
  padding: 68px 0 58px;
  border-bottom: 4px solid var(--gold);
}

.banner-breadcrumbs {
  font-size: 0.875rem;
  color: #B2B4E3;
  margin-bottom: 12px;
}

.banner-breadcrumbs a { color: var(--gold); text-decoration: none; }

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
}

.page-banner-lead {
  font-size: 1.125rem;
  color: #D3D5F5;
  margin-top: 10px;
  max-width: 760px;
}

/* ==========================================================================
   SECTION 1: EXECUTIVE HERO SECTION WITH CREATIVE BACKGROUND
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 13, 48, 0.88) 0%, rgba(16, 18, 66, 0.92) 60%, rgba(21, 23, 77, 0.95) 100%),
              url('assets/hero_bg.jpg') no-repeat center center / cover;
  color: var(--white);
  padding: 104px 0 114px;
  overflow: hidden;
  box-shadow: inset 0 -10px 30px rgba(0,0,0,0.4);
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 85% 15%, rgba(109, 192, 64, 0.22) 0%, transparent 50%),
              radial-gradient(circle at 15% 85%, rgba(201, 151, 58, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.hero-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 58, 0.15);
  border: 1px solid rgba(201, 151, 58, 0.35);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  line-height: 1.16;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1.15rem;
  color: #D3D5F5;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-credentials-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
}

.cred-label {
  display: block;
  font-size: 0.75rem;
  color: #B2B4E3;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cred-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #E2E4FF;
  padding: 5px 7px;
  border-radius: var(--radius-full);
  font-size: 0.78125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hero Executive Dashboard Card Stack */
.hero-card-stack {
  position: relative;
}

.executive-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.glass-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 22px;
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.card-dots .red { background: #FF5F56; }
.card-dots .yellow { background: #FFBD2E; }
.card-dots .green { background: #27C93F; }

.glass-card-title {
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mandate-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.mandate-row:last-child { margin-bottom: 0; }

.mandate-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 151, 58, 0.15);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mandate-info strong {
  display: block;
  color: var(--white);
  font-size: 0.9375rem;
}

.mandate-info small {
  color: #B2B4E3;
  font-size: 0.78125rem;
}

.hero-proof-badge {
  position: absolute;
  bottom: -80px;
  right: -22px;
  background: linear-gradient(135deg, #D4A347 0%, #B58428 100%);
  color: var(--navy-dark);
  padding: 18px 26px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 12px 32px rgba(201, 151, 58, 0.4);
}

[dir="rtl"] .hero-proof-badge { right: auto; left: -22px; }

.hero-proof-badge .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.hero-proof-badge .txt {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTION 2: IMPACT PROOF STRIP
   ========================================================================== */
.impact-strip {
  background: linear-gradient(90deg, #A87925 0%, #C9973A 50%, #B8882D 100%);
  color: var(--navy-dark);
  padding: 34px 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.12);
}

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

.stat-card {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(16, 18, 66, 0.18);
}

[dir="rtl"] .stat-card { border-right: none; border-left: 1px solid rgba(16, 18, 66, 0.18); }

.stat-card:last-child { border-right: none; border-left: none; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-dark);
}

/* ==========================================================================
   GENERAL SECTIONS
   ========================================================================== */
.section {
  padding: 96px 0;
}

.bg-soft { background-color: var(--soft); }
.bg-cream { background-color: var(--cream); }

.section-header {
  margin-bottom: 54px;
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-kicker {
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.22;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 740px;
  margin-top: 14px;
}

.body-text {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.68;
  margin-bottom: 18px;
}

.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

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

.align-center { align-items: center; }
.margin-top-md { margin-top: 24px; }
.margin-top-lg { margin-top: 40px; }
.margin-top-xl { margin-top: 64px; }

/* ==========================================================================
   SECTION 3: ABOUT US TEASER & CARDS
   ========================================================================== */
.bullet-list {
  margin: 32px 0;
}

.bullet-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.bullet-icon-box {
  width: 36px;
  height: 36px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bullet-item h4 {
  color: var(--navy);
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

.bullet-item p {
  font-size: 0.9375rem;
  color: var(--gray);
}

.quote-editorial-card {
  background: var(--navy);
  color: var(--white);
  border-left: 6px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-xl);
}

[dir="rtl"] .quote-editorial-card { border-left: none; border-right: 6px solid var(--green); }

.quote-icon {
  color: var(--gold);
  margin-bottom: 18px;
}

.quote-editorial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.52;
  color: var(--white);
  margin-bottom: 26px;
}

.quote-author strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.0625rem;
}

.quote-author span {
  font-size: 0.84375rem;
  color: #B2B4E3;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card.tinted { background: var(--cream); }

.card h4 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 12px;
}

/* About Leader Profile Card */
.leader-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}

.avatar-ring {
  width: 110px;
  height: 110px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(201, 151, 58, 0.3);
  flex-shrink: 0;
}

.leader-info h3 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.leader-role {
  display: block;
  color: #8A6420;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.leader-bio {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 22px;
}

.leader-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cred-chip {
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-size: 0.9375rem;
}

[dir="rtl"] .comparison-table th { text-align: right; }

.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}

.comparison-table tr:hover td {
  background: var(--soft);
}

.comparison-table .highlight-col {
  background: #FFF9ED;
  font-weight: 600;
  color: var(--navy);
}

/* ==========================================================================
   SECTION 4: 7 PRACTICE AREAS GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

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

.card-pill-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

[dir="rtl"] .card-pill-tag { right: auto; left: 22px; }

.card-pill-tag.gold {
  background: #F8EEDA;
  color: #8A6420;
}

.service-svg-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-svg-icon {
  background: var(--navy);
  color: var(--gold);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.58;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-feature-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 24px;
}

.service-feature-list li {
  font-size: 0.84375rem;
  color: var(--gray);
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

[dir="rtl"] .service-feature-list li { padding-left: 0; padding-right: 20px; }

.service-feature-list li::before {
  content: "Ã¢Å“â€œ";
  color: var(--green-dark);
  font-weight: 800;
  position: absolute;
  left: 0;
}

[dir="rtl"] .service-feature-list li::before { left: auto; right: 0; }

.card-action-btn {
  background: none;
  border: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

[dir="rtl"] .card-action-btn { text-align: right; }

.card-action-btn:hover {
  color: var(--green-dark);
}

.service-card.special-card {
  grid-column: span 3;
  background: linear-gradient(135deg, #FAF6EE 0%, #F4F1EA 100%);
  border-top-color: var(--gold);
  border-left: 5px solid var(--gold);
}

[dir="rtl"] .service-card.special-card { border-left: 1px solid var(--line); border-right: 5px solid var(--gold); }

/* ==========================================================================
   SECTION 5: TRAINING CATALOG BANNER
   ========================================================================== */
.card-banner-gold {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 13, 48, 0.9) 0%, rgba(16, 18, 66, 0.94) 100%),
              url('assets/sub_banner.jpg') no-repeat center center / cover;
  border-left: 6px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 54px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

[dir="rtl"] .card-banner-gold { border-left: none; border-right: 6px solid var(--gold); }

.banner-kicker {
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.banner-desc {
  color: #D3D5F5;
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.banner-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.banner-stats-column {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 26px;
}

.stat-item-block {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stat-item-block:last-child { border-bottom: none; }

.stat-item-block strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-item-block span {
  font-size: 0.8125rem;
  color: #E2E4FF;
}

/* Training Filters & Catalog View */
.filter-controls-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 220px;
}

.filter-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.filter-group select {
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.training-course-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.t-badge {
  align-self: flex-start;
  background: #E8EAFA;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.training-course-card h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.training-course-card p {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 18px;
  flex-grow: 1;
}

.t-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 0.8125rem;
  color: var(--gray-light);
}

/* ==========================================================================
   SECTION 6: CLIENT SECTORS & CASE STUDIES
   ========================================================================== */
.sector-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.sector-tab {
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--gray);
  padding: 8px 15px;
  border-radius: var(--radius-full);
  font-size: 0.8375rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.sector-tab:hover, .sector-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.sector-case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

[dir="rtl"] .sector-case-card { border-left: none; border-right: 6px solid var(--green); }

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.case-sector-tag {
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
}

.case-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 18px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}

.case-box {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius-md);
}

.case-box h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
}

.case-box p {
  font-size: 0.9375rem;
  color: var(--gray);
}

/* ==========================================================================
   SECTION 7: MEDIA CENTER
   ========================================================================== */
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.news-tag.event { background: #F8EEDA; color: #8A6420; }
.news-tag.article { background: #E8EAFA; color: var(--navy); }
.news-tag.news { background: var(--green-soft); color: var(--green-dark); }

.news-date {
  font-size: 0.8125rem;
  color: var(--gray-light);
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}

.news-excerpt {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.news-read-more {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-read-more:hover { color: var(--green-dark); }

/* ==========================================================================
   SECTION 8: EXECUTIVE CONTACT MODULE
   ========================================================================== */
.section-cta-navy {
  position: relative;
  background: linear-gradient(135deg, rgb(187 135 42 / 88%) 0%, rgb(18 19 64) 100%), url(assets/hero_bg.jpg) no-repeat center center / cover;
  color: var(--white);
  box-shadow: inset 0 10px 30px rgba(0,0,0,0.3);
}

.light-text { color: var(--white); }
.gold-text { color: var(--gold-light); }
.light-lead { color: #D3D5F5; }

.contact-methods {
  margin-top: 36px;
}

.c-method {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.c-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.c-method strong {
  display: block;
  color: #8dc63f;
  font-size: 1rem;
}

.c-method span {
  color: #fff;
  font-size: 0.875rem;
}

.cta-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--gray);
  box-shadow: var(--shadow-xl);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 22px;
}

.lead-form .form-group {
  margin-bottom: 18px;
}

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

.lead-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form input[type="file"],
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--soft);
  transition: var(--transition);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30, 32, 104, 0.12);
}

.consent-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.consent-check input { margin-top: 4px; }
.consent-check label { font-size: 0.78125rem; font-weight: normal; color: var(--gray); }

/* ==========================================================================
   FOOTER MODULE
   ========================================================================== */
.site-footer {
  background-color: #171741;
  color: #C6C7D2;
  padding: 76px 0 32px;
  font-size: 0.875rem;
  border-top: 6px solid var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 54px;
}

.footer-logo-container {
  /* background: #FFFFFF; */
  /* padding: 8px 16px; */
  /* border-radius: var(--radius-sm); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  color: #A4A5B5;
  line-height: 1.62;
  margin-bottom: 22px;
}

.footer-accreditations {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8125rem;
}

.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }

.footer-links a {
  color: #C6C7D2;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 4px; }

.footer-contact-info p { margin-bottom: 10px; }
.footer-contact-info a { color: var(--gold); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  color: #8A8B99;
  font-size: 0.8125rem;
}

.footer-bottom-links a { color: #8A8B99; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--white); }

/* Quick Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background-color: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

[dir="rtl"] .floating-whatsapp { right: auto; left: 26px; }

.floating-whatsapp:hover { transform: scale(1.08); }

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16, 18, 66, 0.82);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 44px;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--cream);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

[dir="rtl"] .modal-close { right: auto; left: 22px; }

/* Mobile Navigation Header & Close Button */
.mobile-nav-header {
  display: none;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 44px; }
  .hero-title { font-size: 2.6rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.special-card { grid-column: span 2; }
  .card-banner-gold { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .header-cta{
      display: flex;
    }
  .top-info { display: none; }
  
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 8px;
  }

  .mobile-logo-box {
    /* background: #FFFFFF; */
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
  }

  .mobile-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1200;
    overflow-y: auto;
    align-items: stretch;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-toggle { display: block; }
  .hero-title { font-size: 2.1rem; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2-cols, .grid-3-cols { grid-template-columns: 1fr; }
  .service-card.special-card { grid-column: span 1; }
  .lead-form .form-row { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .flex-header { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 580px) {
.stat-card {
    border-right: 0;
    padding: 5px;
}
.card-banner-gold{
  padding: 30px;
}
.sector-tabs {
    gap: 5px}
.sector-tab {
    padding: 8px 10px
    }
.sector-tab svg{
      display: none;
    }
.glass-card-header {
    display: block;}
    .cta-form-card,
.sector-case-card {
    padding: 30px;
}    
}

