/* ============================================================
   SABBOR.PRO — Main CSS
   ============================================================ */

:root {
  --primary:    #0A2540;
  --accent:     #00C9A7;
  --accent2:    #F5A623;
  --light-bg:   #F4F7FB;
  --card-bg:    #FFFFFF;
  --text-main:  #0A2540;
  --text-muted: #6B7A99;
  --border:     #E2E8F4;
  --grad1:      linear-gradient(135deg, #0A2540 0%, #1A4A7A 100%);
  --grad2:      linear-gradient(135deg, #00C9A7 0%, #007BFF 100%);
  --shadow:     0 8px 32px rgba(10,37,64,0.10);
  --shadow-strong: 0 16px 48px rgba(10,37,64,0.18);
  --radius:     18px;
  --radius-sm:  10px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

body {
  font-family:'Cairo',sans-serif;
  background:var(--light-bg);
  color:var(--text-main);
  min-height:100vh;
  overflow-x:hidden;
}

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-thumb { background:var(--accent); border-radius:3px; }

/* ---- NAV ---- */
nav {
  position:fixed; top:0; right:0; left:0; z-index:100;
  background:rgba(10,37,64,0.97); backdrop-filter:blur(12px);
  padding:0 40px; height:68px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-logo-icon { width:40px; height:40px; background:var(--grad2); border-radius:10px; display:flex; align-items:center; justify-content:center; }
.nav-logo-text { font-size:22px; font-weight:900; color:#fff; }
.nav-logo-text span { color:var(--accent); }
.nav-links { display:flex; gap:4px; }
.nav-link { color:rgba(255,255,255,0.75); font-size:14px; font-weight:500; padding:8px 16px; border-radius:8px; cursor:pointer; transition:all 0.2s; text-decoration:none; }
.nav-link:hover { color:#fff; background:rgba(255,255,255,0.08); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.nav-cta { background:var(--accent); color:#0A2540; font-weight:700; font-size:14px; padding:9px 22px; border-radius:9px; cursor:pointer; border:none; transition:all 0.2s; text-decoration:none; }
.nav-cta:hover { background:#00e0ba; transform:translateY(-1px); }

/* ---- LANDING ---- */
.landing { min-height:100vh; background:var(--grad1); display:flex; flex-direction:column; position:relative; overflow:hidden; padding-top:68px; }
.landing-bg-grid { position:absolute; inset:0; pointer-events:none; background-image:linear-gradient(rgba(0,201,167,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(0,201,167,0.05) 1px,transparent 1px); background-size:60px 60px; }
.landing-circles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.c1 { position:absolute; width:600px; height:600px; background:radial-gradient(circle,rgba(0,201,167,0.15) 0%,transparent 70%); top:-100px; left:-100px; border-radius:50%; animation:pulse 6s ease-in-out infinite; }
.c2 { position:absolute; width:400px; height:400px; background:radial-gradient(circle,rgba(245,166,35,0.10) 0%,transparent 70%); bottom:50px; right:-50px; border-radius:50%; animation:pulse 8s ease-in-out infinite reverse; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.1);opacity:0.7} }

.landing-content { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:60px 20px 40px; position:relative; z-index:2; }
.badge { display:inline-flex; align-items:center; gap:8px; background:rgba(0,201,167,0.15); border:1px solid rgba(0,201,167,0.3); color:var(--accent); font-size:13px; font-weight:600; padding:6px 16px; border-radius:100px; margin-bottom:28px; }
.badge-dot { width:6px; height:6px; border-radius:50%; background:var(--accent); animation:blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 { font-size:clamp(32px,6vw,68px); font-weight:900; color:#fff; line-height:1.1; margin-bottom:22px; }
h1 em { color:var(--accent); font-style:normal; }
.hero-sub { font-size:clamp(15px,2vw,19px); color:rgba(255,255,255,0.65); max-width:580px; line-height:1.7; margin-bottom:40px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
.btn-primary { background:var(--accent); color:#0A2540; font-weight:800; font-size:15px; padding:13px 28px; border-radius:12px; cursor:pointer; border:none; transition:all 0.25s; display:inline-flex; align-items:center; gap:9px; text-decoration:none; }
.btn-primary:hover { background:#00e0ba; transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,201,167,0.35); }
.btn-secondary { background:rgba(255,255,255,0.08); color:#fff; font-weight:600; font-size:15px; padding:13px 28px; border-radius:12px; cursor:pointer; border:1px solid rgba(255,255,255,0.18); transition:all 0.25s; display:inline-flex; align-items:center; gap:9px; text-decoration:none; }
.btn-secondary:hover { background:rgba(255,255,255,0.14); }

.stats-row { display:flex; margin-top:56px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:16px; overflow:hidden; }
.stat-item { flex:1; padding:22px 28px; text-align:center; border-left:1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-left:none; }
.stat-num { font-size:30px; font-weight:900; color:var(--accent); }
.stat-label { font-size:12px; color:rgba(255,255,255,0.55); margin-top:4px; }

/* ---- HOW IT WORKS ---- */
.how-bg { background:#fff; padding:80px 0; }
.how-inner { max-width:1200px; margin:0 auto; padding:0 40px; }
.how-header { text-align:center; margin-bottom:52px; }
.section-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(0,201,167,0.1); border:1px solid rgba(0,201,167,0.2); color:var(--accent); font-size:11px; font-weight:700; padding:5px 14px; border-radius:100px; margin-bottom:14px; text-transform:uppercase; letter-spacing:1px; }
.section-title { font-size:clamp(26px,4vw,42px); font-weight:900; color:var(--text-main); line-height:1.15; margin-bottom:12px; }
.section-title span { color:var(--accent); }
.section-sub { font-size:16px; color:var(--text-muted); max-width:500px; line-height:1.7; }
.steps-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.steps-col { display:flex; flex-direction:column; gap:14px; }
.col-label { display:flex; align-items:center; gap:8px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:4px; }
.col-label-dot { width:8px; height:8px; border-radius:50%; }
.step-card { background:var(--light-bg); border:1px solid var(--border); border-radius:var(--radius); padding:22px; display:flex; gap:16px; align-items:flex-start; transition:all 0.25s; position:relative; overflow:hidden; }
.step-card:hover { box-shadow:var(--shadow); transform:translateY(-2px); }
.step-num { width:42px; height:42px; min-width:42px; background:var(--primary); color:#fff; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:17px; font-weight:900; }
.step-num.accent { background:var(--accent); color:var(--primary); }
.step-title { font-size:15px; font-weight:700; margin-bottom:4px; }
.step-desc { font-size:13px; color:var(--text-muted); line-height:1.6; }

/* ---- SPECS ---- */
.specs-grid { display:flex; flex-wrap:wrap; gap:10px; }
.spec-chip { display:flex; align-items:center; gap:8px; background:#fff; border:1.5px solid var(--border); border-radius:10px; padding:10px 18px; font-size:14px; font-weight:600; cursor:pointer; transition:all 0.2s; text-decoration:none; color:var(--text-main); }
.spec-chip:hover { border-color:var(--accent); background:rgba(0,201,167,0.05); box-shadow:0 4px 12px rgba(0,201,167,0.12); }
.spec-count { background:var(--light-bg); color:var(--text-muted); font-size:11px; padding:2px 7px; border-radius:100px; font-weight:700; }

/* ---- CTA ---- */
.cta-section { background:var(--grad1); padding:80px 40px; text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(0,201,167,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(0,201,167,0.05) 1px,transparent 1px); background-size:60px 60px; }
.cta-inner { position:relative; z-index:2; max-width:680px; margin:0 auto; }
.cta-title { font-size:clamp(26px,5vw,50px); font-weight:900; color:#fff; margin-bottom:14px; }
.cta-sub { font-size:17px; color:rgba(255,255,255,0.65); margin-bottom:32px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---- FOOTER ---- */
footer { background:#07192E; padding:48px 40px 28px; color:rgba(255,255,255,0.5); }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand { display:flex; flex-direction:column; gap:12px; }
.footer-desc { font-size:13px; line-height:1.7; }
.footer-col-title { font-size:13px; font-weight:700; color:#fff; margin-bottom:12px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:8px; }
.footer-links a { font-size:13px; color:rgba(255,255,255,0.5); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--accent); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.07); padding-top:22px; display:flex; align-items:center; justify-content:space-between; font-size:12px; }

/* ---- ALERTS ---- */
.alert { padding:12px 16px; border-radius:10px; font-size:14px; font-weight:600; }
.alert-success { background:rgba(0,201,167,0.1); border:1px solid rgba(0,201,167,0.3); color:#007a66; }
.alert-error   { background:rgba(255,59,92,0.08); border:1px solid rgba(255,59,92,0.25); color:#c0001e; }
.alert-info    { background:rgba(0,123,255,0.08); border:1px solid rgba(0,123,255,0.2);  color:#004fa3; }

/* ---- FORM ---- */
.form-group { margin-bottom:16px; }
.form-label { font-size:13px; font-weight:700; color:var(--primary); margin-bottom:6px; display:block; }
.form-input { width:100%; padding:11px 14px; border-radius:10px; border:1.5px solid var(--border); font-size:14px; font-family:'Cairo',sans-serif; outline:none; transition:border-color 0.2s; background:var(--light-bg); color:var(--text-main); }
.form-input:focus { border-color:var(--accent); background:#fff; }
.form-select { width:100%; padding:11px 14px; border-radius:10px; border:1.5px solid var(--border); font-size:14px; font-family:'Cairo',sans-serif; outline:none; background:var(--light-bg); color:var(--text-main); cursor:pointer; }
.form-select:focus { border-color:var(--accent); background:#fff; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-check { display:flex; align-items:center; gap:8px; margin-bottom:18px; font-size:13px; }
.form-check input { width:16px; height:16px; cursor:pointer; accent-color:var(--accent); }
.form-check a { color:var(--accent); }
.form-submit { width:100%; padding:13px; border-radius:12px; background:var(--primary); color:#fff; font-weight:800; font-size:15px; border:none; cursor:pointer; font-family:'Cairo',sans-serif; transition:all 0.2s; display:flex; align-items:center; justify-content:center; gap:8px; }
.form-submit:hover { background:#1A4A7A; transform:translateY(-1px); }
.form-submit:disabled { opacity:0.6; cursor:not-allowed; transform:none; }
.input-eye-wrap { position:relative; }
.input-eye-wrap .form-input { padding-left:40px; }
.eye-btn { position:absolute; left:10px; top:50%; transform:translateY(-50%); background:none; border:none; cursor:pointer; color:var(--text-muted); padding:4px; }

/* ---- BUTTONS ---- */
.btn-sm-primary { background:var(--accent); color:var(--primary); font-size:12px; font-weight:700; padding:7px 14px; border-radius:7px; border:none; cursor:pointer; text-decoration:none; white-space:nowrap; transition:all 0.2s; }
.btn-sm-primary:hover { background:#00e0ba; }
.btn-sm-outline { background:transparent; color:var(--primary); font-size:12px; font-weight:600; padding:6px 13px; border-radius:7px; border:1.5px solid var(--border); cursor:pointer; text-decoration:none; white-space:nowrap; transition:all 0.2s; }
.btn-sm-outline:hover { border-color:var(--accent); color:var(--accent); }

/* ---- STATUS BADGES ---- */
.status-badge { padding:4px 12px; border-radius:100px; font-size:11px; font-weight:700; white-space:nowrap; }
.status-open, .status-active, .status-hired { background:rgba(0,201,167,0.12); color:#007a66; }
.status-closed, .status-rejected { background:rgba(255,59,92,0.1); color:#c0001e; }
.status-pending { background:rgba(245,166,35,0.12); color:#a06600; }
.status-reviewed, .status-shortlisted, .status-draft { background:rgba(10,37,64,0.08); color:var(--primary); }

/* ---- ANIMATIONS ---- */
.fade-up { opacity:0; transform:translateY(22px); animation:fadeUp 0.6s ease-out forwards; }
.fade-up:nth-child(2){animation-delay:0.1s} .fade-up:nth-child(3){animation-delay:0.2s} .fade-up:nth-child(4){animation-delay:0.3s}
@keyframes fadeUp { to { opacity:1; transform:none; } }

/* ---- RESPONSIVE ---- */
@media (max-width:900px) {
  nav { padding:0 18px; }
  .nav-links { display:none; }
  .steps-grid, .footer-top { grid-template-columns:1fr; }
  .stats-row { flex-direction:column; }
  .stat-item { border-left:none; border-top:1px solid rgba(255,255,255,0.08); }
  .form-row { grid-template-columns:1fr; }
  .cta-section { padding:60px 20px; }
}
@media (max-width:600px) {
  h1 { font-size:30px; }
  .how-inner, footer { padding-left:18px; padding-right:18px; }
}
