/* ============================================
   FK Healthcare Services — Shared Styles
   ============================================ */

:root {
  --primary: #0F6E56;
  --primary-light: #1D9E75;
  --primary-bg: #E1F5EE;
  --accent: #185FA5;
  --accent-hover: #0C447C;
  --dark: #1A1A2E;
  --text: #3D3D4E;
  --text-muted: #6B6B80;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --border: #E2E4EA;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --radius: 6px;
  --radius-lg: 12px;
  --max-width: 1100px;
  --nav-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  color: var(--dark);
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-light);
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-heading,
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub,
.section-subtext {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 48px;
}

.section-subtext {
  margin-top: -32px;
  margin-bottom: 48px;
  max-width: 640px;
  font-size: 1.05rem;
}

.section-subtext {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: -32px auto 48px;
  font-size: 1.05rem;
}

/* ---- Lucide Icons ---- */
.icon {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  display: inline-block;
  vertical-align: middle;
}

.icon-lg {
  width: 40px;
  height: 40px;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.icon-wrap .icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.icon-card .icon-wrap {
  margin-left: auto;
  margin-right: auto;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--primary-bg);
  color: var(--primary);
  border-color: var(--primary-bg);
}

.btn-teal-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-teal-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1DA851;
  border-color: #1DA851;
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: #ffffff;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav:not(.scrolled) .nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.92);
}

.nav:not(.scrolled) .nav-links a:not(.btn):hover,
.nav:not(.scrolled) .nav-links a:not(.btn).active {
  color: #ffffff;
}

.nav:not(.scrolled) .nav-links a.active::after {
  background: #ffffff;
}

.nav:not(.scrolled) .hamburger span {
  background: #ffffff;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.logo,
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  min-width: 0;
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}

.logo-img-light {
  display: none;
}

.nav:not(.scrolled) .logo-img-dark {
  display: none;
}

.nav:not(.scrolled) .logo-img-light {
  display: block;
}

.nav.scrolled .logo-img-light {
  display: none;
}

.nav.scrolled .logo-img-dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li {
  list-style: none;
}

.nav-mobile-cta {
  display: none;
}

.nav-links a:not(.btn) {
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

.nav-links a:not(.btn).active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.nav-cta .btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 68vh;
  min-height: 420px;
  max-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 50, 38, 0.97) 0%,
    rgba(10, 50, 38, 0.84) 50%,
    rgba(10, 50, 38, 0.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  margin: 0 auto;
  max-width: 780px;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.70);
  border-radius: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

/* ---- Stats Strip ---- */
.stats-strip {
  background: #0F6E56;
  padding: 32px 0;
  font-family: 'DM Sans', sans-serif;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.80);
  margin: 0 auto 10px;
  display: block;
  stroke-width: 1.5;
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-icon-circle .icon {
  color: var(--white);
}

.stat-value,
.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* ---- Hero & stats responsive ---- */
@media (max-width: 1024px) {
  .hero {
    height: 62vh;
    max-height: 500px;
  }

  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .hero {
    height: auto;
    min-height: unset;
    max-height: none;
    align-items: flex-start;
    padding-top: calc(var(--nav-height) + 28px);
    padding-bottom: 52px;
    box-sizing: border-box;
  }

  .hero .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 16px;
  }

  .stat-item:nth-child(2),
  .stat-item:nth-child(4) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stats-strip {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 44px;
  }

  .hero .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-btns a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .stat-number,
  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 40px;
  }

  .hero .hero-content {
    padding: 0 14px;
  }

  .hero-title {
    font-size: 22px;
  }
}

/* ---- Cards ---- */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.card-grid-6 { grid-template-columns: repeat(3, 1fr); }

.icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.icon-card:hover {
  box-shadow: var(--shadow-md);
}

.icon-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.icon-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.service-card .card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card .card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.service-card .card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.service-card .card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.service-card .card-link:hover {
  color: var(--primary-light);
}

/* ---- Who We Serve image cards ---- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.serve-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  cursor: default;
}

.serve-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.serve-card:hover img {
  transform: scale(1.05);
}

.serve-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 40, 30, 0.88) 0%, rgba(10, 40, 30, 0.3) 55%, transparent 100%);
}

.serve-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #ffffff;
}

.serve-card .card-content .icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
  margin-bottom: 8px;
  opacity: 0.9;
}

.serve-card .card-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 6px;
}

.serve-card .card-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
  line-height: 1.5;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--primary);
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.80);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ---- Page Banner ---- */
.page-banner {
  background: var(--primary);
  padding: calc(var(--nav-height) + 24px) 0 52px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-banner .banner-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-banner .eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.page-banner h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.2;
  max-width: 560px;
}

.page-banner .banner-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .sep {
  font-size: 10px;
}

.page-banner .accent-bar {
  width: 48px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  margin: 20px 0 0;
}

/* ---- About Page ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.7;
}

.info-card {
  background: var(--primary-bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.info-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 110, 86, 0.15);
  font-size: 0.95rem;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card .info-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.info-card .info-icon .icon {
  width: 22px;
  height: 22px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.mv-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mv-card.mission {
  background: var(--primary);
}

.mv-card.mission h3,
.mv-card.mission p {
  color: var(--white);
}

.mv-card.vision {
  background: var(--dark);
}

.mv-card.vision h3,
.mv-card.vision p {
  color: var(--white);
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.diff-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}

.diff-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.diff-list .num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.diff-list strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.diff-list span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
}

.trust-card .check {
  color: var(--primary);
  flex-shrink: 0;
}

.trust-card .check .icon {
  width: 28px;
  height: 28px;
}

.trust-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-section {
  text-align: center;
  padding: 64px 0;
}

.cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
}

/* ---- About: Why Choose Us ---- */
.why-section .section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: -32px auto 0;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.why-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 66%;
  margin: 20px auto 0;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease;
}

.why-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.why-card .icon-wrap .icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.why-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- Services Page ---- */
.services-page .service-block {
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}

.services-page .service-block:last-of-type {
  border-bottom: none;
}

.service-block .service-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.service-block h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin: 0 0 14px;
  line-height: 1.25;
}

.service-block .service-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 540px;
}

.service-block .sub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.service-block .sub-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.service-block .sub-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #ffffff;
}

.billing-table {
  width: 100%;
  min-width: 520px;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: auto;
}

.billing-table thead tr {
  background: var(--primary);
  color: #ffffff;
}

.billing-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  font-family: 'DM Sans', sans-serif;
}

.billing-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
  vertical-align: top;
}

.billing-table tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

.billing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---- Services Page ---- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.service-block.reverse {
  grid-template-columns: 1.4fr 1fr;
}

.service-block.reverse .service-img {
  order: 2;
}

.service-block.reverse .service-content {
  order: 1;
}

.service-block.align-start {
  align-items: start;
}

.service-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.service-content {
  min-width: 0;
  max-width: 100%;
}

.service-content > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-header .icon {
  color: var(--primary);
  flex-shrink: 0;
}

.service-header h2 {
  font-size: 1.5rem;
}

.bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.bullet-grid li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.bullet-grid li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin: 20px 0;
  display: block;
}

table {
  min-width: 520px;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: auto;
}

table th,
table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

table th {
  background: var(--primary-bg);
  color: var(--dark);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover td {
  background: var(--bg-soft);
}

.subservice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.subservice-card:hover {
  box-shadow: var(--shadow-md);
}

.subservice-card .label {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.subservice-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.subservice-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

.form-success {
  display: none;
  background: var(--primary-bg);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.form-message {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.form-message.success {
  background: #E1F5EE;
  color: #0F6E56;
  border: 1px solid #1D9E75;
}

.form-message.error {
  background: #FEECEC;
  color: #C0392B;
  border: 1px solid #E74C3C;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ---- Popup ---- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 20, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
  animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  width: 100%;
  max-width: 520px;
  position: relative;
  animation: slideUpPopup 0.35s ease;
  max-height: 92vh;
  overflow-y: auto;
}

@keyframes slideUpPopup {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-soft);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.2s;
}

.popup-close:hover {
  background: var(--border);
  color: var(--dark);
}

.popup-header {
  margin-bottom: 24px;
}

.popup-eyebrow {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.popup-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

.popup-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-details {
  padding-top: 8px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-item a:not(.btn) {
  color: var(--primary);
}

.trust-strip {
  background: var(--bg-soft);
  padding: 48px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-box .icon-wrap {
  margin: 0 auto 12px;
}

.trust-box h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 0;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer-contact li .icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.whatsapp-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-float a:hover .tooltip {
  opacity: 1;
}

/* ---- Scroll Animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Background Utilities ---- */
.bg-soft { background: var(--bg-soft); }
.bg-primary-light { background: var(--primary-bg); }
.bg-white { background: var(--white); }

/* ---- Responsive (mobile-first audit) ---- */

/* Tablet large */
@media (max-width: 1024px) {
  .card-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin-top: 0;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .section-heading,
  .section-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .section-sub,
  .section-subtext {
    font-size: 14px;
    margin-bottom: 28px;
  }

  :root {
    --nav-height: 60px;
  }

  .nav-inner {
    height: 60px;
    padding: 0 15px;
    gap: 12px;
  }

  .logo,
  .nav-logo {
    flex-shrink: 1;
    max-width: calc(100% - 44px);
  }

  .logo-img {
    height: 48px;
    max-width: 100%;
  }

  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    flex-shrink: 0;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .service-block.reverse .service-img {
    order: 1;
  }

  .service-block.reverse .service-content {
    order: 2;
  }

  .service-img img {
    height: 200px;
  }

  .bullet-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: calc(var(--nav-height) + 12px) 0 36px;
  }

  .page-banner h1 {
    font-size: 28px;
  }

  .page-banner .banner-sub {
    font-size: 14px;
  }

  .cta-banner h2 {
    font-size: 22px;
  }

  .cta-banner p {
    font-size: 14px;
  }

  .contact-form {
    padding: 24px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    gap: 0;
    box-shadow: var(--shadow-md);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav:not(.scrolled) .nav-links.open a:not(.btn) {
    color: var(--dark);
  }

  .nav:not(.scrolled) .nav-links.open a:not(.btn):hover,
  .nav:not(.scrolled) .nav-links.open a:not(.btn).active {
    color: var(--primary);
  }

  .nav-links li:not(.nav-mobile-cta) {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:not(.btn) {
    font-size: 15px;
    padding: 13px 24px;
    display: block;
    color: var(--dark);
  }

  .nav-links a:not(.btn):hover,
  .nav-links a:not(.btn).active {
    color: var(--primary);
    background: var(--primary-bg);
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-mobile-cta {
    display: block;
    margin: 12px 16px 0;
    padding-top: 0;
    border-top: none;
    width: auto;
  }

  .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
  }

  .whatsapp-float .tooltip {
    display: none;
  }
}

/* Mobile large */
@media (max-width: 640px) {
  .card-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid,
  .diff-list {
    grid-template-columns: 1fr;
  }

  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .job-header,
  .job-body {
    padding: 20px 16px;
  }

  .job-apply {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-apply .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .job-title {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 36px 0;
  }

  .section-heading,
  .section-title {
    font-size: 22px;
  }

  .logo-img {
    height: 48px;
  }

  .card-grid-6 {
    grid-template-columns: 1fr;
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .serve-card {
    height: 220px;
  }

  .why-grid,
  .why-grid-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .page-banner h1 {
    font-size: 24px;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .cta-banner h2 {
    font-size: 20px;
  }

  .service-block .sub-list {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .btn-primary,
  .btn-outline-white,
  .btn-outline-primary {
    font-size: 14px;
    padding: 11px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float a {
    width: 46px;
    height: 46px;
  }
}

/* Mobile small */
@media (max-width: 380px) {
  .logo-img {
    height: 44px;
  }

  .card-grid-5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .popup-box {
    padding: 24px 18px;
    border-radius: 12px;
  }
}

/* ---- Careers page ---- */
.careers-section {
  padding: 64px 0;
}

.careers-intro {
  margin-bottom: 32px;
}

.careers-intro h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin: 0 0 8px;
}

.careers-intro p {
  font-size: 15px;
  color: var(--text-muted);
}

.job-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.job-header {
  background: var(--primary-bg);
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}

.job-badge {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.job-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--dark);
  margin: 0 0 14px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.job-meta .icon-sm {
  color: var(--primary);
}

.job-body {
  padding: 32px;
}

.job-section {
  margin-bottom: 28px;
}

.job-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--primary-bg);
}

.job-section p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.job-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(15, 110, 86, 0.2);
}

.job-apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  flex-wrap: wrap;
}

.apply-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.apply-info .icon {
  color: var(--primary);
  width: 24px;
  height: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.apply-label {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 4px;
}

.apply-email {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.apply-email:hover {
  text-decoration: underline;
}

.apply-subject {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.no-openings {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.no-openings a {
  color: var(--primary);
  font-weight: 500;
}

