/* ===================== Healing Hands — Design System ===================== */

:root {
  --navy-900: #14315c;
  --navy-800: #1c4176;
  --navy-700: #285490;
  --green-700: #2f7d4a;
  --green-600: #3f9c56;
  --green-500: #6cbf6f;
  --ink: #16293b;
  --ink-soft: #52697c;
  --bg: #f4f9f5;
  --bg-alt: #ffffff;
  --line: #dfe9e1;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(20, 49, 92, 0.07);
  --shadow-md: 0 12px 32px rgba(20, 49, 92, 0.11);
  --shadow-lg: 0 24px 60px rgba(20, 49, 92, 0.17);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.22; }
h3 { font-size: 1.2rem; }

p { margin: 0; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
}

/* ===================== Buttons ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--green-600), var(--green-700));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-secondary:hover { background: var(--navy-800); color: var(--white); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--navy-800);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===================== Header ===================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 4px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 106px; width: auto; flex-shrink: 0; }

.brand-text strong {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 1.28rem;
  color: var(--navy-900);
  line-height: 1.1;
}
.brand-text strong span { color: var(--green-700); }
.brand-text small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-700); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Hero ===================== */

.hero {
  padding: 72px 0 96px;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(63, 156, 86, 0.1), transparent 70%),
    radial-gradient(50% 50% at 5% 95%, rgba(20, 65, 118, 0.08), transparent 70%),
    var(--bg);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy p { font-size: 1.08rem; margin-top: 18px; max-width: 620px; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong { font-size: 1.6rem; color: var(--navy-900); font-family: "Nunito", sans-serif; }
.hero-stats span { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }

.hero-media {
  position: relative;
}
.hero-media .media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.6;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-card {
  position: absolute;
  bottom: -26px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.hero-card .badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.hero-card p { font-size: 0.88rem; color: var(--ink); font-weight: 500; }
.hero-card strong { color: var(--navy-900); }

.hero-floating {
  position: absolute;
  top: 30px;
  right: -18px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===================== Hero slider ===================== */

.hero-slider {
  padding: 0;
  background: none;
}
.hero-slides { position: relative; }
.hero-slide {
  display: none;
  position: relative;
  min-height: 670px;
  align-items: center;
  overflow: hidden;
}
.hero-slide.active {
  display: flex;
  animation: heroFadeIn 0.7s ease;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.65) saturate(1.1);
  transform: scale(1.15);
  z-index: 0;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
   object-fit: contain;
  object-position: center;
  z-index: 1;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(6, 27, 48, 0.82) 0%, rgba(6, 27, 48, 0.6) 34%, rgba(6, 27, 48, 0.32) 60%, rgba(6, 27, 48, 0.18) 100%);
}
.hero-slide .container {
  position: relative;
  z-index: 3;
}
.hero-slide-content {
  margin: 0;
  text-align: left;
  color: var(--white);
}
.hero-slide-content .eyebrow { color: var(--green-500); }
.hero-slide-content .eyebrow::before { background: var(--green-500); }
.hero-slide-content h1 { color: var(--white); }
.hero-slide-content h1 .accent { color: var(--green-500); }
.hero-slide-content p { color: rgba(255, 255, 255, 0.86); font-size: 1.08rem; margin-top: 18px; }
.hero-slide-content .hero-tagline {
  color: var(--green-500);
  font-weight: 700;
  font-size: 1.02rem;
  margin-top: 18px;
  letter-spacing: 0.02em;
}
.hero-slide-content .hero-actions { margin-top: 32px; }
.btn-on-dark { border-color: var(--white); color: var(--white); }
.btn-on-dark:hover { background: var(--white); color: var(--navy-900); }

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

@media (max-width: 640px) {
  .hero-slide { min-height: 562px; }
  .hero-slide-content { max-width: 100%; }
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(20, 49, 92, 0.25);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-slider-dot.active {
  background: var(--green-600);
  transform: scale(1.25);
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 5;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.hero-slider-arrow:hover { background: var(--green-600); color: var(--white); box-shadow: var(--shadow-md); }
.hero-slider-arrow.prev { left: 16px; }
.hero-slider-arrow.next { right: 16px; }

@media (max-width: 900px) {
  .hero-slider-arrow { display: none; }
  .hero-slider-dots { bottom: 14px; }
}

/* ===================== Section utilities ===================== */

.section { padding: 96px 0; }
.section-light { background: var(--bg); }
.section-white { background: var(--white); }
.section-dark {
  background: linear-gradient(160deg, var(--navy-900), #0a2338);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark .eyebrow { color: var(--white); }
.section-dark .eyebrow::before { background: var(--green-500); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .benefits-grid h3 { color: var(--navy-900); }
.section-dark .benefits-grid p { color: var(--ink-soft); }
.section-gradient {
  background: linear-gradient(120deg, var(--navy-900), var(--green-700));
  color: var(--white);
}
.section-gradient h2, .section-gradient .eyebrow { color: var(--white); }
.section-gradient .eyebrow::before { background: var(--white); }
.section-gradient p { color: rgba(255,255,255,0.86); }

.section-heading {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-heading.align-left { margin: 0 0 48px; text-align: left; }

/* ===================== Reveal animation ===================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===================== Services grid (home) ===================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(63, 156, 86, 0.35);
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(63,156,86,0.14), rgba(20,65,118,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 0.86rem; font-weight: 700; color: var(--green-700);
}

/* ===================== Why choose ===================== */

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}
.section-light .feature-list li { border-bottom-color: var(--line); color: var(--ink); }
.feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.72rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.feature-cards {
  display: grid;
  gap: 20px;
}
.feature-cards article {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.section-light .feature-cards article {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.feature-cards h3 { margin-bottom: 8px; }
.feature-cards p { font-size: 0.94rem; }

/* ===================== Process ===================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
.process-grid article {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--line);
}
.process-grid strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--navy-800));
  color: var(--white);
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.process-grid h3 { margin-bottom: 10px; }
.process-grid p { font-size: 0.94rem; }

/* ===================== Types grid ===================== */

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.types-grid article {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--white);
}
.types-grid .type-media { height: 170px; overflow: hidden; }
.types-grid .type-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.types-grid article:hover .type-media img { transform: scale(1.06); }
.types-grid .type-body { padding: 22px 22px 26px; }
.types-grid h3 { font-size: 1.05rem; margin-bottom: 8px; }
.types-grid p { font-size: 0.9rem; }
.types-grid .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 0.86rem; font-weight: 700; color: var(--green-700);
}

/* 7-item services grid: 4 across, then 3 centered on the last row */
.service-grid-7 { grid-template-columns: repeat(4, 1fr); }
.service-grid-7 article:nth-child(5) { grid-column: 1 / span 1; }
@media (min-width: 1081px) {
  .service-grid-7 { grid-template-columns: repeat(12, 1fr); }
  .service-grid-7 article { grid-column: span 3; }
  .service-grid-7 article:nth-child(5) { grid-column: 3 / span 3; }
  .service-grid-7 article:nth-child(6) { grid-column: 6 / span 3; }
  .service-grid-7 article:nth-child(7) { grid-column: 9 / span 3; }
}

/* ===================== Testimonials ===================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.testimonial-stars { color: var(--green-600); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p.quote { color: var(--ink); font-size: 0.98rem; font-style: italic; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--green-600));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: 0.92rem; color: var(--navy-900); }
.testimonial-person span { font-size: 0.8rem; color: var(--ink-soft); }

/* ===================== CTA ===================== */

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(6px);
}
.contact-card strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; opacity: 0.85; }
.contact-card a {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.contact-card p { font-size: 0.88rem; color: rgba(255,255,255,0.78); }

/* ===================== Page hero (inner pages) ===================== */

.page-hero {
  padding: 64px 0 60px;
  background: linear-gradient(160deg, var(--navy-900), #0a2338);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 90% 0%, rgba(63,156,86,0.24), transparent 70%);
}
.page-hero .container { position: relative;  }
.page-hero .eyebrow { color: var(--green-500); }
.page-hero .eyebrow::before { background: var(--green-500); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.page-hero-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ===================== About page ===================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding: 96px 24px;
}
.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 5/4.6;
}
.about-image-card img { width: 100%; height: 100%; object-fit: cover; }

.mission-grid, .about-cards, .service-detail-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.mission-grid article, .about-cards article, .service-detail-grid article {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.section-dark .mission-grid article,
.section-dark .service-detail-grid article {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.mission-grid h3, .about-cards h3, .service-detail-grid h3 { margin-bottom: 10px; }
.mission-grid p, .about-cards p, .service-detail-grid p { font-size: 0.94rem; }
.mission-grid .num, .about-cards .icon-badge, .service-detail-grid .num, .benefits-grid .icon-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--navy-800));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  font-weight: 700; margin-bottom: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-grid > div {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.stats-grid strong {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  color: var(--green-700);
  margin-bottom: 6px;
}
.stats-grid span { font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }

.about-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.about-cards { grid-template-columns: 1fr; gap: 18px; }

.section .section > * { margin: 0; }

/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: center;
}
.team-photo { height: 190px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .team-body { padding: 20px 16px 26px; }
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.82rem; color: var(--green-700); font-weight: 600; }

/* ===================== Services page ===================== */

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-list article {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-list article:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-list .service-icon { margin-bottom: 18px; }
.service-list h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-list p { font-size: 0.93rem; }
.service-list .tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(63,156,86,0.1);
  padding: 5px 12px;
  border-radius: 999px;
}

.benefits-grid { grid-template-columns: repeat(4, 1fr); }
.benefits-grid article {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: left;
}
.benefits-grid .benefit-media { height: 140px; overflow: hidden; }
.benefits-grid .benefit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.benefits-grid article:hover .benefit-media img { transform: scale(1.06); }
.benefits-grid .benefit-body { padding: 22px 22px 26px; }
.benefits-grid h3 { font-size: 1.02rem; margin-bottom: 8px; }
.benefits-grid p { font-size: 0.9rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--green-600);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
  position: relative;
}
.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pricing-card h3 { margin-bottom: 6px; }
.pricing-card .price {
  font-family: "Nunito", sans-serif;
  font-size: 2.2rem;
  color: var(--navy-900);
  margin: 14px 0;
}
.pricing-card .price span { font-size: 0.9rem; color: var(--ink-soft); font-weight: 400; }
.pricing-card ul { text-align: left; margin: 22px 0; display: grid; gap: 10px; }
.pricing-card ul li { font-size: 0.9rem; display: flex; gap: 8px; }
.pricing-card ul li::before { content: "✓"; color: var(--green-600); font-weight: 700; }

/* ===================== FAQ ===================== */

.faq-list { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  cursor: pointer;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(63,156,86,0.12);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--green-600); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p { padding: 0 24px 22px; font-size: 0.92rem; }

/* ===================== Careers page ===================== */

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.jobs-grid article {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.jobs-grid h3 { font-size: 1.1rem; }
.jobs-grid p { font-size: 0.92rem; flex-grow: 1; }
.jobs-grid span {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-800);
  background: rgba(20,65,118,0.08);
  padding: 5px 12px;
  border-radius: 999px;
}

.application-form {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

/* ===================== Forms ===================== */

form { display: grid; gap: 16px; }
label { font-size: 0.86rem; font-weight: 600; color: var(--navy-900); margin-bottom: -8px; }
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(63,156,86,0.12);
  background: var(--white);
}
textarea { resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: -6px; }
.form-success {
  display: none;
  background: rgba(63,156,86,0.12);
  border: 1px solid rgba(63,156,86,0.4);
  color: var(--green-700);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ===================== Contact page ===================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-details { display: grid; gap: 24px; }
.contact-card-large {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.contact-card-large h2 { margin-bottom: 12px; font-size: 1.3rem; }
.contact-meta { display: grid; gap: 18px; margin-top: 22px; }
.contact-meta strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-700); margin-bottom: 4px; }
.contact-meta a, .contact-meta p { font-size: 1rem; color: var(--navy-900); font-weight: 600; }
.service-area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.service-area-list li {
  padding: 8px 16px;
  background: rgba(63,156,86,0.1);
  color: var(--green-700);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-form-card h2 { margin-bottom: 20px; font-size: 1.3rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 340px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.contact-benefits article {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.contact-benefits h3 { margin-bottom: 10px; }
.contact-benefits p { font-size: 0.92rem; }

/* ===================== Footer ===================== */

.site-footer {
  background: #081c2e;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 122px; width: auto; }
.footer-brand strong { color: var(--white); font-family: "Nunito", sans-serif; font-size: 1.15rem; }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.site-footer h4 {
  color: var(--white);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-grid a, .footer-grid p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--green-500); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
}
.footer-social a:hover { background: var(--green-600); color: var(--white); }
.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--green-500); }

/* ===================== Floating WhatsApp button ===================== */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 210;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.whatsapp-float .whatsapp-badge {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.whatsapp-float .whatsapp-icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.whatsapp-float .whatsapp-icon svg {
  width: 50px;
  height: 50px;
}
.whatsapp-float:hover .whatsapp-icon { transform: scale(1.08); }

@media (max-width: 480px) {
  .whatsapp-float .whatsapp-badge { display: none; }
}

/* ===================== Sticky call button (mobile) ===================== */

.sticky-call {
  display: none;
  position: fixed;
  bottom: 92px;
  right: 20px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

/* ===================== Responsive ===================== */

@media (max-width: 1080px) {
  .service-grid, .types-grid, .team-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid, .about-cards, .service-detail-grid, .benefits-grid,
  .service-list, .testimonial-grid, .pricing-grid, .jobs-grid, .contact-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .hero-grid, .why-grid, .about-grid, .about-details, .cta-grid, .contact-grid, .application-form {
    grid-template-columns: 1fr;
  }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
  .hero-card, .hero-floating { position: static; margin-top: 18px; max-width: none; }
  .sticky-call { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .service-grid, .types-grid, .team-grid, .mission-grid, .about-cards,
  .service-detail-grid, .benefits-grid, .service-list, .testimonial-grid,
  .pricing-grid, .jobs-grid, .contact-benefits, .stats-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured { transform: none; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 36px; }
}

/* ===================== Enquiry modal ===================== */

.enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.enquiry-modal.open { display: flex; }
.enquiry-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 47, 77, 0.55);
  backdrop-filter: blur(2px);
}
.enquiry-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 30px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.enquiry-modal-box::-webkit-scrollbar { display: none; }
.enquiry-modal-box h2 {
  font-family: "Nunito", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.enquiry-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.enquiry-modal-close:hover { background: var(--navy-800); color: var(--white); }
.enquiry-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.enquiry-modal-row label { margin-bottom: -8px; }
@media (max-width: 480px) {
  .enquiry-modal-row { grid-template-columns: 1fr; }
  .enquiry-modal-box { padding: 26px 20px; }
}
