/* Main CSS - Imports all component styles */
@import url('components/nav.css');
@import url('components/hero.css');
@import url('components/path.css');
@import url('components/categories.css');
@import url('components/why.css');
@import url('components/employers.css');
@import url('components/jobs.css');
@import url('components/steps.css');
@import url('components/trust.css');
@import url('components/download.css');
@import url('components/footer.css');
@import url('components/modal.css');
@import url('components/legal.css');
@import url('responsive.css');

/* CSS Variables */
:root {
  --blue: #0087C6;
  --navy: #004080;
  --orange: #F68A29;
  --gold: #FFB43C;
  --bg: #f0f6fb;
  --muted: #6a8aa0;
  --border: #cde4f0;
  --grad: linear-gradient(135deg, #004a8c 0%, #0078b8 50%, #0099d4 100%);
  --grad-gold: linear-gradient(135deg, #F68A29, #FFB43C);
  --shadow-sm: 0 4px 12px rgba(0, 64, 128, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 64, 128, 0.15);
  --shadow-lg: 0 16px 36px rgba(0, 64, 128, 0.2);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background: var(--bg);
  color: #1a2a3a;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* Utility Classes */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.rv.show {
  opacity: 1;
  transform: translateY(0);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 135, 198, 0.1);
  color: var(--blue);
  padding: 0.28rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(0, 135, 198, 0.25);
}

.section-tag--gold {
  background: rgba(255, 180, 60, 0.15);
  color: var(--gold);
  border-color: rgba(255, 180, 60, 0.35);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.9rem;
}

.section-title--light {
  color: #fff;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.85;
  margin: 0 auto;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.72);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(246, 138, 41, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(255, 180, 60, 0.12);
  transform: translateY(-2px);
}