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

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Custom Easing Curves (Emil Kowalski Spec) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  /* Theme Defaults (Light Mode) */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-hover: rgba(241, 245, 249, 0.9);
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --primary-color: #01CC00;
  --primary-hover: #01ab00;
  --primary-rgb: 1, 204, 0;
  --secondary-brand: #0000CC;
  --secondary-brand-hover: #0000a3;
  --secondary-brand-rgb: 0, 0, 204;
  --accent-color: #FE9900;
  --accent-hover: #e08700;
  --accent-rgb: 254, 153, 0;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-glow: rgba(1, 204, 0, 0.25);
  --shadow-color: rgba(15, 23, 42, 0.06);
  --overlay-bg: rgba(255, 255, 255, 0.95);
  --glass-blur: blur(12px);
  --success-color: #01CC00;
  --success-light: rgba(1, 204, 0, 0.12);

  /* Layout */
  --container-max-width: 1280px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* ==========================================
   BASE STYLES
   ========================================== */
*, *::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-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 300ms var(--ease-out), color 300ms var(--ease-out);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 150ms var(--ease-out), transform 150ms var(--ease-out);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

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

ul {
  list-style: none;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* Section Common Styling */
section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.1);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-title span {
  color: #0000CC;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #0000CC;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.1rem;
  }
  .section-header {
    margin-bottom: 3rem;
  }
}

/* ==========================================
   TACTILE PRESS PHYSICS (Emil Kowalski Spec)
   ========================================== */
.interactive-press {
  transition: transform 160ms var(--ease-out), opacity 150ms var(--ease-out), background-color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}

.interactive-press:active {
  transform: scale(0.97) !important;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease-out);
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.4);
    transform: translateY(-2px);
  }

  .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
  }

  .btn-accent:hover {
    box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.35);
    transform: translateY(-2px);
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), rgba(var(--primary-rgb), 0.8));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.25);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-rgb), 0.8));
  color: #0b1329;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.2);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: height 300ms var(--ease-out), background-color 300ms var(--ease-out), border-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.header.scrolled {
  height: 70px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
  backdrop-filter: var(--glass-blur);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-primary);
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.footer-brand .logo-text {
  font-size: 1.25rem;
  white-space: normal;
  max-width: 250px;
}

@media (max-width: 991px) {
  .logo-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.85rem;
  }
}

.logo-text span {
  color: var(--primary-color);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms var(--ease-out);
}

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

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}



/* Menu Toggle Button (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 100px;
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem;
    gap: 1.25rem;
    box-shadow: -10px 0 30px var(--shadow-color);
    transition: right 350ms var(--ease-drawer);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .header-actions .btn {
    display: none;
  }
}

.mobile-nav-actions {
  display: none;
  width: 100%;
  margin-top: 0.75rem;
}

@media (max-width: 992px) {
  .mobile-nav-actions {
    display: block;
  }
}

/* Burger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%),
                    url('assets/hero_puzzle.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: left;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}

.hero-title span {
  color: var(--primary-color);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: var(--primary-color);
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 620px;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: var(--glass-blur);
}

@media (hover: hover) and (pointer: fine) {
  .hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: calc(var(--header-height) + 5rem);
    min-height: auto;
    padding-bottom: 6rem;
  }
  .hero-title {
    font-size: 3.25rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}


   TRUST / STATS BANNER
   ========================================== */
.stats-banner {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 60%;
  background-color: var(--border-color);
  transform: translateY(-50%);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stat-item::after {
    display: none;
  }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.25rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 150ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: 0 15px 35px var(--shadow-color);
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover .service-icon-box {
    background: var(--primary-color);
    color: #0b1329;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
  }
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  transition: transform 250ms var(--ease-out), background-color 200ms var(--ease-out), color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
}

.service-feature-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries {
  background-color: var(--bg-secondary);
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #0b1329;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.25);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out);
}

.industry-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (hover: hover) and (pointer: fine) {
  .industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 25px var(--shadow-color);
  }

  .industry-card:hover .industry-icon {
    background: var(--primary-color);
    color: #ffffff;
  }
}

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

.industry-icon {
  width: 50px;
  height: 50px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out);
}

.industry-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.industry-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

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

/* ==========================================
   RECRUITMENT PROCESS SECTION
   ========================================== */
.process-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.process-timeline::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  position: relative;
  background: none;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1rem;
  transition: transform 200ms var(--ease-out), background-color 200ms var(--ease-out), border-color 200ms var(--ease-out), color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  box-shadow: 0 0 0 6px var(--bg-primary);
}

.step-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 150ms var(--ease-out);
}

.process-step-btn.active .step-number {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #0b1329;
  box-shadow: 0 0 0 6px var(--bg-primary), 0 0 20px rgba(var(--primary-rgb), 0.4);
  transform: scale(1.1);
}

.process-step-btn.active .step-label {
  color: var(--text-primary);
}

/* Detail Display Card (Emil Spec: Blur Transition Ready) */
.process-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 20px 45px var(--shadow-color);
  min-height: 280px;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  transition: filter 160ms var(--ease-out), opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.process-detail-card.transitioning {
  filter: blur(2px);
  opacity: 0.6;
  transform: translateY(5px);
}

.process-detail-content {
  flex: 1;
}

.process-detail-step {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.process-detail-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.process-detail-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.process-detail-icon {
  width: 120px;
  height: 120px;
  background: rgba(var(--primary-rgb), 0.08);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}

@media (max-width: 992px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
  .process-timeline::after {
    display: none;
  }
  .process-detail-card {
    flex-direction: column;
    padding: 2.5rem;
    gap: 2rem;
    text-align: center;
  }
  .process-detail-icon {
    order: -1;
  }
}

@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-detail-title {
    font-size: 1.75rem;
  }
}

/* ==========================================
   COUNTRIES WE SERVE
   ========================================== */
.countries {
  background-color: var(--bg-secondary);
}

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

.country-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
  .country-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 35px var(--shadow-color);
  }
}

.country-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.country-card:nth-child(1) .country-image {
  background-image: linear-gradient(rgba(11, 19, 41, 0.2), rgba(11, 19, 41, 0.8)), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&w=400&q=80');
}
.country-card:nth-child(2) .country-image {
  background-image: linear-gradient(rgba(11, 19, 41, 0.2), rgba(11, 19, 41, 0.8)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=400&q=80');
}
.country-card:nth-child(3) .country-image {
  background-image: linear-gradient(rgba(11, 19, 41, 0.2), rgba(11, 19, 41, 0.8)), url('https://images.unsplash.com/photo-1540959733332-eab4deceeaf7?auto=format&fit=crop&w=400&q=80');
}
.country-card:nth-child(4) .country-image {
  background-image: linear-gradient(rgba(11, 19, 41, 0.2), rgba(11, 19, 41, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=400&q=80');
}

.country-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: #0b1329;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
}

.country-info {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.country-title {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

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

.country-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.country-detail-row {
  display: flex;
  justify-content: space-between;
}

.country-detail-label {
  color: var(--text-muted);
}

.country-detail-val {
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 992px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .countries-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   MISSION, VISION & VALUES
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-graphics {
  position: relative;
}

.about-img-box {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px var(--shadow-color);
  border: 1px solid var(--border-color);
  z-index: 2;
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent-color);
  color: #0b1329;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 3;
  max-width: 250px;
  font-family: var(--font-heading);
}

.about-floating-card h4 {
  color: #0b1329;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.about-floating-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
  opacity: 0.9;
}

.about-tabs-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.about-tab-btn {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  padding-bottom: 0.75rem;
}

.about-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 160ms var(--ease-out);
}

.about-tab-btn.active {
  color: var(--text-primary);
}

.about-tab-btn.active::after {
  transform: scaleX(1);
}

.about-tab-content {
  display: none;
  transition: filter 160ms var(--ease-out), opacity 160ms var(--ease-out);
}

.about-tab-content.transitioning {
  filter: blur(2px);
  opacity: 0.6;
}

.about-tab-content.active {
  display: block;
}

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

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

.value-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-graphics {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .about-floating-card {
    position: static;
    margin: 1.5rem auto 0 auto;
    max-width: 100%;
  }
  .values-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   STRATEGIC APPROACH & WHY CHOOSE US
   ========================================== */
.why-choose-us {
  background-color: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature-card {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
}

@media (hover: hover) and (pointer: fine) {
  .why-feature-card:hover {
    border-color: var(--border-glow);
    transform: translateX(5px);
    box-shadow: 0 10px 25px var(--shadow-color);
  }

  .why-feature-card:hover .why-feature-num {
    color: var(--primary-color);
  }
}

.why-feature-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(var(--primary-rgb), 0.3);
  transition: color 150ms var(--ease-out);
}

.why-feature-details h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.why-feature-details p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.why-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.why-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

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

.tick-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 550;
}

.tick-item svg {
  color: var(--success-color);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 576px) {
  .strategic-ticks {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CONTACT CTA SECTION
   ========================================== */
.contact {
  padding-bottom: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 30px 60px var(--shadow-color);
  margin-bottom: 6rem;
}

.contact-info-panel {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--primary-rgb), 0.08));
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-color);
}

.contact-info-panel h3 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-link-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.contact-link-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-link-details p, .contact-link-details a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .contact-link-details a:hover {
    color: var(--primary-color);
  }
}

.trust-badges {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.trust-badge-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.trust-badge-flex {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge-pill {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

/* Contact Form Side */
.contact-form-panel {
  padding: 4rem 3.5rem;
}

.form-toggle-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.form-toggle-btn {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  padding-bottom: 0.75rem;
}

.form-toggle-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 160ms var(--ease-out);
}

.form-toggle-btn.active {
  color: var(--text-primary);
}

.form-toggle-btn.active::after {
  transform: scaleX(1);
}

.form-panel-content {
  display: none;
}

.form-panel-content.active {
  display: block;
}

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

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

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

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

.submit-btn {
  margin-top: 1rem;
}

.form-success-msg {
  display: none;
  background-color: var(--success-light);
  border: 1px solid var(--success-color);
  color: var(--text-primary);
  padding: 1.25rem;
  border-radius: var(--border-radius-sm);
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
  animation: fadeIn 300ms var(--ease-out) forwards;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 3rem;
  }
  .contact-form-panel {
    padding: 3rem;
  }
}

@media (max-width: 576px) {
  .contact-info-panel, .contact-form-panel {
    padding: 2rem 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: #050a18;
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.925rem;
}

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

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

.footer-brand .logo {
  font-size: 1.75rem;
  color: #ffffff;
}

.footer-brand-desc {
  max-width: 320px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover {
    background: var(--primary-color);
    color: #0b1329;
    border-color: var(--primary-color);
    transform: translateY(-2px);
  }
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.75rem;
}

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

@media (hover: hover) and (pointer: fine) {
  .footer-link-item a:hover {
    color: var(--primary-color);
    padding-left: 4px;
  }
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

@media (hover: hover) and (pointer: fine) {
  .footer-legal-links a:hover {
    color: var(--primary-color);
  }
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #0b1329;
  border: none;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), background-color 200ms var(--ease-out);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
  }
}

/* ==========================================
   REVEAL ON SCROLL ANIMATION CLASSES
   ========================================== */
.reveal-element {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================
   SUBPAGE HERO STYLING
   ========================================== */
.subpage-hero {
  padding: calc(var(--header-height) + 3.5rem) 0 3rem 0;
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.08), rgba(217, 119, 6, 0.05)),
              radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.06) 0%, transparent 40%),
              var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.subpage-hero .section-title {
  margin-bottom: 0.5rem;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .subpage-hero {
    padding: calc(var(--header-height) + 2.5rem) 0 2.5rem 0;
  }
  .subpage-hero .section-title {
    font-size: 2.25rem;
  }
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--primary-color);
}

@media (hover: hover) and (pointer: fine) {
  .breadcrumbs a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
  }
}

.breadcrumbs span {
  font-weight: 400;
}

.subpage-content {
  padding: 6rem 0;
}

.about-history {
  margin-top: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  backdrop-filter: var(--glass-blur);
}

.about-history h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.about-history p {
  margin-bottom: 1.5rem;
}

.about-history p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   STAGGER TRANSITIONS (Emil Spec)
   ========================================== */
.stagger-item {
  opacity: 0;
  transform: translateY(15px);
  animation: staggerReveal 400ms var(--ease-out) forwards;
  animation-delay: calc(var(--stagger-index, 0) * 45ms);
}

@keyframes staggerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
