/* ==========================================================================
   AB ESTABLISHMENT LTD. RL-618 - MAIN STYLESHEET
   Compatible with all browsers & Hostinger shared hosting
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens & CSS Variables --- */
:root {
  /* Colors */
  --primary-navy: #0B1B3D;
  --navy-dark: #061229;
  --navy-light: #162B56;
  --navy-card: #0F234A;
  
  --primary-green: #10B981;
  --green-hover: #059669;
  --green-dark: #047857;
  --green-light: #ECFDF5;
  --green-glow: rgba(16, 185, 129, 0.2);

  --accent-blue: #2563EB;
  --blue-light: #EFF6FF;

  --text-dark: #0F172A;
  --text-body: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -10px rgba(11, 27, 61, 0.15);

  /* Spacing & Layout */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* --- Layout Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-green {
  background-color: var(--primary-green);
  color: var(--text-white);
}

.btn-green:hover {
  background-color: var(--green-hover);
  box-shadow: 0 4px 12px var(--green-glow);
  transform: translateY(-1px);
}

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

.btn-navy:hover {
  background-color: var(--navy-light);
  transform: translateY(-1px);
}

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

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   1. TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--navy-dark);
  color: var(--text-white);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
}

.top-contact-item:hover {
  color: var(--primary-green);
}

.top-contact-item svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.top-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.lang-btn.active, .lang-btn:hover {
  color: var(--primary-green);
  font-weight: 700;
}

/* ==========================================================================
   2. MAIN HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  background-color: var(--bg-card);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
  position: relative;
  z-index: 10;
}

.brand-logo img {
  height: 68px;
  max-height: 76px;
  width: auto;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 2px 8px rgba(11, 27, 61, 0.08));
  transform: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: var(--radius-full);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--text-dark);
}

/* Off-canvas mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--bg-card);
  z-index: 1100;
  box-shadow: var(--shadow-xl);
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  transition: right 0.3s ease;
}

.mobile-nav.open {
  right: 0;
  display: flex;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.mobile-nav .nav-link {
  font-size: 1.05rem;
  padding: 0.5rem 0;
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
}

.nav-overlay.active {
  display: block;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-color: #C9E1FB;
  background: linear-gradient(135deg, #C9E1FB 0%, #D5E7FC 40%, #E3EFFD 100%);
  padding: 5rem 0 6.5rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 225, 251, 0.75) 0%, rgba(213, 231, 252, 0.5) 50%, rgba(227, 239, 253, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px) brightness(0.98);
  transform: scale(1.02);
}

.home-hero .hero-bg-full {
  filter: none;
  transform: none;
}

.hero-grid-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 540px;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-bottom: 2.25rem;
  line-height: 1.6;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-mobile-img-box {
  display: none;
}

/* ==========================================================================
   4. KEY HIGHLIGHTS BAR (4 FEATURE CARDS)
   ========================================================================== */
.highlights-section {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  padding-bottom: 3rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
}

.highlight-card:hover {
  transform: translateY(-2px);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon.green {
  background-color: #E6F4EA;
  color: #137333;
}

.highlight-icon.blue {
  background-color: #E8F0FE;
  color: #1A73E8;
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.highlight-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.highlight-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   5. POPULAR DESTINATION COUNTRIES
   ========================================================================== */
.countries-section {
  padding: 3.5rem 0;
  background-color: var(--bg-body);
  text-align: center;
}

.section-header-center {
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.flag-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid var(--border-light);
}

.flag-icon img, .flag-icon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.dots-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CBD5E1;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  width: 20px;
  border-radius: 10px;
  background-color: var(--primary-navy);
}

/* ==========================================================================
   6. LATEST OVERSEAS JOBS SECTION
   ========================================================================== */
.jobs-section {
  padding: 3.5rem 0;
  background-color: #F1F5F9;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.9rem;
}

.view-all-link:hover {
  color: var(--primary-green);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.job-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-fast);
}

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

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.job-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: #E8F0FE;
  color: #1A73E8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-icon-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.bookmark-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #94A3B8;
  padding: 4px;
  transition: color var(--transition-fast);
}

.bookmark-btn:hover, .bookmark-btn.active {
  color: var(--primary-navy);
}

.bookmark-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.job-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.job-location .flag-mini {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
}

.job-salary {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--bg-body);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.job-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ==========================================================================
   7. JOB CATEGORIES SECTION
   ========================================================================== */
.categories-section {
  padding: 4rem 0;
  background-color: var(--bg-body);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.category-img-box {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  background-color: #E2E8F0;
}

.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img-box img {
  transform: scale(1.08);
}

.category-name {
  padding: 0.85rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ==========================================================================
   8. OUR RECRUITMENT PROCESS
   ========================================================================== */
.process-section {
  padding: 4rem 0;
  background-color: var(--bg-card);
  text-align: center;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, #CBD5E1 0, #CBD5E1 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-num-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid #94A3B8;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all var(--transition-fast);
}

.process-step:hover .step-num-badge {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: scale(1.1);
}

.step-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: #F8FAFC;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.process-step:hover .step-icon-box {
  background-color: var(--green-light);
  color: var(--primary-green);
}

.step-icon-box svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.step-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  max-width: 140px;
}

/* ==========================================================================
   9. RECRUIT MANPOWER CALLOUT BANNER
   ========================================================================== */
.manpower-banner-section {
  padding: 2.5rem 0;
  background-color: var(--bg-card);
}

.manpower-banner-card {
  background-color: var(--primary-navy);
  border-radius: var(--radius-xl);
  padding: 2.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.manpower-banner-card::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.manpower-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.manpower-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.manpower-icon-circle svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.manpower-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.manpower-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   10. IMPACT STATISTICS COUNTERS
   ========================================================================== */
.stats-section {
  padding: 3rem 0;
  background-color: var(--bg-body);
}

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

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   11. SUCCESS STORIES & NEWS SECTION (SPLIT LAYOUT)
   ========================================================================== */
.stories-news-section {
  padding: 4rem 0;
  background-color: var(--bg-body);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
}

.stories-column, .news-column {
  display: flex;
  flex-direction: column;
}

.section-sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-sub-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.quote-mark {
  color: var(--primary-green);
  font-size: 2.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -0.5rem;
}

.testimonial-text {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #E2E8F0;
}

.user-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.user-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  margin-top: 0.5rem;
}

.rating-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.slider-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.nav-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-arrow-btn:hover {
  background: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
}

/* News Items */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: transform var(--transition-fast);
}

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

.news-thumb {
  width: 90px;
  height: 70px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background-color: #E2E8F0;
  flex-shrink: 0;
}

.news-content h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.news-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   12. PRE-FOOTER CTA BANNER
   ========================================================================== */
.cta-banner-section {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.cta-banner-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

/* ==========================================================================
   13. MAIN FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem 0;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-wrap {
  background: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  align-self: flex-start;
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a:hover {
  color: var(--primary-green);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.certification-badge {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES (ALL DEVICES)
   ========================================================================== */

/* Large Desktop / Widescreen (>= 1440px) */
@media (min-width: 1440px) {
  .hero-content h1 {
    font-size: 3.6rem;
  }
  .container {
    max-width: 1280px;
  }
}

/* Laptops & Tablets Landscape (max-width: 1024px) */
@media (max-width: 1024px) {
  .top-bar {
    font-size: 0.8rem;
  }
  .main-header .container {
    height: 80px;
  }
  .brand-logo img {
    height: 54px;
    max-height: 60px;
    margin: 0;
    transform: none;
  }
  .hero-section {
    min-height: auto;
    padding: 3.5rem 0 4.5rem 0;
    background: linear-gradient(180deg, #C9E1FB 0%, #E4F0FC 100%);
  }
  .hero-bg-full {
    display: none;
  }
  .hero-grid-wrap {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-mobile-img-box {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(11, 27, 61, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
  .hero-mobile-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .countries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .process-timeline::before {
    display: none;
  }
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Tablets Portrait & Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .top-contacts {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-header .container {
    height: 80px;
  }
  .brand-logo img {
    height: 64px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .process-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
  }
  .step-num-badge {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-color: var(--primary-green);
    color: var(--primary-green);
    background-color: var(--green-light);
  }
  .step-icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
  }
  .step-text {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .step-title {
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
  }
  .step-desc {
    font-size: 0.825rem;
  }
  .manpower-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .manpower-info {
    flex-direction: column;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-content h2 {
    font-size: 1.75rem;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .hero-section {
    padding: 2.5rem 0 3.5rem 0;
  }
  .hero-content h1 {
    font-size: 1.85rem;
  }
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .mobile-nav {
    width: 85vw;
    max-width: 320px;
  }
}

/* Extra Small Devices (max-width: 380px) */
@media (max-width: 380px) {
  .top-contacts {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  .hero-content h1 {
    font-size: 1.65rem;
  }
  .countries-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */

/* Section Tagline */
.section-tag {
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Who We Are Section */
.who-we-are-section {
  padding: 4.5rem 0;
  background-color: var(--bg-body);
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.who-we-are-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background-color: var(--bg-subtle);
}

.who-we-are-img-box img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.who-we-are-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.who-we-are-content p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.who-we-are-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.feature-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Our Mission, Vision & Values Section */
.mvv-section {
  padding: 4.5rem 0;
  background-color: var(--bg-card);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mvv-card {
  background: var(--bg-body);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all var(--transition-fast);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.mvv-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mvv-icon-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.mvv-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.mvv-info p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Why Choose AB Establishment LTD. RL-618? Section */
.why-choose-section {
  padding: 4.5rem 0;
  background-color: var(--bg-body);
  text-align: center;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.why-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E8F0FE;
  color: #1A73E8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.why-icon-badge svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Message from Our Managing Director */
.md-message-section {
  padding: 4.5rem 0;
  background-color: var(--bg-body);
}

.md-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.md-img-wrap {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #CBD5E1;
}

.md-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.md-content p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.md-signature-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.md-author h5 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 0.1rem;
}

.md-author p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.md-signature-img {
  height: 45px;
  width: auto;
  opacity: 0.9;
}

/* Our Leadership Team Section */
.leadership-section {
  padding: 4.5rem 0;
  background-color: var(--bg-card);
  text-align: center;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  text-align: center;
}

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

.team-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #E2E8F0;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

.team-info {
  padding: 1rem 0.75rem;
}

.team-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  color: #0A66C2;
  transition: transform var(--transition-fast);
}

.team-linkedin:hover {
  transform: scale(1.2);
}

.team-linkedin svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Certificates & Compliance Section */
.compliance-section {
  padding: 4.5rem 0;
  background-color: var(--bg-body);
  text-align: center;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.compliance-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.compliance-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.compliance-badge-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-badge-icon svg {
  width: 44px;
  height: 44px;
}

.compliance-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
}

.compliance-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Our Journey Section */
.journey-section {
  padding: 4.5rem 0;
  background-color: var(--bg-card);
  text-align: center;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.75rem;
  position: relative;
  margin-top: 3rem;
}

.journey-track::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: repeating-linear-gradient(to right, #10B981 0, #10B981 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.journey-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.journey-year {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.journey-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  max-width: 120px;
}

/* Responsive Rules for About Us Page */
@media (max-width: 1024px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .md-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .md-img-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .md-signature-area {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .compliance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .journey-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1rem;
  }
  .journey-track::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .who-we-are-features {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  .journey-track {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICES PAGE SPECIFIC STYLES
   ========================================================================== */

/* 1. Core Services Section */
.core-services-section {
  padding: 4.5rem 0;
  background-color: var(--bg-body);
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.core-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.core-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.core-service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.core-service-icon.green-badge {
  background-color: #E6F4EA;
  color: #10B981;
}

.core-service-icon.blue-badge {
  background-color: #E8F0FE;
  color: #2563EB;
}

.core-service-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.core-service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.core-service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 2. Target Audience Services Section (Candidates & Employers) */
.audience-services-section {
  padding: 2.5rem 0 4.5rem 0;
  background-color: var(--bg-body);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.audience-card {
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.75rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.audience-card.candidate-card {
  background-color: #F0FDF4;
  border-color: #DCFCE7;
}

.audience-card.employer-card {
  background-color: #EFF6FF;
  border-color: #DBEAFE;
}

.audience-img-box {
  width: 100%;
  height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #E2E8F0;
  box-shadow: var(--shadow-sm);
}

.audience-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.audience-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-header-icon.green {
  background-color: #10B981;
  color: #FFFFFF;
}

.audience-header-icon.blue {
  background-color: #0B1B3D;
  color: #FFFFFF;
}

.audience-header-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.audience-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.candidate-card .audience-header h3 {
  color: #047857;
}

.employer-card .audience-header h3 {
  color: #0B1B3D;
}

.audience-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.checklist-item .check-mark {
  font-weight: 800;
  font-size: 0.95rem;
}

.candidate-card .check-mark {
  color: #10B981;
}

.employer-card .check-mark {
  color: #2563EB;
}

/* 3. Why Choose Our Services Section */
.why-services-section {
  padding: 4.5rem 0;
  background-color: var(--bg-body);
  text-align: center;
}

.why-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.why-service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-fast);
}

.why-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.why-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.why-service-icon.green-badge {
  background-color: #E6F4EA;
  color: #10B981;
}

.why-service-icon.blue-badge {
  background-color: #E8F0FE;
  color: #0B1B3D;
}

.why-service-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.why-service-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.why-service-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* 4. Frequently Asked Questions (FAQ) Section */
.faq-section {
  padding: 4.5rem 0;
  background-color: var(--bg-body);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.faq-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.25rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.faq-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-question {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  line-height: 1.4;
}

.faq-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
  font-size: 0.825rem;
  color: var(--text-body);
  line-height: 1.55;
}

.faq-card.active .faq-answer {
  max-height: 200px;
  margin-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

.faq-card.active .faq-arrow {
  transform: rotate(90deg);
  color: var(--primary-green);
}

/* 3. Recruitment Process Section */
.process-section {
  padding: 4.5rem 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
}

.process-step {
  background-color: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.85rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.step-num-badge {
  position: absolute;
  top: -12px;
  background-color: var(--primary-navy);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.process-step:nth-child(odd) .step-num-badge {
  background-color: var(--primary-green);
}

.step-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #E6F4EA;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.process-step:nth-child(even) .step-icon-box {
  background-color: #E8F0FE;
  color: #2563EB;
}

.step-icon-box svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive Rules for Services Page */
@media (max-width: 1200px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1rem;
  }
}

@media (max-width: 1024px) {
  .core-services-section, .audience-services-section, .process-section, .why-services-section, .faq-section {
    padding: 3.5rem 0;
  }
  .core-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .audience-card {
    grid-template-columns: 180px 1fr;
  }
  .why-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .core-services-section, .audience-services-section, .process-section, .why-services-section, .faq-section {
    padding: 2.5rem 0;
  }
  .core-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
  .audience-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }
  .audience-img-box {
    height: 190px;
  }
  .why-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .manpower-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .manpower-banner-card .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .why-services-grid {
    grid-template-columns: 1fr;
  }
  .audience-header h3 {
    font-size: 1.2rem;
  }
  .checklist-item {
    font-size: 0.84rem;
  }
  .audience-img-box {
    height: 160px;
  }
}

@media (max-width: 380px) {
  .core-service-card {
    padding: 1.25rem 1rem;
  }
  .core-service-title {
    font-size: 0.98rem;
  }
}

/* ==========================================================================
   CONTACT US PAGE SPECIFIC STYLES
   ========================================================================== */

/* 1. Contact Info Section */
.contact-info-section {
  padding: 4rem 0 2.5rem 0;
  background-color: var(--bg-body);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-info-icon.green-badge {
  background-color: #E6F4EA;
  color: #10B981;
}

.contact-info-icon.blue-badge {
  background-color: #E8F0FE;
  color: #2563EB;
}

.contact-info-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.contact-info-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.contact-info-card p {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.contact-info-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.contact-info-link:hover {
  color: var(--green-hover);
  text-decoration: underline;
}

/* 2. Contact Form & Map Section */
.contact-main-section {
  padding: 2.5rem 0 4.5rem 0;
  background-color: var(--bg-body);
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-box {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-header {
  margin-bottom: 1.75rem;
}

.form-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.form-header p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-control, .form-select, textarea.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.925rem;
  font-family: inherit;
  color: var(--text-dark);
  background-color: #F8FAFC;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus, .form-select:focus, textarea.form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.user-type-selector {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.user-type-radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
}

.user-type-radio input[type="radio"] {
  accent-color: var(--primary-green);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btn-submit-contact {
  width: 100%;
  padding: 0.95rem;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.form-alert-message {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #047857;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.form-alert-message.active {
  display: block;
}

/* Map & Branches Box */
.contact-map-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-card-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 280px;
}

.map-card-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.branches-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.branches-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
}

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.branch-item {
  background-color: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-light);
}

.branch-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.branch-name svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-green);
}

.branch-address {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* 3. Emergency Support Banner */
.emergency-banner-section {
  padding: 2rem 0;
  background-color: var(--bg-body);
}

.emergency-banner-card {
  background: linear-gradient(135deg, #0B1B3D 0%, #061229 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
}

.emergency-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.emergency-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.emergency-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Responsive Rules for Contact Page */
@media (max-width: 1024px) {
  .contact-info-section {
    padding: 3rem 0 2rem 0;
  }
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-box {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .user-type-selector {
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-form-box {
    padding: 1.5rem 1.25rem;
  }
  .form-header h2 {
    font-size: 1.5rem;
  }
  .branches-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .map-card-wrapper {
    height: 240px;
  }
  .branches-card {
    padding: 1.25rem;
  }
  .emergency-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .emergency-info h3 {
    font-size: 1.2rem;
  }
  .emergency-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .emergency-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-info-card {
    padding: 1.5rem 1rem;
  }
  .contact-info-card h4 {
    font-size: 1rem;
  }
  .form-control, .form-select, textarea.form-control {
    padding: 0.7rem 0.85rem;
    font-size: 0.875rem;
  }
  .btn-submit-contact {
    padding: 0.85rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .contact-form-box {
    padding: 1.25rem 0.9rem;
  }
  .user-type-radio {
    font-size: 0.825rem;
  }
}



