/* ============================================================
   pages.css — Merged internal styles for RojgarShine
   Covers: index.html, about.html, jobs.html,
           companyJobs.html, services.html, jobDetails.html
   ============================================================ */

/* ============================================================
   SHARED BRAND TOKENS (used across multiple pages)
   ============================================================ */
:root {
  --blue: #091d33;
  --blue-mid: #0d2a4a;
  --cyan: #18a99c;
  --cyan-lt: #e6f7f6;
  --cyan-glow: rgba(24, 169, 156, .18);
  --grey-bg: #f1f5f9;
  --white: #ffffff;
  --muted: #64748b;
  --border: #e2e8f0;
  --red: #ef4444;
  --green: #22c55e;
  --shadow-sm: 0 2px 12px rgba(9, 29, 51, .07);
  --shadow-md: 0 8px 32px rgba(9, 29, 51, .12);
  --shadow: 0 2px 20px rgba(9, 29, 51, .07);
  --radius: 16px;

  /* jobs.html token aliases */
  --navy: #091d33;
  --teal: #18a99c;
  --teal2: #0d8a7e;
  --light: #f1f5f9;
  --danger: #dc2626;
  --slate: #64748b;

  /* jobDetails.html token aliases */
  --amber: #f59e0b;
}

/* ============================================================
   INDEX PAGE (index.html)
   ============================================================ */

/* ── Hero ── */
.hero-section {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 169, 156, .22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 169, 156, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 169, 156, .15);
  border: 1px solid rgba(24, 169, 156, .3);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-label i {
  font-size: .9rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.hero-title .accent {
  color: var(--cyan);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

/* Search bar */
.hero-search {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 6px;
  display: flex;
  gap: 4px;
  backdrop-filter: blur(12px);
  max-width: 680px;
}

.hero-search .s-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: transparent;
}

.hero-search .s-field+.s-field {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.hero-search .s-field i {
  color: var(--cyan);
  font-size: .9rem;
  flex-shrink: 0;
}

.hero-search .s-field input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: .875rem;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

.hero-search .s-field input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.hero-search .search-btn {
  background: var(--cyan);
  border: none;
  border-radius: 10px;
  color: #fff;
  padding: 11px 28px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(24, 169, 156, .4);
  flex-shrink: 0;
}

.hero-search .search-btn:hover {
  background: #14968a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(24, 169, 156, .45);
}

/* Autocomplete */
.autocomplete-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(9, 29, 51, 0.14);
  z-index: 9999;
  overflow: hidden;
  min-width: 220px;
  display: none;
  animation: dropIn .15s ease;
}

.autocomplete-dropdown.open {
  display: block;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ac-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: .85rem;
  color: var(--blue);
  cursor: pointer;
  transition: background .12s;
  border-bottom: 1px solid #f1f5f9;
}

.ac-item:last-child {
  border-bottom: none;
}

.ac-item:hover,
.ac-item.highlighted {
  background: var(--cyan-lt);
  color: var(--cyan);
}

.ac-item i {
  font-size: .8rem;
  color: #94a3b8;
  flex-shrink: 0;
}

.ac-item:hover i,
.ac-item.highlighted i {
  color: var(--cyan);
}

.ac-empty {
  padding: 12px 14px;
  font-size: .82rem;
  color: #94a3b8;
  text-align: center;
}

.ac-loading {
  padding: 12px 14px;
  font-size: .82rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.ac-spinner {
  width: 13px;
  height: 13px;
  border: 2px solid #e2e8f0;
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 1px;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  animation: floatUp .8s ease both;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--cyan) 0%, transparent 60%);
  opacity: .25;
  z-index: 0;
}

.hero-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(9, 29, 51, .4);
}

/* Floating badges */
.hero-badge {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-badge.badge-1 {
  bottom: 24px;
  left: -20px;
}

.hero-badge.badge-2 {
  top: 24px;
  right: -20px;
}

.hero-badge .b-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-badge.badge-1 .b-icon {
  background: #dcfce7;
  color: #16a34a;
}

.hero-badge.badge-2 .b-icon {
  background: var(--cyan-lt);
  color: var(--cyan);
}

.hero-badge .b-text strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
}

.hero-badge .b-text span {
  font-size: .7rem;
  color: var(--muted);
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Section shared (index) ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-lt);
  color: var(--cyan);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 48px;
}

/* ── How it works ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
}

.how-card {
  padding: 36px 30px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s;
  position: relative;
}

.how-card:last-child {
  border-right: none;
}

.how-card:hover {
  background: rgba(255, 255, 255, .04);
}

.how-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  margin-bottom: 18px;
  user-select: none;
}

.how-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(24, 169, 156, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--cyan);
  margin-bottom: 16px;
}

.how-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.how-card p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin: 0;
}

/* ── Company Slider ── */
.companies-section {
  background: var(--grey-bg);
  padding: 64px 0;
}

.company-slider-wrapper {
  position: relative;
  padding: 8px 48px;
}

.company-slider-track {
  overflow: hidden;
  border-radius: 4px;
}

.company-slider {
  display: flex;
  gap: 16px;
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  padding-block: 0.5rem;

}

.company-card {
  flex: 0 0 175px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  border: 1.5px solid transparent;
  text-decoration: none;
  color: inherit;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

/* AFTER */
.company-logo {
  width: 100%;
  height: 80px;
  border-radius: 14px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  padding: 10px;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 🔥 FIX: no crop, full logo visible */
}
.company-name {
  font-size: .84rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 3px;
}

.company-city {
  font-size: .72rem;
  color: var(--muted);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: background .18s, color .18s;
}

.slider-btn:hover {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}

.slider-btn.left {
  left: 0;
}

.slider-btn.right {
  right: 0;
}

.slider-btn[data-disabled="true"] {
  opacity: .35;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, width .2s;
}

.slider-dot.active {
  background: var(--cyan);
  width: 20px;
  border-radius: 4px;
}

/* ── Why Choose Us ── */
.why-section {
  background: var(--blue);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: background .2s, transform .2s;
}

.why-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-4px);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(24, 169, 156, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: 18px;
}

.why-card h5 {
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin: 0;
}

/* ── Cities ── */
.cities-section {
  padding: 80px 0;
  background: var(--white);
}

.city-scroll {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.city-card {
  background: var(--grey-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  min-width: 110px;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
  background: var(--cyan-lt);
}

.city-card img {
  width: 90px;
  height: 52px;
  /* object-fit: cover; */
  border-radius: 10px;
  margin-bottom: 10px;
}

.city-card p {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 32px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 36px;
  transition: background .18s, transform .15s;
  text-decoration: none;
}

.btn-view-all:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  color: #fff;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 80px 0;
  background: var(--grey-bg);
}

.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.t-card.featured {
  border-color: var(--cyan);
  background: var(--white);
}

.t-badge {
  display: inline-block;
  background: var(--cyan-lt);
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.t-stars {
  font-size: .95rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.t-text {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #f0f4f8;
}

.t-av {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-av-info strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
}

.t-av-info span {
  font-size: .72rem;
  color: var(--muted);
}

.rating-summary {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid rgba(255, 255, 255, .08);
}

.rating-summary .big-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.rating-summary .big-stars {
  font-size: 1.1rem;
  margin: 8px 0 4px;
  letter-spacing: 2px;
}

.rating-summary p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

/* ── Pre-footer ── */
.pre-footer {
  overflow: hidden;
}

.pre-footer img {
  min-height:300px ;
  width: 100%;
  display: block;
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   INDEX — RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 50px;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search .s-field+.s-field {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .how-card:last-child {
    border-bottom: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badge {
    display: none;
  }
}

@media (max-width: 600px) {
  .company-slider-wrapper {
    padding: 8px 0;
    overflow: visible;
  }

  .company-slider-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .company-slider-track::-webkit-scrollbar {
    display: none;
  }

  .company-slider {
    transition: none !important;
    transform: none !important;
  }

  .company-card {
    flex: 0 0 calc(50% - 10px);
    scroll-snap-align: start;
  }

  .slider-btn,
  .slider-dots {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }
}


/* ============================================================
   ABOUT PAGE (about.html)
   ============================================================ */

/* ── About Hero ── */
.about-hero {
  position: relative;
  min-height: 88vh;
  background-image: url('/assets/images/about-bg-img.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 29, 51, 0.88) 0%, rgba(24, 169, 156, 0.45) 100%);
  z-index: 1;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  animation: heroFadeUp 0.9s cubic-bezier(.4, 0, .2, 1) both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 169, 156, 0.2);
  border: 1px solid rgba(24, 169, 156, 0.4);
  color: #5ee8dc;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #18a99c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.about-hero .hero-title {
  font-size: clamp(2rem, 5vw, 5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}

.about-hero .hero-title span {
  color: #18a99c;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  /* margin: 0 auto 40px; */
  line-height: 1.75;
  font-weight: 300;
}

/* hero stats — about page variant */
.about-hero .hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.about-hero .hero-stat {
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-hero .hero-stat:last-child {
  border-right: none;
}

.about-hero .hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about-hero .hero-stat-value span {
  color: #18a99c;
}

.about-hero .hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.scroll-cue i {
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

/* ── Vision / Mission ── */
.vm-section {
  padding: 100px 0;
  background: var(--white);
}

.vm-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vm-image-wrap {
  position: relative;
}

.vm-image-wrap img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  height: 520px;
}

.vm-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--blue);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 180px;
  box-shadow: 0 20px 40px rgba(9, 29, 51, 0.25);
}

.vm-accent-card .acc-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #18a99c;
  line-height: 1;
}

.vm-accent-card .acc-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-top: 4px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.vm-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 32px;
}

.vm-heading span {
  color: var(--cyan);
}

.vm-block {
  margin-bottom: 28px;
}

.vm-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.vm-block-icon {
  width: 32px;
  height: 32px;
  background: var(--cyan-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.vm-block p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 42px;
}

.vm-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 2px;
  margin: 24px 0;
}

/* ── Values ── */
.values-section {
  background: var(--blue);
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(24, 169, 156, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.values-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.values-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.values-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.values-title span {
  color: var(--cyan);
}

.values-desc {
  max-width: 380px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 22px;
  transition: background 0.2s, transform 0.2s;
}

.value-card:hover {
  background: rgba(24, 169, 156, 0.1);
  border-color: rgba(24, 169, 156, 0.3);
  transform: translateY(-4px);
}

.value-icon {
  width: 46px;
  height: 46px;
  background: rgba(24, 169, 156, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.value-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.value-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
}

/* ── Team (about page) ── */
.team-section {
  padding: 100px 0;
  background: var(--grey-bg);
}

.team-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-heading span {
  color: var(--cyan);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(9, 29, 51, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(9, 29, 51, 0.12);
}

.team-card-top {
  background: var(--blue);
  padding: 36px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.team-card-top::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 8px 8px;
  border-radius: 6px;
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cyan);
  display: block;
}

.team-card-body {
  padding: 20px 24px 28px;
  text-align: center;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-lt);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social {
  width: 32px;
  height: 32px;
  background: var(--grey-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.team-social:hover {
  background: var(--blue);
  color: #fff;
}

/* ── CTA strip (about) ── */
.cta-section {
  padding: 90px 24px;
  background: var(--white);
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}

.cta-heading span {
  color: var(--cyan);
}

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.cta-btn-primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(9, 29, 51, 0.2);
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}

.cta-btn-secondary:hover {
  border-color: var(--blue);
  background: var(--grey-bg);
  color: var(--blue);
}

/* ── About animations ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.4, 0, .2, 1), transform 0.65s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── About responsive ── */
@media (max-width: 991px) {
  .vm-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vm-image-wrap img {
    height: 380px;
  }

  .vm-accent-card {
    right: 12px;
    bottom: -18px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 75vh;
  }

  .about-hero .hero-stats {
    gap: 0;
  }

  .about-hero .hero-stat {
    padding: 10px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 50%;
    text-align: center;
  }

  .about-hero .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-hero .hero-stat:last-child,
  .about-hero .hero-stat:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .vm-section {
    padding: 64px 0;
  }

  .vm-inner {
    gap: 36px;
  }

  .vm-image-wrap img {
    height: 260px;
  }

  .vm-accent-card {
    bottom: -14px;
    right: 8px;
    padding: 14px 18px;
    min-width: 140px;
  }

  .vm-accent-card .acc-num {
    font-size: 1.6rem;
  }

  .vm-block p {
    padding-left: 0;
  }

  .values-section {
    padding: 56px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-section {
    padding: 64px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-section {
    padding: 64px 16px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .scroll-cue {
    display: none;
  }
}


/* ============================================================
   JOBS PAGE (jobs.html)
   ============================================================ */

/* ── Jobs Hero Search Banner ── */
.jobs-hero {
  background: var(--navy);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}

.jobs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 169, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 169, 156, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.jobs-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.jobs-hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.jobs-hero h1 span {
  color: var(--teal);
}

.jobs-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

/* ── Floating search bar ── */
.jobs-search-float {
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
  max-width: 860px;
  margin: 0 auto;
}

.jsf-field {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 14px;
  min-width: 0;
  border-right: 1px solid var(--border);
}

.jsf-field:last-of-type {
  border-right: none;
}

.jsf-field i {
  font-size: 15px;
  color: #94a3b8;
  margin-right: 9px;
  flex-shrink: 0;
}

.jsf-field input {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: transparent;
  padding: 11px 0;
  width: 100%;
}

.jsf-field input::placeholder {
  color: #b0bac6;
}

.jsf-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.jsf-btn:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

/* ── Filter chips ── */
.filter-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 99px;
}

.filter-chip button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--teal);
  font-size: 14px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
}

/* ── Results header ── */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.results-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.results-count {
  font-size: 13px;
  color: var(--slate);
}

.results-count span {
  font-weight: 700;
  color: var(--teal);
}

/* ── Job card (jobs page) ── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
}

.job-card:hover {
  box-shadow: 0 8px 28px rgba(9, 29, 51, 0.10);
  transform: translateY(-3px);
  border-color: #c7d2dd;
}

.job-co-logo {
  min-width: 44px;
  max-width: 70px;
  height: 44px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.job-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.3;
}

.job-company {
  font-size: 12.5px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--slate);
  background: var(--light);
  border-radius: 6px;
  padding: 4px 9px;
}

.job-tag i {
  font-size: 11px;
}

.job-tag.salary {
  background: #e6f7f5;
  color: var(--teal2);
}

.job-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

.job-date {
  font-size: 11.5px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-card-actions {
  display: flex;
  gap: 8px;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--navy);
  transition: all 0.15s;
  text-decoration: none;
}

.btn-view:hover {
  border-color: var(--navy);
  background: var(--light);
  color: var(--navy);
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--navy);
  color: var(--white);
  transition: background 0.15s, transform 0.15s;
}

.btn-apply:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.btn-applied {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  border: none;
  background: #ecfdf5;
  color: #16a34a;
  cursor: default;
  opacity: 1;
}

/* ── Pagination (jobs) ── */
.jobs-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.jobs-pagination button {
  min-width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 9px;
  font-size: 13px;
  color: var(--slate);
  cursor: pointer;
  transition: all .18s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jobs-pagination button:hover {
  background: var(--light);
  border-color: var(--navy);
  color: var(--navy);
}

.jobs-pagination button.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-weight: 700;
}

.jobs-pagination button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* ── Empty state (jobs) ── */
.jobs-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--slate);
}

.jobs-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
  color: #94a3b8;
}

.jobs-empty h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

/* ── Modals (jobs) ── */
.modal-content {
  border-radius: 16px;
  border: none;
}

.modal-apply-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e6f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--teal);
  margin: 0 auto 16px;
}

.modal-lock-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fefce8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #d97706;
  margin: 0 auto 16px;
}

/* ── Toast (jobs) ── */
.jobs-toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jobs-toast {
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: toastIn .25s ease;
  min-width: 240px;
  max-width: 320px;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jobs-toast.success {
  background: #16a34a;
}

.jobs-toast.warning {
  background: #d97706;
}

.jobs-toast.danger {
  background: #dc2626;
}

/* ── Jobs responsive ── */
@media (max-width: 768px) {
  .jobs-search-float {
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    padding: 10px;
  }

  .jsf-field {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 6px 10px;
  }

  .jsf-field:last-of-type {
    border-bottom: none;
  }

  .jsf-btn {
    width: 100%;
    justify-content: center;
    border-radius: 9px;
    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  .jobs-hero {
    padding: 40px 0 60px;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}


/* ============================================================
   COMPANY JOBS PAGE (companyJobs.html)
   ============================================================ */

/* ── Company Hero ── */
.company-hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 56px 0 52px;
  margin-bottom: 32px;
}

.company-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 169, 156, .18) 0%, transparent 70%);
  pointer-events: none;
}

.company-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 169, 156, .1) 0%, transparent 70%);
  pointer-events: none;
}

.company-hero .inner {
  position: relative;
  z-index: 1;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 22px;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, .38);
  text-decoration: none;
  transition: color .15s;
}

.hero-breadcrumb a:hover {
  color: var(--cyan);
}

.hero-breadcrumb i {
  font-size: .6rem;
}

.hero-company-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-logo {
  min-width: 64px;
  max-width: 100px;
  height: 64px;
  border-radius: 16px;
  background: rgba(24, 169, 156, .15);
  border: 1.5px solid rgba(24, 169, 156, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
}

.company-hero .hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin: 0;
}

.count-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(24, 169, 156, .15);
  border: 1px solid rgba(24, 169, 156, .25);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
}

.count-pill i {
  font-size: .85rem;
}

/* ── Job cards grid (company jobs) ── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jobs-grid .job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  animation: fadeSlideUp .35s ease both;
}

.jobs-grid .job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.card-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.card-status.open {
  color: #16a34a;
}

.card-status.closed {
  color: var(--red);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--grey-bg);
  border-radius: 7px;
  padding: 4px 10px;
  font-size: .76rem;
  color: var(--muted);
}

.card-chip i {
  color: var(--cyan);
  font-size: .78rem;
}

.card-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-view-cj {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--grey-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}

.btn-view-cj:hover {
  background: var(--cyan-lt);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-apply-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--cyan);
  border: none;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 4px 12px rgba(24, 169, 156, .3);
}

.btn-apply-card:hover:not(:disabled) {
  background: #14968a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(24, 169, 156, .38);
}

.btn-apply-card:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.btn-apply-card.applied {
  background: #16a34a;
  box-shadow: 0 4px 12px rgba(22, 163, 74, .25);
}

.btn-apply-card.closed {
  background: var(--grey-bg);
  color: var(--muted);
  box-shadow: none;
}

/* ── Skeleton (company jobs) ── */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skeleton-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.skeleton {
  background: linear-gradient(90deg, #f0f4f8 25%, #e8edf3 50%, #f0f4f8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 7px;
  height: 14px;
  margin-bottom: 10px;
}

.skeleton.tall {
  height: 22px;
}

.skeleton.short {
  width: 55%;
}

.skeleton.xs {
  height: 10px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── Pagination (company jobs) ── */
.pagination-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  transition: background .15s, border-color .15s, color .15s;
  font-family: 'DM Sans', sans-serif;
}

.page-btn:hover:not(:disabled) {
  background: var(--grey-bg);
}

.page-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.page-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
}

/* ── Empty / error state (company jobs) ── */
.empty-state {
  background: var(--white);
  border-radius: var(--radius);
  padding: 64px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  grid-column: 1 / -1;
}

.empty-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--cyan-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--cyan);
  margin: 0 auto 18px;
}

.empty-state h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.empty-state p {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
}

/* ── Modals (company jobs) ── */
.modal-content {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(9, 29, 51, .18);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.modal-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.modal-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}

.modal-icon-box.amber {
  background: #fef3c7;
  color: #d97706;
}

.modal-icon-box.green {
  background: #dcfce7;
  color: #16a34a;
}

.apply-job-chip {
  background: var(--grey-bg);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 12px;
}

.apply-job-chip strong {
  display: block;
  font-size: .9rem;
  color: var(--blue);
  margin-bottom: 3px;
}

.apply-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-lt);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: .8rem;
  color: #0f7a71;
}

.btn-modal-primary {
  background: var(--cyan);
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background .18s;
}

.btn-modal-primary:hover {
  background: #14968a;
}

.btn-modal-dark {
  background: var(--blue);
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.btn-modal-dark:hover {
  background: var(--blue-mid);
}

.btn-modal-cancel {
  background: var(--grey-bg);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

/* ── Toast (company jobs) ── */
.custom-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
  animation: slideInToast .3s ease both;
  max-width: 300px;
}

.custom-toast.success {
  background: #dcfce7;
  color: #15803d;
  border: 1.5px solid #bbf7d0;
}

.custom-toast.danger {
  background: #fee2e2;
  color: #dc2626;
  border: 1.5px solid #fecaca;
}

.custom-toast.warning {
  background: #fef3c7;
  color: #d97706;
  border: 1.5px solid #fde68a;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Company jobs responsive ── */
@media (max-width: 991px) {

  .jobs-grid,
  .skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .jobs-grid,
  .skeleton-grid {
    grid-template-columns: 1fr;
  }

  .company-hero {
    padding: 40px 0 36px;
  }

  .hero-company-row {
    gap: 14px;
  }

  .hero-logo {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
}


/* ============================================================
   SERVICES PAGE (services.html)
   ============================================================ */

/* ── Services Hero ── */
.services-hero {
  position: relative;
  min-height: 82vh;
  background-image: url('/assets/images/hero-services.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 29, 51, 0.92) 0%, rgba(24, 169, 156, 0.4) 100%);
  z-index: 1;
}

.services-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 1;
}

.services-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 169, 156, 0.18);
  border: 1px solid rgba(24, 169, 156, 0.38);
  color: #5ee8dc;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}

.services-hero .hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #18a99c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.services-hero .hero-title {
  font-size: clamp(2rem, 4vw, 5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.services-hero .hero-title span {
  color: #18a99c;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--cyan);
  color: #fff;
  border: 2px solid var(--cyan);
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s, transform .18s;
}

.hero-btn:hover {
  background: #14958a;
  color: #fff;
  transform: translateY(-2px);
}

.services-hero .scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-hero .scroll-cue i {
  font-size: 1rem;
  animation: bounce 2s infinite;
}

.section-heading {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-heading span {
  color: var(--cyan);
}

/* ── Services grid ── */
.services-section {
  padding: 96px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-tag {
  justify-content: center;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(9, 29, 51, 0.07);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(9, 29, 51, 0.11);
  border-color: rgba(24, 169, 156, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-lt);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: background .2s;
}

.service-card:hover .service-icon {
  background: var(--cyan);
  color: #fff;
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.865rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── How It Works (services) ── */
.hiw-section {
  background: var(--blue);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.hiw-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(24, 169, 156, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hiw-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hiw-header {
  text-align: center;
  margin-bottom: 60px;
}

.hiw-header .section-tag {
  justify-content: center;
  color: rgba(94, 232, 220, 0.85);
}

.hiw-header .section-tag::before {
  background: rgba(94, 232, 220, 0.5);
}

.hiw-header .section-heading {
  color: #fff;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.hiw-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  text-align: center;
  transition: background .2s, transform .2s;
}

.hiw-step:hover {
  background: rgba(24, 169, 156, 0.1);
  border-color: rgba(24, 169, 156, 0.28);
  transform: translateY(-4px);
}

.hiw-num {
  width: 52px;
  height: 52px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.hiw-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.hiw-step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* ── Contact (services) ── */
.contact-section {
  padding: 96px 0;
  background: var(--grey-bg);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-wrap {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(9, 29, 51, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left {
  background: var(--blue);
  padding: 56px 48px;
}

.contact-left .section-tag {
  color: rgba(94, 232, 220, 0.85);
}

.contact-left .section-tag::before {
  background: rgba(94, 232, 220, 0.5);
}

.contact-left .section-heading {
  color: #fff;
  margin-bottom: 8px;
}

.contact-left .section-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  margin-bottom: 20px;
}

.cf-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 7px;
}

.cf-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .18s, background .18s;
}

.cf-input:focus {
  border-color: var(--cyan);
  background: rgba(24, 169, 156, 0.06);
}

.cf-input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.cf-textarea {
  resize: none;
  height: 110px;
}

.cf-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.cf-check {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background .15s, border-color .15s;
}

.cf-check:checked {
  background: var(--cyan);
  border-color: var(--cyan);
}

.cf-check-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.cf-check-label a {
  color: var(--cyan);
  text-decoration: none;
}

.cf-submit {
  width: 100%;
  background: var(--cyan);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .18s, transform .18s, opacity .18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cf-submit:hover:not(:disabled) {
  background: #14958a;
  transform: translateY(-1px);
}

.cf-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.cf-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
  flex-shrink: 0;
}

.cf-submit.loading .cf-spinner {
  display: block;
}

.cf-submit.loading .cf-btn-text {
  opacity: .75;
}

.cf-toast {
  display: none;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  animation: fadeUp .3s ease;
}

.cf-toast.show {
  display: flex;
}

.cf-toast.success {
  background: rgba(24, 169, 156, 0.15);
  color: #5ee8dc;
  border: 1px solid rgba(24, 169, 156, 0.3);
}

.cf-toast.error {
  background: rgba(220, 60, 40, 0.12);
  color: #f87171;
  border: 1px solid rgba(220, 60, 40, 0.28);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-right {
  position: relative;
  min-height: 500px;
}

.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 29, 51, 0.2) 0%, transparent 60%);
}

.cta-btn-a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s, color .18s;
}

.cta-btn-a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}

.cta-btn-b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(9, 29, 51, 0.2);
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .18s, background .18s;
}

.cta-btn-b:hover {
  border-color: var(--blue);
  background: var(--grey-bg);
  color: var(--blue);
}

/* ── Location (services) ── */
.location-section {
  padding: 96px 0;
  background: var(--grey-bg);
}

.location-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.location-header {
  text-align: center;
  margin-bottom: 52px;
}

.location-header .section-tag {
  justify-content: center;
}

.location-header .section-sub {
  margin: 0 auto;
}

.location-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: stretch;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius);
  border: 0;
  display: block;
  box-shadow: var(--shadow);
}

.office-card {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(24, 169, 156, 0.14) 0%, transparent 70%);
  border-radius: 50%;
}

.office-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.office-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}

.office-info-list {
  list-style: none;
  margin-bottom: 32px;
}

.office-info-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.office-info-item:last-child {
  border-bottom: none;
}

.office-info-icon {
  width: 34px;
  height: 34px;
  background: rgba(24, 169, 156, 0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.office-info-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.office-info-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.office-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s;
  align-self: flex-start;
}

.office-dir-btn:hover {
  background: #14958a;
  color: #fff;
}

/* ── Services reveal animations ── */
.reveal-d1 {
  transition-delay: .08s;
}

.reveal-d2 {
  transition-delay: .16s;
}

.reveal-d3 {
  transition-delay: .24s;
}

.reveal-d4 {
  transition-delay: .32s;
}

.reveal-d5 {
  transition-delay: .40s;
}

/* ── Services responsive ── */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiw-steps {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-right {
    min-height: 300px;
  }

  .location-wrap {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 300px;
  }

  .contact-left {
    padding: 40px 32px;
  }
}

@media (max-width: 600px) {
  .services-hero {
    min-height: 70vh;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .cf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-a,
  .cta-btn-b {
    width: 100%;
    justify-content: center;
  }

  .contact-left {
    padding: 32px 22px;
  }

  .office-card {
    padding: 30px 24px;
  }

  .services-hero .scroll-cue {
    display: none;
  }
}


/* ============================================================
   CITIES PAGE (cities.html)
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  background: var(--blue);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 169, 156, .2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 169, 156, .1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.1;
}

.page-hero h1 span {
  color: var(--cyan);
}

.page-hero p {
  color: rgba(255, 255, 255, .55);
  font-size: 1rem;
  margin: 0;
  font-weight: 300;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(24, 169, 156, .15);
  border: 1px solid rgba(24, 169, 156, .3);
  color: var(--cyan);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}

/* ── Filters bar ── */
.filters-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(9, 29, 51, .05);
}

.filters-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-bg);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 9px 16px;
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  transition: border-color .2s;
}

.search-pill:focus-within {
  border-color: var(--cyan);
}

.search-pill i {
  color: var(--cyan);
  font-size: .9rem;
  flex-shrink: 0;
}

.search-pill input {
  background: none;
  border: none;
  outline: none;
  font-size: .875rem;
  color: var(--blue);
  width: 100%;
}

.search-pill input::placeholder {
  color: var(--muted);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: var(--grey-bg);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--cyan);
  background: var(--cyan-lt);
  color: var(--cyan);
}

.filter-btn.active {
  font-weight: 700;
}

.filter-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.sort-select {
  padding: 9px 14px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: var(--grey-bg);
  color: var(--muted);
  font-size: .85rem;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}

.sort-select:focus {
  border-color: var(--cyan);
}

.results-count {
  margin-left: auto;
  font-size: .85rem;
  color: var(--muted);
  white-space: nowrap;
}

.results-count strong {
  color: var(--blue);
}

/* ── Main content ── */
.cities-main {
  padding: 40px 0 80px;
  background: var(--grey-bg);
  min-height: 60vh;
}

/* ── Region groups ── */
.region-group {
  margin-bottom: 48px;
}

.region-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.region-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}

.region-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.region-count {
  font-size: .78rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 3px 12px;
}

/* ── City grid ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.city-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px 18px;
  text-align: center;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s, border-color .22s, background .22s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  animation: fadeIn .35s ease both;
}

.city-card::before {
  height: 2px;
  /* was 3px */
  background: linear-gradient(90deg, var(--cyan), #2dd4bf);
}

.city-card:hover {
  transform: translateY(-3px);
  /* was -5px, less dramatic */
  border-color: rgba(24, 169, 156, 0.35);
}

.city-badge {
  background: rgba(24, 169, 156, 0.08);
  border: 0.5px solid rgba(24, 169, 156, 0.2);
  color: var(--teal2);
  font-size: 11px;
  padding: 3px 10px;
}

.city-card:hover .city-badge {
  background: rgba(24, 169, 156, 0.15);
}

.popular-badge {
  font-size: 10px;
  /* was implicit */
  font-weight: 500;
}

.city-card:hover::before {
  transform: scaleX(1);
}

.city-card:hover .city-img {
  transform: scale(1.05);
}

.city-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--cyan-lt);
  margin: 0 auto 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.city-card:hover .city-img-wrap {
  background: #d0f0ed;
}

.city-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .3s ease;
}

.city-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.city-state {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.city-jobs-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--cyan-lt);
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  transition: background .2s;
}

.city-card:hover .city-jobs-badge {
  background: var(--cyan);
  color: #fff;
}

/* ── Popular badge ── */
.popular-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fef3c7;
  color: #d97706;
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

/* ── Empty state (cities) ── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.empty-state i {
  font-size: 3rem;
  color: var(--border);
  display: block;
  margin-bottom: 16px;
}

.empty-state h5 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--muted);
  font-size: .9rem;
}

/* ── View toggle ── */
.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--grey-bg);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 4px;
}

.view-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  transition: all .18s;
}

.view-toggle-btn.active {
  background: var(--white);
  color: var(--cyan);
  box-shadow: 0 2px 6px rgba(9, 29, 51, .08);
}

/* ── List view ── */
.city-list-view .city-grid {
  grid-template-columns: 1fr;
}

.city-list-view .city-card {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 16px 20px;
  gap: 16px;
}

.city-list-view .city-card::before {
  display: none;
}

.city-list-view .city-img-wrap {
  width: 52px;
  height: 52px;
  margin: 0;
  flex-shrink: 0;
}

.city-list-view .city-card-info {
  flex: 1;
}

.city-list-view .city-name {
  margin-bottom: 2px;
}

.city-list-view .city-card .city-arrow {
  color: var(--border);
  font-size: 1rem;
  transition: color .2s, transform .2s;
}

.city-list-view .city-card:hover .city-arrow {
  color: var(--cyan);
  transform: translateX(3px);
}

/* ── Back button ── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  padding: 7px 16px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  margin-bottom: 20px;
  cursor: pointer;
}

.back-btn:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

/* ── Fade animation ── */
.fade-in {
  animation: fadeIn .3s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Cities responsive ── */
@media (max-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .filters-inner {
    gap: 8px;
  }

  .results-count {
    display: none;
  }

  .filter-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   JOB DETAILS PAGE (jobDetails.html)
   ============================================================ */

/* ── Job Hero Header ── */
.job-hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 48px 0 44px;
  margin-bottom: 28px;
}

.job-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 169, 156, .2) 0%, transparent 70%);
  pointer-events: none;
}

.job-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 169, 156, .1) 0%, transparent 70%);
  pointer-events: none;
}

.job-hero .container {
  position: relative;
  z-index: 1;
}

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-OPEN {
  background: rgba(34, 197, 94, .15);
  color: #4ade80;
}

.status-CLOSED {
  background: rgba(239, 68, 68, .15);
  color: #f87171;
}

/* Salary + apply right col */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.salary-tag {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 4px;
}

.posted-date {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
}

/* Apply button — hero variant (jobDetails) */
.job-hero .btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 32px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(24, 169, 156, .4);
  text-decoration: none;
}

.job-hero .btn-apply:hover:not(:disabled) {
  background: #14968a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 169, 156, .45);
}

.job-hero .btn-apply:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.job-hero .btn-apply.applied {
  background: #16a34a;
  box-shadow: 0 4px 16px rgba(22, 163, 74, .3);
}

.job-hero .btn-apply.closed {
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}

/* ── Page Layout ── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items: start;
}

/* ── Panels ── */
.panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.panel:last-child {
  margin-bottom: 0;
}

.panel-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.panel-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Description prose */
.job-description-body {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.85;
}

.job-description-body h1,
.job-description-body h2,
.job-description-body h3 {
  color: var(--blue);
  margin-top: 1.4em;
}

.job-description-body ul,
.job-description-body ol {
  padding-left: 20px;
}

.job-description-body li {
  margin-bottom: 6px;
}

/* ── Overview table ── */
.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overview-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #f0f4f8;
  font-size: .875rem;
}

.overview-list li:last-child {
  border-bottom: none;
}

.ov-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cyan-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ov-label {
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
}

.ov-value {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 1px;
}

/* Sidebar apply button */
.btn-apply-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px;
  width: 100%;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(24, 169, 156, .3);
  margin-top: 18px;
}

.btn-apply-side:hover:not(:disabled) {
  background: #14968a;
}

.btn-apply-side:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.btn-apply-side.applied {
  background: #16a34a;
  box-shadow: 0 4px 14px rgba(22, 163, 74, .25);
}

.btn-apply-side.closed {
  background: var(--grey-bg);
  color: var(--muted);
  box-shadow: none;
}

/* Company card */
.company-logo-box {
  min-width: 52px;
  max-width: 72px;
  height: 52px;
  border-radius: 12px;
  background: var(--cyan-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
}

.company-name-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}

.company-city-text {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 2px;
}

.company-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 18px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.btn-company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--grey-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
}

.btn-company:hover {
  background: var(--cyan-lt);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ── Skeleton (jobDetails) ── */
.skeleton.h-tall {
  height: 36px;
}

.skeleton.h-short {
  width: 55%;
}

.skeleton.h-xs {
  height: 12px;
}

/* ── Error State ── */
.error-state {
  text-align: center;
  padding: 80px 20px;
}

.error-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--red);
  margin: 0 auto 20px;
}

.error-state h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ── Job Details responsive ── */
@media (max-width: 991px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .hero-right {
    align-items: flex-start;
    margin-top: 24px;
  }

  .salary-tag {
    font-size: 1.3rem;
  }
}

@media (max-width: 560px) {
  .job-hero {
    padding: 36px 0 32px;
  }

  .hero-meta {
    gap: 8px;
  }

  .meta-chip {
    font-size: .76rem;
    padding: 5px 10px;
  }
}


/* ============================================================
   PROJECTOR / 1000–1199px GAP FIX
   Targets the missing range between desktop and tablet
   ============================================================ */
@media (max-width: 1100px) {

  /* Hero search — prevent button orphan */
  .hero-search {
    flex-direction: column;
  }
  .hero-search .s-field + .s-field {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  /* Hero badges — bleed at narrow lg columns */
  .hero-badge {
    display: none;
  }

  /* Why grid — 4 cols → 2 */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Values grid (about page) — 4 cols → 2 */
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Company jobs grid — 3 cols → 2 */
  .jobs-grid,
  .skeleton-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Services grid — 3 cols → 2 */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact split — side-by-side → stacked */
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .contact-right {
    min-height: 280px;
  }
}

/* Slider card width recalculation hint for JS */
/* Also fix at 1200px for badges */
@media (max-width: 1200px) {
  .hero-badge {
    display: none;
  }
}



/* ── Share Bar (jobDetails) ── */
.job-share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.job-share-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
  margin-right: 2px;
}

.job-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--grey-bg);
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: all .18s;
  font-family: 'DM Sans', sans-serif;
}

.job-share-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-lt);
}

.job-share-btn i {
  font-size: 13px;
}

.job-share-copied {
  background: #f0fdf4 !important;
  color: #16a34a !important;
  border-color: #22c55e !important;
}


/* ── Job Card Share Button ── */
.jc-share-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: var(--grey-bg);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .78rem;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
  z-index: 5;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}
.jc-share-btn:hover {
  background: var(--cyan-lt);
  color: var(--cyan);
  border-color: var(--cyan);
  transform: scale(1.1);
}
.jc-share-btn.copied {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #22c55e;
}

/* ── Share Popover (desktop fallback) ── */
.jc-share-popover {
  position: absolute;
  top: 42px;
  right: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
  min-width: 160px;
  box-shadow: 0 8px 28px rgba(9,29,51,.13);
  animation: jcPopIn .15s ease;
}
@keyframes jcPopIn {
  from { opacity:0; transform:translateY(-6px) scale(.96); }
  to   { opacity:1; transform:translateY(0)   scale(1); }
}
.jc-share-popover-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: background .13s, color .13s;
}
.jc-share-popover-item:hover {
  background: var(--grey-bg);
  color: var(--navy);
}
.jc-share-popover-item i {
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
}