/* CSS Variables - Professional Color Palette */
:root {
  /* Primary Colors */
  --primary-color: #03027A;
  --primary-light: rgba(3, 2, 122, 0.1);
  --primary-dark: #02025a;
  
  /* Secondary Colors */
  --secondary-color: #10b981;
  --secondary-light: rgba(16, 185, 129, 0.1);
  
  /* Neutral Colors */
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  
  /* Background Colors */
  --bg-gradient: linear-gradient(180deg, #fcfcff 0%, #f7f7ff 100%);
  --card-bg: #ffffff;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  /* Container */
  --container-width: 1200px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-gradient);
  color: var(--neutral-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

.text-primary {
  color: var(--primary-color);
}

.lead {
  font-size: 1.125rem;
  color: var(--neutral-600);
  margin-bottom: var(--spacing-lg);
  max-width: 1200px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-color), #4b4ae1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(5deg);
}

.brand h1 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.brand p {
  font-size: 0.75rem;
  color: var(--neutral-500);
  margin: 0;
}

.nav-actions {
  display: flex;
  gap: var(--spacing-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn.primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn.secondary {
  background: white;
  color: var(--primary-color);
  border: 1px solid var(--neutral-300);
}

.btn.secondary:hover {
  background: var(--neutral-50);
  transform: translateY(-1px);
  border-color: var(--primary-color);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  padding: var(--spacing-xl) 0;
}

.hero-left h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
}

.stat-card {
  background: var(--card-bg);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--neutral-600);
  margin-bottom: 0.5rem;
}

.stat-graph {
  height: 4px;
  background: var(--neutral-200);
  border-radius: 2px;
  overflow: hidden;
}

.graph-bar {
  height: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  width: 90%;
}

.hero-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--primary-light);
  color: var(--primary-color);
}

/* Hero Illustration */
.hero-illustration {
  background: var(--card-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
}

.connection-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md);
}

.person-card {
  text-align: center;
  width: 120px;
}

.person-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  font-size: 1.25rem;
}

.person-info h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.person-info p {
  font-size: 0.75rem;
  color: var(--neutral-600);
  margin: 0;
}

.connection-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.connection-center::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neutral-200);
}

.center-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

/* Sections */
section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.mission-card {
  background: var(--primary-color);
  color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
}

.mission-card h3 {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: white;
  margin-bottom: var(--spacing-sm);
}

.data-visualization h4 {
  font-size: 1rem;
  color: var(--neutral-700);
  margin-bottom: var(--spacing-md);
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.data-item {
  background: var(--card-bg);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
}

.data-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.data-label {
  font-size: 0.75rem;
  color: var(--neutral-600);
  margin-bottom: var(--spacing-sm);
}

.data-bar {
  height: 6px;
  background: var(--neutral-200);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 3px;
}

.data-item:nth-child(1) .bar-fill { width: 95%; }
.data-item:nth-child(2) .bar-fill { width: 40%; }
.data-item:nth-child(3) .bar-fill { width: 85%; }
.data-item:nth-child(4) .bar-fill { width: 92%; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.value-card {
  background: var(--card-bg);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  text-align: center;
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  font-size: 1rem;
}

.value-card h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.75rem;
  color: var(--neutral-600);
  margin: 0;
}

.process-card {
  background: var(--card-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-200);
}

.process-card h4 {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.process-step {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--neutral-50);
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.step-text {
  font-size: 0.875rem;
  color: var(--neutral-700);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  background: var(--card-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--neutral-600);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.service-stats {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--neutral-200);
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--neutral-600);
}

/* Jobs Section */
.jobs-section {
  padding: var(--spacing-lg) 0;
}

.jobs-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--spacing-lg);
}

.filters {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.search {
  flex: 1;
  position: relative;
}

.search i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
}

.search input {
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 2.5rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.search input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(3, 2, 122, 0.1);
}

.select {
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  background: white;
  min-width: 140px;
  cursor: pointer;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.job-item {
  background: var(--card-bg);
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  transition: all 0.2s ease;
}

.job-item:hover {
  border-color: var(--primary-color);
  background: rgba(3, 2, 122, 0.02);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.job-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.125rem;
}

.job-company {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.8125rem;
}

.job-category {
  padding: 0.25rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  background: var(--primary-light);
  color: var(--primary-color);
  border: 1px solid rgba(3, 2, 122, 0.2);
}

.job-details {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0;
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.job-detail i {
  font-size: 0.75rem;
  opacity: 0.7;
}

.job-description {
  color: var(--neutral-600);
  font-size: 0.8125rem;
  line-height: 1.4;
  margin: 0.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--neutral-200);
}

.job-salary {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.875rem;
}

.job-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.sidebar-card {
  background: var(--card-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  margin-bottom: var(--spacing-md);
}

.sidebar-card:last-child {
  margin-bottom: 0;
}

.sidebar-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
  font-size: 0.9375rem;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.tip {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.tip-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.tip-content h4 {
  font-size: 0.8125rem;
  margin-bottom: 0.125rem;
}

.tip-content p {
  font-size: 0.75rem;
  color: var(--neutral-500);
  margin: 0;
}

.trends {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trend-label {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--neutral-700);
}

.trend-bar {
  flex: 2;
  height: 4px;
  background: var(--neutral-200);
  border-radius: 2px;
  overflow: hidden;
}

.trend-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 2px;
}

.trend-item:nth-child(1) .trend-fill { width: 85%; }
.trend-item:nth-child(2) .trend-fill { width: 75%; }
.trend-item:nth-child(3) .trend-fill { width: 60%; }

.trend-value {
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 2.5rem;
  text-align: right;
  color: var(--secondary-color);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.team-card {
  background: var(--card-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  text-align: center;
}

.team-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary-color);
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.team-desc {
  color: var(--neutral-600);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
}

.team-stats {
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--neutral-200);
}

.team-stat {
  text-align: center;
}

.team-stat .stat-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.125rem;
}

.team-stat .stat-label {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(3, 2, 122, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.method-details h4 {
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.method-details p {
  color: var(--neutral-600);
  margin-bottom: 0.125rem;
  font-size: 0.8125rem;
}

/* Footer */
footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-brand .logo {
  width: 3rem;
  height: 3rem;
  font-size: 1rem;
}

.footer-brand h2 {
  color: white;
  font-size: 1.125rem;
  margin: 0;
}

.footer-brand p {
  color: var(--neutral-400);
  margin: 0;
  font-size: 0.75rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.footer-column h4 {
  color: white;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--neutral-400);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-social h4 {
  color: white;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--neutral-800);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--neutral-800);
  font-size: 0.75rem;
  color: var(--neutral-500);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  color: var(--neutral-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Countries Section */
.countries-section {
  padding: var(--spacing-xl) 0;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.country-card {
  background: var(--card-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.country-flag {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}

.country-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.country-card p {
  color: var(--neutral-600);
  font-size: 0.8125rem;
  margin-bottom: var(--spacing-sm);
  min-height: 1.5rem;
}

.country-stats {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--neutral-200);
  width: 100%;
  justify-content: center;
}

.country-stats .stat-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
}

.country-stats .stat-label {
  font-size: 0.75rem;
  color: var(--neutral-600);
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  background: var(--primary-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(3, 2, 122, 0.1);
}

.global-stat {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.global-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.global-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.global-content p {
  color: var(--neutral-600);
  font-size: 0.875rem;
  margin: 0;
}

/* Services Grid Update */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

/* Responsive Updates */
@media (max-width: 1024px) {
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .global-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-right {
    display: none;
  }
  
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .global-stats {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-left h2 {
    font-size: 1.75rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .countries-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .data-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .filters {
    flex-direction: column;
  }
  
  .select {
    width: 100%;
  }
}

/* Mobile-specific hero section fixes */
@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
  }
  
  .hero-right {
    display: none;
  }
  
  .hero-left {
    width: 100%;
  }
}

/* Improve mobile navigation */
@media (max-width: 768px) {
  .nav-actions {
    display: none;
  }
  
  .brand {
    width: 100%;
    justify-content: space-between;
  }
}

/* Improve mobile readability */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .stat-value {
    font-size: 1.25rem;
  }
  
  .hero-tags {
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .jobs-container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-left h2 {
    font-size: 2rem;
  }
  
  .hero-right{
      display: none;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .nav-actions {
    display: none;
  }
  
  .connection-visual {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .connection-center {
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
  
  .connection-center::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-left h2 {
    font-size: 1.75rem;
  }
   .hero-right{
      display: none;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .filters {
    flex-direction: column;
  }
  
  .select {
    width: 100%;
  }
  
  .data-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}