/* ============================
   قِمَّة للتوظيف - Qimmah Recruitment
   Premium Recruitment Platform CSS
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --green-primary: #006C35;
  --green-dark: #004D25;
  --green-light: #00A34D;
  --green-accent: #00C853;
  --gold: #D4A84B;
  --gold-light: #F0D48A;
  --gold-dark: #B8912F;
  --white: #FFFFFF;
  --off-white: #F8FAF9;
  --gray-50: #F5F7F6;
  --gray-100: #E8ECE9;
  --gray-200: #D1D9D4;
  --gray-300: #A3B3A8;
  --gray-400: #6B7F71;
  --gray-500: #4A5D50;
  --gray-600: #3A4A3F;
  --gray-700: #2A3830;
  --gray-800: #1A2520;
  --gray-900: #0D1510;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(212,168,75,0.25);
  --shadow-green: 0 4px 20px rgba(0,108,53,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --glass-bg: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.2);
  --glass-bg-dark: rgba(0,0,0,0.2);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  text-align: right;
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb {
  background: var(--green-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 900;
  box-shadow: var(--shadow-green);
}

.nav-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 2px 10px rgba(0, 108, 53, 0.2));
  transition: var(--transition-smooth);
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-brand-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition-smooth);
  line-height: 1.3;
}

.navbar.scrolled .nav-brand-text h1 {
  color: var(--green-dark);
}

.nav-brand-text span {
  font-size: 0.7rem;
  color: var(--gold-light);
  font-weight: 400;
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-brand-text span {
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-smooth);
  border-radius: var(--radius-full);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--green-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,168,75,0.4) !important;
}

.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.navbar.scrolled .mobile-toggle span {
  background: var(--green-dark);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--gray-900) 0%, var(--green-dark) 40%, var(--green-primary) 70%, #00803E 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(212,168,75,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(0,200,83,0.06) 0%, transparent 40%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(1deg); }
  66% { transform: translate(-20px, 15px) rotate(-1deg); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212,168,75,0.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeInRight 1s ease-out 0.2s backwards;
}

.hero-badge i {
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  animation: fadeInRight 1s ease-out 0.3s backwards;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeInRight 1s ease-out 0.4s backwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInRight 1s ease-out 0.5s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,168,75,0.45);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeInRight 1s ease-out 0.6s backwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInLeft 1s ease-out 0.4s backwards;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: var(--shadow-gold);
}

.hero-card-badge {
  background: rgba(0,200,83,0.2);
  color: var(--green-accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-card-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-card-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-card-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.hero-card-item i {
  color: var(--green-accent);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-card.card-1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: -20px;
  right: -30px;
  animation-delay: 2s;
}

.hero-float-card .float-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-accent), var(--green-primary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ── Section Titles ── */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,108,53,0.08), rgba(0,108,53,0.04));
  border: 1px solid rgba(0,108,53,0.12);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 16px;
}

.section-tag i {
  color: var(--gold);
}

.section-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Jobs Section ── */
.jobs-section {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.jobs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-200), transparent);
}

.jobs-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, var(--green-primary), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition-smooth);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.job-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0,108,53,0.1), rgba(0,108,53,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green-primary);
}

.job-type {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0,200,83,0.1);
  color: var(--green-light);
}

.job-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.job-meta-item i {
  color: var(--green-primary);
  font-size: 0.9rem;
}

.job-salary {
  font-weight: 700;
  color: var(--green-primary) !important;
}

.job-apply-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 2px solid var(--green-primary);
  background: transparent;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.job-apply-btn:hover {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.jobs-more {
  text-align: center;
  margin-top: 48px;
}

/* ── Stats Section ── */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--gray-900) 0%, var(--green-dark) 50%, var(--green-primary) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.18);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: white;
  box-shadow: var(--shadow-gold);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
  direction: ltr;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── Features Section ── */
.features-section {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--gray-50), var(--white));
  border: 1px solid var(--gray-100);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(0,108,53,0.06), transparent 70%);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,108,53,0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-icon.green {
  background: linear-gradient(135deg, rgba(0,108,53,0.12), rgba(0,108,53,0.06));
  color: var(--green-primary);
}

.feature-icon.gold {
  background: linear-gradient(135deg, rgba(212,168,75,0.15), rgba(212,168,75,0.06));
  color: var(--gold-dark);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .footer-tagline {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--gold);
  padding-right: 6px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom .heart {
  color: var(--gold);
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  padding: 28px 32px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,168,75,0.1) 0%, transparent 60%);
}

.modal-header h2 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.modal-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 2;
}

.modal-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #E53935;
  margin-right: 2px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300);
  font-size: 1rem;
  transition: var(--transition-fast);
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 13px 42px 13px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition-smooth);
  outline: none;
  direction: rtl;
}

.form-control:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,108,53,0.08);
}

.form-control:focus + i,
.form-control:focus ~ i {
  color: var(--green-primary);
}

.form-control::placeholder {
  color: var(--gray-300);
}

.form-control.error {
  border-color: #E53935;
  background: rgba(229,57,53,0.02);
}

.select-search-input.error {
  border-color: #E53935 !important;
  background: rgba(229,57,53,0.02) !important;
}

.error-message {
  font-size: 0.78rem;
  color: #E53935;
  margin-top: 6px;
  display: none;
  align-items: center;
  gap: 4px;
  animation: shakeError 0.4s ease-out;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
}

.form-group.has-error .error-message {
  display: flex;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--green-primary);
  cursor: pointer;
  margin-top: 2px;
}

.checkbox-wrapper label {
  font-size: 0.85rem;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-wrapper label a {
  color: var(--green-primary);
  font-weight: 600;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-green);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,108,53,0.35);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── Success Message ── */
.success-message {
  text-align: center;
  padding: 48px 32px;
  display: none;
}

.success-message.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: white;
  box-shadow: 0 8px 30px rgba(0,200,83,0.3);
  animation: scaleIn 0.5s var(--transition-bounce);
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-message h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.success-message p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 24px;
}

.success-close-btn {
  padding: 12px 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  border: none;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.success-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* ── Form Note (WhatsApp) ── */
.form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.03));
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.form-note i {
  color: #25D366;
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-note strong {
  color: var(--green-primary);
}

/* ── Checkbox Group Error ── */
.checkbox-group .checkbox-wrapper {
  margin: 0;
}

.checkbox-group.has-error .checkbox-wrapper {
  padding: 10px 14px;
  background: rgba(229, 57, 53, 0.04);
  border: 1px solid rgba(229, 57, 53, 0.3);
  border-radius: var(--radius-md);
}

.checkbox-group .error-message {
  margin-top: 8px;
}

/* ── Success WhatsApp Note ── */
.success-whatsapp-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.04));
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.success-whatsapp-note i {
  color: #25D366;
  font-size: 1.2rem;
}

/* ── Submission Loader & Human Verification Styles ── */
.submission-loader {
  padding: 30px 10px;
  text-align: center;
}

.loader-visual {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid var(--gray-100);
  border-top: 4px solid var(--green-primary);
  border-radius: 50%;
  animation: spin 1.2s infinite linear;
}

.loader-lock {
  font-size: 32px;
  color: var(--gold);
  animation: pulseIcon 1.5s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

.submission-loader h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.loader-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 24px;
}

.loader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  border-radius: var(--radius-full);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
  text-align: right;
}

.loader-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: var(--transition-smooth);
}

.loader-step .step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.loader-step.active {
  color: var(--green-primary);
  font-weight: 700;
}

.loader-step.active .step-icon {
  color: var(--green-primary);
}

.loader-step.completed {
  color: var(--gray-700);
}

.loader-step.completed .step-icon {
  color: var(--green-accent);
}

/* Verification Card */
.verification-card {
  padding: 10px 5px;
  animation: fadeInUp 0.5s ease-out;
}

.verification-header {
  text-align: center;
  margin-bottom: 20px;
}

.verification-shield {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(0, 108, 53, 0.08), rgba(0, 108, 53, 0.03));
  border: 1.5px solid rgba(0, 108, 53, 0.15);
  color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(0, 108, 53, 0.05);
}

.verification-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.verification-header p {
  font-size: 0.88rem;
  color: var(--gray-400);
}

.verification-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.08), rgba(212, 168, 75, 0.03));
  border: 1px solid rgba(212, 168, 75, 0.25);
  border-radius: var(--radius-md);
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: right;
  line-height: 1.6;
}

.verification-alert i {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--gold);
}

.verification-info-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify;
}

/* ── Wide Modal modification ── */
.modal.wide-modal {
  max-width: 720px;
}

/* ── Embedded Iframe Styling ── */
.iframe-container {
  width: 100%;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.iframe-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  direction: ltr;
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.browser-dot.red { background: #FF5F56; }
.browser-dot.yellow { background: #FFBD2E; }
.browser-dot.green { background: #27C93F; }

.browser-address {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: left;
  font-family: monospace, sans-serif;
  user-select: none;
}

.browser-address i {
  color: var(--green-primary);
  font-size: 0.85rem;
}

.browser-reload {
  color: var(--gray-300);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.browser-reload:hover {
  color: var(--green-primary);
}

.iframe-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  z-index: 10;
}

.iframe-element {
  width: 100%;
  height: 100%;
  border: none;
}

.verification-waiting-status {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  animation: fadeInUp 0.4s ease-out;
}

.waiting-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 108, 53, 0.1);
  border-top-color: var(--green-primary);
  border-radius: 50%;
  animation: spin 0.8s infinite linear;
}

.verification-waiting-status span {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 600;
  text-align: center;
}

.btn-confirm-submission {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-green);
  animation: bounceSubtle 2s infinite;
}

@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.btn-confirm-submission:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 108, 53, 0.3);
}

.verification-footer-info {
  font-size: 0.78rem;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

/* ── Security Overlay & Dedicated Verification Panel ── */
.security-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 21, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  animation: fadeIn 0.4s ease-out;
}

.security-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  padding: 36px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0, 108, 53, 0.1);
  direction: rtl;
  position: relative;
}

.security-stage {
  animation: fadeInUp 0.4s ease-out;
}

/* Scanner styles */
.scanner-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanner-radar {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(212, 168, 75, 0.35);
  border-radius: 50%;
  animation: rotateRadar 15s infinite linear;
}

.scanner-shield {
  font-size: 56px;
  color: var(--green-primary);
  filter: drop-shadow(0 4px 10px rgba(0, 108, 53, 0.15));
}

.scanner-line {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px var(--gold);
  border-radius: 50%;
  animation: laserScan 2.2s infinite ease-in-out;
}

@keyframes rotateRadar {
  to { transform: rotate(360deg); }
}

@keyframes laserScan {
  0%, 100% { top: 15px; opacity: 0.3; }
  50% { top: 90px; opacity: 1; }
}

.security-subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.scanner-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: right;
  max-width: 440px;
  margin: 0 auto;
}

.log-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.log-item i {
  width: 18px;
  text-align: center;
}

.log-item.active {
  color: var(--green-primary);
  font-weight: 700;
}

.log-item.completed {
  color: var(--gray-700);
}

.log-item.completed i {
  color: var(--green-accent);
}

.security-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white !important;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-green);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.security-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 108, 53, 0.35);
}

.security-info-body {
  text-align: center;
}

/* Make verification modal wider when loading the browser frame */
.security-modal.wide-modal {
  max-width: 760px;
  transition: max-width 0.4s ease;
}

/* ── Scroll Animations ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,108,53,0.4);
}

/* ── Counter Animation ── */
.counter {
  display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    display: none;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--gray-900);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1.05rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 28px 16px;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .modal {
    margin: 16px;
    max-height: 85vh;
  }

  .modal-body {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat {
    min-width: 80px;
  }

  .jobs-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ── Loading spinner for button ── */
.btn-submit .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-submit.loading .spinner {
  display: block;
}

.btn-submit.loading .btn-text {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Custom Select Dropdown ── */
.custom-select-wrapper {
  position: relative;
}

.select-search-input {
  width: 100%;
  padding: 13px 42px 13px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition-smooth);
  outline: none;
  direction: rtl;
  cursor: pointer;
}

.select-search-input:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,108,53,0.08);
}

.select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  background: var(--white);
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-md);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: var(--shadow-lg);
}

.select-dropdown.open {
  display: block;
  animation: dropdownOpen 0.2s ease-out;
}

@keyframes dropdownOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.select-option {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--gray-50);
}

.select-option:last-child {
  border-bottom: none;
}

.select-option:hover {
  background: rgba(0,108,53,0.06);
  color: var(--green-primary);
}

.select-option.selected {
  background: rgba(0,108,53,0.1);
  color: var(--green-primary);
  font-weight: 600;
}

/* Modal scrollbar */
.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: var(--radius-full); }
