/* =====================================================
   MARKOPOLO FOREIGN EMPLOYMENT AGENCY
   Main Stylesheet — css/style.css
   ===================================================== */

/* =========================================
   1. CSS VARIABLES / ROOT
   ========================================= */
:root {
  /* Primary Colors */
  --primary:        #1a3c6e;
  --primary-dark:   #112850;
  --primary-light:  #2a5298;
  --secondary:      #2563eb;

  /* Accent / Gold */
  --gold:           #c9a227;
  --gold-light:     #f0c040;
  --gold-dark:      #a07c10;

  /* Backgrounds */
  --bg-body:        #f4f6fb;
  --bg-white:       #ffffff;
  --bg-section:     #eef1f8;
  --bg-dark:        #0d1b3e;
  --bg-card:        #ffffff;
  --bg-overlay:     rgba(26, 60, 110, 0.88);

  /* Text */
  --text-dark:      #1e293b;
  --text-medium:    #475569;
  --text-light:     #94a3b8;
  --text-white:     #ffffff;
  --text-muted:     #64748b;

  /* Border */
  --border:         #dde4f0;
  --border-focus:   #2563eb;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(26,60,110,0.08);
  --shadow-md:      0 4px 20px rgba(26,60,110,0.12);
  --shadow-lg:      0 8px 40px rgba(26,60,110,0.18);
  --shadow-xl:      0 16px 60px rgba(26,60,110,0.22);
  --shadow-gold:    0 4px 20px rgba(201,162,39,0.3);

  /* Borders Radius */
  --radius-sm:      4px;
  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    9999px;

  /* Transitions */
  --trans:          all 0.3s ease;
  --trans-fast:     all 0.15s ease;
  --trans-slow:     all 0.5s ease;

  /* Spacing */
  --section-py:     80px;
  --container-max:  1200px;

  /* Typography */
  --font-heading:   'Poppins', sans-serif;
  --font-body:      'Open Sans', sans-serif;
  --font-mono:      'Courier New', monospace;

  /* Nav */
  --nav-height:     80px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg-body:        #0d1b3e;
  --bg-white:       #1a2744;
  --bg-section:     #1a2744;
  --bg-card:        #1e2f55;
  --text-dark:      #e2e8f0;
  --text-medium:    #b0bccc;
  --text-muted:     #8899aa;
  --border:         #2a3f6a;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.5);
}

/* =========================================
   2. RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.no-scroll { overflow: hidden; }

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-medium); }
p:last-child { margin-bottom: 0; }

/* =========================================
   4. CONTAINER & LAYOUT
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: var(--section-py) 0; }

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* =========================================
   5. SECTION TITLES
   ========================================= */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title h2 {
  margin-bottom: 16px;
  position: relative;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-title.left-align {
  text-align: left;
}
.section-title.left-align h2::after {
  margin: 16px 0 0;
}

/* =========================================
   6. BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(26,60,110,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,60,110,0.4);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--text-white);
  color: var(--text-white);
}
.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--primary);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--text-white);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.btn-email {
  background: linear-gradient(135deg, #ea4335, #c62828);
  color: var(--text-white);
}
.btn-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234,67,53,0.4);
}

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* =========================================
   7. LOADING SCREEN
   ========================================= */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.loader-logo span { color: var(--gold); }

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  margin-top: 24px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  animation: loadBar 1.5s ease-in-out forwards;
}

/* =========================================
   8. NAVBAR / HEADER
   ========================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}

[data-theme="dark"] #site-header {
  background: rgba(13,27,62,0.95);
}

#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.2;
}

.nav-logo-tag {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--trans);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: var(--trans);
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary-dark) !important;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.nav-cta::after { display: none; }

/* Nav Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Dark mode toggle */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--trans);
}

.theme-toggle:hover {
  background: var(--bg-section);
  border-color: var(--gold);
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* License badge */
.nav-license {
  font-size: 0.72rem;
  background: var(--bg-section);
  color: var(--text-medium);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* =========================================
   9. BREADCRUMB
   ========================================= */
.breadcrumb-wrapper {
  background: var(--primary-dark);
  padding: 60px 0 30px;
  margin-top: var(--nav-height);
}

.breadcrumb-content h1 {
  color: var(--text-white);
  margin-bottom: 8px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb-nav a { color: var(--gold); }
.breadcrumb-nav a:hover { color: var(--gold-light); }
.breadcrumb-nav .separator { color: rgba(255,255,255,0.3); }
.breadcrumb-nav .current { color: rgba(255,255,255,0.8); }

/* =========================================
   10. HERO SECTION
   ========================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201,162,39,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.2) 0%, transparent 50%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--text-white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 .accent { color: var(--gold-light); }

.hero-typewriter {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  min-height: 2em;
}

.hero-typewriter .typed-text {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-typewriter .cursor {
  display: inline-block;
  width: 2px;
  background: var(--gold-light);
  animation: blink 1s infinite;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

.hero-scroll i { font-size: 1.2rem; }

/* Hero image side */
.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-height: 90%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  height: 90vh;
  object-fit: cover;
  opacity: 0.25;
}

.hero-cards-float {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.hero-float-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  min-width: 200px;
  animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card:nth-child(2) { animation-delay: 1s; }
.hero-float-card:nth-child(3) { animation-delay: 2s; }

.hero-float-card .card-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hero-float-card .card-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

.hero-float-card .card-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* =========================================
   11. CARDS
   ========================================= */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-white);
  margin-bottom: 20px;
}

.card-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
}

/* =========================================
   12. STATISTICS COUNTER
   ========================================= */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-white);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.1) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-icon {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .counter { display: inline; }
.stat-number .suffix { color: var(--gold-light); }

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   13. COUNTRIES SECTION
   ========================================= */
.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--trans);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--trans);
}

.country-card:hover::before { opacity: 1; }
.country-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.country-card:hover .country-name,
.country-card:hover .country-jobs { color: var(--text-white); }
.country-card:hover .country-flag { transform: scale(1.15); }

.country-flag {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
  transition: var(--trans);
  position: relative;
}

.country-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  position: relative;
  transition: var(--trans);
}

.country-jobs {
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
  transition: var(--trans);
}

/* =========================================
   14. WHY CHOOSE US
   ========================================= */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,60,110,0.08), rgba(37,99,235,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--trans);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-white);
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* =========================================
   15. TESTIMONIALS
   ========================================= */
.testimonials-section {
  background: var(--bg-section);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 15px;
}

.testimonial-inner {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-inner::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 40px;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-country {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-left: auto;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}

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

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--trans);
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* =========================================
   16. VACANCY CARDS
   ========================================= */
.vacancy-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}

.filter-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

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

.filter-select {
  padding: 9px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-card);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--trans);
  outline: none;
}

.filter-select:focus { border-color: var(--primary); }

.search-bar {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 11px 20px 11px 44px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-card);
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  transition: var(--trans);
}

.search-bar input:focus { border-color: var(--primary); }

.search-bar .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.vacancy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.vacancy-card.urgent::before {
  content: 'URGENT';
  position: absolute;
  top: 16px;
  right: -20px;
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 28px;
  transform: rotate(45deg);
  transform-origin: center;
}

.vacancy-card.featured .vc-header { border-left: 4px solid var(--gold); padding-left: 12px; }

.vc-header { margin-bottom: 16px; }

.vc-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.vc-company {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.vc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.vc-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-medium);
  background: var(--bg-section);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.vc-tag i { color: var(--primary); font-size: 0.75rem; }
.vc-tag.salary { color: #16a34a; background: #f0fdf4; }
.vc-tag.salary i { color: #16a34a; }

.vc-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.vc-positions {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* =========================================
   17. FAQ ACCORDION
   ========================================= */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--trans);
}

.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--bg-card);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--trans);
  gap: 16px;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--trans);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--text-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg-card);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p { margin: 0; font-size: 0.92rem; }

/* =========================================
   18. FORMS
   ========================================= */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-label .required { color: #ef4444; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: var(--trans);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-control.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-control.success { border-color: #16a34a; }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 4px;
}

.form-group.has-error .form-error { display: block; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* File upload */
.file-upload-wrapper {
  position: relative;
}

.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
  background: var(--bg-section);
}

.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--primary);
  background: rgba(37,99,235,0.04);
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 12px; }
.file-upload-text { font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.file-upload-sub { font-size: 0.8rem; color: var(--text-muted); }
.file-name-display { margin-top: 12px; font-size: 0.85rem; color: var(--primary); font-weight: 600; display: none; }

/* Multi-step form */
.step-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.step-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-progress-bar {
  position: absolute;
  top: 20px;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  z-index: 1;
  transition: width 0.5s ease;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--trans);
}

.step-item.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
}

.step-item.completed .step-circle {
  background: #16a34a;
  border-color: #16a34a;
  color: var(--text-white);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-item.active .step-label { color: var(--primary); }

.form-step { display: none; }
.form-step.active { display: block; }

/* =========================================
   19. PROCESS TIMELINE
   ========================================= */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--gold));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--trans);
}

.timeline-content:hover { box-shadow: var(--shadow-md); }

.timeline-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-body), 0 0 0 6px var(--primary);
}

.timeline-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* =========================================
   20. TEAM SECTION
   ========================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  transition: var(--trans);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-white);
  border: 4px solid var(--bg-section);
  overflow: hidden;
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.83rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.team-social { display: flex; gap: 10px; justify-content: center; }
.team-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-section); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; transition: var(--trans);
}
.team-social a:hover { background: var(--primary); color: var(--text-white); }

/* =========================================
   21. GALLERY LIGHTBOX
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-section);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans-slow); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bg-section), var(--border));
  color: var(--text-muted);
  font-size: 2rem;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans);
}

.gallery-overlay i { font-size: 2rem; color: var(--text-white); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   22. CTA SECTIONS
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,162,39,0.12) 0%, transparent 70%);
}

.cta-section h2, .cta-section p { color: var(--text-white); position: relative; }
.cta-section p { opacity: 0.8; max-width: 600px; margin: 0 auto 32px; }
.cta-section h2 { margin-bottom: 16px; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* Employer CTA */
.employer-cta {
  background: var(--bg-section);
  padding: var(--section-py) 0;
}

.employer-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================================
   23. CONTACT MAP
   ========================================= */
.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-section);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}

.map-placeholder i { font-size: 3rem; color: var(--primary); }
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,60,110,0.1), rgba(37,99,235,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.92rem;
}

.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--primary); }

/* =========================================
   24. NOTIFICATION / POPUP
   ========================================= */
.notification-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  width: 100%;
}

.notification {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification.show { transform: translateX(0); }
.notification.success { border-color: #16a34a; }
.notification.error { border-color: #ef4444; }
.notification.warning { border-color: var(--gold); }

.notification-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.notification.success .notification-icon { color: #16a34a; }
.notification.error .notification-icon { color: #ef4444; }
.notification.warning .notification-icon { color: var(--gold); }
.notification.info .notification-icon { color: var(--primary); }

.notification-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.notification-message { font-size: 0.82rem; color: var(--text-muted); }

.notification-close {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 2px;
  flex-shrink: 0;
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  padding: 20px;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.open .modal { transform: scale(1); }

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.modal-icon.success { background: #f0fdf4; color: #16a34a; }
.modal-icon.error { background: #fef2f2; color: #ef4444; }

.modal h3 { margin-bottom: 12px; }
.modal p { margin-bottom: 28px; }

/* =========================================
   25. FLOATING BUTTONS
   ========================================= */
/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--trans);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-float .wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.2);
  animation: pulse 2s infinite;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--bg-dark);
  color: var(--text-white);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--trans);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 900;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--trans);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Dark Mode FAB */
.theme-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--trans);
}

.theme-fab:hover { border-color: var(--gold); color: var(--gold); transform: rotate(20deg); }

/* =========================================
   26. FOOTER
   ========================================= */
#site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 70px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img { height: 48px; }

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
}

.footer-logo-text span { color: var(--gold); display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; }

.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }

.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.78rem;
  color: var(--gold-light);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
}

.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-links a i { font-size: 0.7rem; color: var(--gold); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: var(--trans);
  color: rgba(255,255,255,0.7);
}

.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; transition: var(--trans); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =========================================
   27. PAGINATION
   ========================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}

.page-btn:hover, .page-btn.active {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* =========================================
   28. ABOUT PAGE SPECIFICS
   ========================================= */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vm-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.vm-card.vision::before { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.vm-card.mission::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.vm-icon { font-size: 2.5rem; margin-bottom: 20px; }
.vm-card.vision .vm-icon { color: var(--primary); }
.vm-card.mission .vm-icon { color: var(--gold); }

.vm-card h3 { margin-bottom: 16px; }

.vm-list { display: flex; flex-direction: column; gap: 10px; }
.vm-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.vm-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* =========================================
   29. CERTIFICATIONS
   ========================================= */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cert-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--trans);
}

.cert-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }

.cert-icon { font-size: 3rem; color: var(--gold); margin-bottom: 12px; }
.cert-name { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.cert-number { font-size: 0.82rem; color: var(--text-muted); }

/* =========================================
   30. UTILITY CLASSES
   ========================================= */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--text-white); }

.bg-primary { background: var(--primary); }
.bg-gold { background: var(--gold); }
.bg-section { background: var(--bg-section); }
.bg-dark { background: var(--bg-dark); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Animations trigger */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary { background: rgba(26,60,110,0.1); color: var(--primary); }
.badge-gold { background: rgba(201,162,39,0.12); color: var(--gold-dark); }
.badge-green { background: #f0fdf4; color: #16a34a; }
.badge-red { background: #fef2f2; color: #ef4444; }

/* Quick apply form on home */
.quick-apply {
  background: var(--bg-section);
  padding: var(--section-py) 0;
}

.quick-apply-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

/* Features list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-medium);
}

.feature-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* About company summary card on home */
.about-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-block {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  color: var(--text-white);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--trans);
}

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

.service-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: var(--trans);
}

.service-card:hover .service-icon { color: var(--gold); }
.service-card h3 { font-size: 1rem; margin-bottom: 10px; }

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-results i { font-size: 3rem; margin-bottom: 16px; }

/* Working hours */
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; font-size: 0.88rem; }
.hours-table td:last-child { text-align: right; color: var(--primary); font-weight: 600; }
.hours-open { color: #16a34a !important; }
.hours-closed { color: #ef4444 !important; }
