/* ============================================================
  styles.css — Jai Malhar Human Capital Pvt. Ltd.
  Full redesign: Blue / Cyan / White professional theme
  ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&display=swap");

/* ── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
select,
textarea {
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}

/* ── COLOR VARIABLES ────────────────────────────────────────── */
:root {
  /* Brand */
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --primary-light: #fff2e8;
  --primary-mid: #f97316;
  --primary-glow: rgba(138, 28, 46, 0.2);

  /* Neutrals */
  --ink: #111111;
  --slate: #334155;
  --muted: #64748b;
  --border: #dce4f4;
  --border-light: #eaf0fb;
  --bg: #fcf8f4;
  --bg-alt: #f8efe8;
  --white: #ffffff;
  --surface: #ffffff;

  /* Accent */
  --gold: #e6671f;
  --gold-light: #fff5eb;
  --navy: #2f1c1e;
  --navy-light: #f6ece8;
  --navy-mid: #d9480f;

  /* Status */
  --green: #059669;
  --green-light: #d1fae5;
  --red: #dc2626;
  --red-light: #fee2e2;
  --amber: #c2410c;
  --amber-light: #fef3c7;
  --blue: #ea580c;
  --blue-light: #fff2e8;

  /* Legacy aliases (keep for admin/auth pages) */
  --crimson: #ea580c;
  --crimson-deep: #c2410c;
  --crimson-light: #fff2e8;
  --orange: #e6671f;
  --orange-light: #fff1e7;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.14);

  /* Radii */
  --r-sm: 4px;
  --r: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.15s;
  --t: 0.25s;
  --t-slow: 0.4s;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
}
.section-sm {
  padding: 52px 0;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--t);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--primary-light);
}
.header-logo-text .name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.2;
}
.header-logo-text .tag {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate);
  transition:
    background var(--t),
    color var(--t);
}
.nav-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  cursor: pointer;
  background: none;
  border: 1.5px solid var(--border);
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--slate);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.btn-sm {
  padding: 7px 16px;
  font-size: 0.8rem;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform var(--t) var(--ease);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 24px;
  margin-left: auto;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links a {
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition:
    background var(--t),
    color var(--t);
}
.mobile-nav-links a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.mobile-auth-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}
.mobile-auth-btns .btn {
  width: 100%;
  justify-content: center;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: #111111;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 50%,
      rgba(232, 93, 4, 0.22) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(232, 93, 4, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.35);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fb923c;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-title span {
  color: var(--primary);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-img-sm {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── TRUST / CLIENTS BAR ─────────────────────────────────────── */
.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.client-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  transition:
    border-color var(--t),
    color var(--t);
}
.client-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ── SECTION HEADINGS ────────────────────────────────────────── */
.section-head {
  margin-bottom: 52px;
}
.section-head-center {
  text-align: center;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-head-center .section-desc {
  margin: 0 auto;
}

/* ── SERVICES GRID ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition:
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.service-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  padding: 64px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── JOBS SECTION ────────────────────────────────────────────── */
.jobs-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  cursor: pointer;
  transition:
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
}
.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.job-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.job-company {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.job-badge {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.job-meta-item {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.chip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
}
.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.job-salary {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
}
.job-posted {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.step-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition:
    box-shadow var(--t),
    transform var(--t);
}
.t-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.t-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.t-text {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-av {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── WHY GRID ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--r-xl);
  background: var(--primary-light);
}
.about-float {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  flex: 1;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-float .num {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
}
.founder-card {
  display: flex;
  gap: 16px;
  background: var(--primary-light);
  border: 1.5px solid rgba(232, 93, 4, 0.2);
  border-radius: var(--r-xl);
  padding: 24px;
  margin-top: 28px;
}
.founder-av {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-value a {
  color: var(--primary);
}
.contact-value a:hover {
  text-decoration: underline;
}

/* ── FORMS ───────────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--white);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-textarea {
  min-height: 110px;
  resize: vertical;
}

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}
.bc-link {
  color: var(--primary);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.bc-link:hover {
  text-decoration: underline;
}
.bc-sep {
  color: var(--muted);
}
.bc-cur {
  color: var(--slate);
  font-weight: 600;
}

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.25s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: var(--r);
  background: var(--bg-alt);
  color: var(--slate);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.modal-close:hover {
  background: var(--red-light);
  color: var(--red);
}
.modal-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.modal-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.modal-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  border-radius: var(--r-full);
  padding: 4px;
  margin-bottom: 24px;
}
.modal-tab {
  flex: 1;
  padding: 9px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  transition: all var(--t);
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
}
.modal-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ── TOAST ───────────────────────────────────────────────────── */
.toast-root {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-lg);
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s var(--ease);
  transition:
    opacity 0.3s,
    transform 0.3s;
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-success {
  background: var(--green);
}
.toast-error {
  background: var(--red);
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 400;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition:
    transform var(--t),
    box-shadow var(--t);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 400;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--t),
    transform var(--t);
  transform: translateY(8px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ── EMPTY STATE ─────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 64px 24px;
}
.empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.empty-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ── DASHBOARD ───────────────────────────────────────────────── */
.dash-header {
  background: var(--ink);
  color: #fff;
  padding: 40px 0 32px;
}
.dash-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.dash-greeting {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.dash-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.dash-tabs {
  display: flex;
  gap: 4px;
}
.dash-tab {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  transition: all var(--t);
}
.dash-tab.active {
  background: var(--primary);
  color: #fff;
}
.dash-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px;
}
.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.dash-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: box-shadow var(--t);
}
.dash-card:hover {
  box-shadow: var(--shadow-md);
}
.dash-card-num {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.dash-card-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TABLE ───────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
thead {
  background: var(--bg-alt);
}
th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border-light);
}
tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: var(--bg-alt);
}

/* ── PILLS ───────────────────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pill-green {
  background: var(--green-light);
  color: var(--green);
}
.pill-yellow {
  background: var(--amber-light);
  color: var(--amber);
}
.pill-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.pill-red {
  background: var(--red-light);
  color: var(--red);
}

/* ── ADMIN LAYOUT ────────────────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 70px);
}
.admin-sidebar {
  background: #111111;
  color: #fff;
  padding: 16px 0;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}
.sidebar-section {
  padding: 12px 20px 4px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  text-align: left;
}
.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.sidebar-item.active {
  background: var(--primary);
  color: #fff;
}
.admin-main {
  background: var(--bg-alt);
  padding: 36px 32px;
  min-height: calc(100vh - 70px);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: #111111;
  color: #fff;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}
.footer-tag {
  font-size: 0.65rem;
  color: #666;
}
.footer-desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--t);
}
.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.footer-heading {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a,
.footer-links li span {
  font-size: 0.85rem;
  color: #888;
  transition: color var(--t);
}
.footer-links li a:hover {
  color: var(--primary);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact li span:first-child {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: #555;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: #555;
  transition: color var(--t);
}
.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 72px 24px 60px;
  }
  .hero-visual {
    display: none;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .menu-btn {
    display: flex;
  }
  .header-nav,
  .header-actions {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
  .dash-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 60px 0;
  }
  .hero-inner {
    padding: 64px 16px 52px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dash-cards {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .modal {
    padding: 28px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .toast-root {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .toast {
    min-width: unset;
  }
}
