:root {
  --bg: #f6f4f1;
  --bg-alt: #fff7e8;
  --ink: #1b1d1f;
  --muted: #5b6066;
  --accent: #1a7f6b;
  --accent-2: #e08a2f;
  --accent-3: #0f3d33;
  --card: #ffffff;
  --surface: rgba(255, 255, 255, 0.9);
  --stroke: rgba(15, 61, 51, 0.12);
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.12);
  --shadow-soft: 0 16px 36px rgba(15, 61, 51, 0.12);
  --shadow-strong: 0 28px 70px rgba(15, 61, 51, 0.22);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff1d6, transparent 60%),
    radial-gradient(circle at 15% 25%, #d8efe9, transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(26, 127, 107, 0.08), transparent 45%),
    var(--bg);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(15, 61, 51, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 241, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 61, 51, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1a7f6b, #78cbb1);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.nav-links a {
  opacity: 0.75;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 32px rgba(26, 127, 107, 0.25);
}

.btn-outline {
  border-color: rgba(15, 61, 51, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(26, 127, 107, 0.25);
  outline-offset: 2px;
}

.menu-btn {
  display: none;
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  place-items: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(20, 20, 20, 0.08);
  background: #ffffff;
}

.menu-bar {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-3);
}

.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 127, 107, 0.22), transparent 65%);
  z-index: 0;
}

.hero::before {
  top: -160px;
  right: -120px;
}

.hero::after {
  bottom: -190px;
  left: -160px;
  background: radial-gradient(circle, rgba(224, 138, 47, 0.2), transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26, 127, 107, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 18px;
}

.hero-card,
.course-card,
.feature,
.testimonial,
.stat-card,
.media-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-card:hover,
.stat-card:hover,
.media-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.hero-card .label {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 20px rgba(20, 20, 20, 0.08);
}

.hero-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 14px;
}

.stat strong {
  font-size: 1.3rem;
}

.section {
  padding: 86px 0;
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(720px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 61, 51, 0.12), transparent);
  transform: translateX(-50%);
}

.section:last-of-type::after {
  display: none;
}

.gallery-section {
  position: relative;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(26, 127, 107, 0.12), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(224, 138, 47, 0.18), transparent 55%);
  pointer-events: none;
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: center;
}

.gallery-tab {
  border: 1px solid rgba(15, 61, 51, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #0f2740;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(15, 61, 51, 0.12);
}

.gallery-tab.active {
  background: linear-gradient(120deg, #1a7f6b, #0f3d33);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 28px rgba(26, 127, 107, 0.22);
}

.gallery-carousel {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 16px;
}

.gallery-track {
  position: relative;
  height: 420px;
}

.gallery-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(80vw, 420px);
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #0b1a16;
  box-shadow: 0 25px 60px rgba(12, 24, 32, 0.25);
  transform: translateX(-50%) scale(0.7);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 26, 0) 55%, rgba(10, 20, 26, 0.75));
}

.gallery-card-info {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: #ffffff;
}

.gallery-card-info h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.gallery-card-info p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-card.is-active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.gallery-card.is-prev {
  transform: translateX(calc(-50% - 260px)) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

.gallery-card.is-next {
  transform: translateX(calc(-50% + 260px)) scale(0.9);
  opacity: 0.7;
  z-index: 2;
}

.gallery-card.is-hidden {
  opacity: 0;
  transform: translateX(-50%) scale(0.6);
}

.gallery-card.is-prev img,
.gallery-card.is-next img {
  filter: grayscale(0.35) saturate(0.7) blur(1.5px);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 61, 51, 0.2);
  background: #ffffff;
  color: #0f3d33;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 61, 51, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(15, 61, 51, 0.2);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 900px) {
  .gallery-track {
    height: 360px;
  }

  .gallery-card.is-prev {
    transform: translateX(calc(-50% - 200px)) scale(0.88);
  }

  .gallery-card.is-next {
    transform: translateX(calc(-50% + 200px)) scale(0.88);
  }
}

@media (max-width: 720px) {
  .gallery-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    justify-self: center;
  }

  .gallery-track {
    height: 320px;
  }

  .gallery-card.is-prev,
  .gallery-card.is-next {
    opacity: 0;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 80;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 18, 0.7);
}

.lightbox-content {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  background: #0b1a16;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b1a16;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
}

.section-title p {
  color: var(--muted);
  max-width: 560px;
}

.section-title.center {
  text-align: center;
  justify-content: center;
}

.section-title.center p {
  margin: 8px auto 0;
}

.stats-section {
  background: linear-gradient(120deg, rgba(26, 127, 107, 0.08), rgba(224, 138, 47, 0.08));
  border-top: 1px solid rgba(26, 127, 107, 0.08);
  border-bottom: 1px solid rgba(26, 127, 107, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  align-items: center;
  margin-top: 24px;
}

.stat-card {
  text-align: center;
  padding: 28px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 127, 107, 0.12);
}

.stat-value {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #0fb4cf;
  letter-spacing: -1px;
}

.stat-label {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f2740;
}

.stats-footnote {
  margin: 26px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.course-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  transform-origin: center;
  border: 1px solid rgba(15, 61, 51, 0.08);
}

.course-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(26, 127, 107, 0.65), rgba(224, 138, 47, 0.55));
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

.course-card > * {
  position: relative;
  z-index: 1;
}

.course-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-strong);
}

.course-card:hover h3 {
  color: var(--accent-3);
}

.course-card:hover::after {
  opacity: 0.12;
}

.course-card small {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-2);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  transform-origin: center;
  border: 1px solid rgba(15, 61, 51, 0.08);
}

.feature:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-strong);
}

.feature:hover h4 {
  color: var(--accent-3);
}

.feature::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(26, 127, 107, 0.45), rgba(224, 138, 47, 0.35));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.feature > * {
  position: relative;
  z-index: 1;
}

.feature:hover::after {
  opacity: 0.16;
}

.feature h4 {
  margin: 0 0 6px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.highlight {
  background: rgba(255, 247, 232, 0.7);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 138, 47, 0.2);
}

.testimonial-shell {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  align-self: center;
  justify-content: center;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 61, 51, 0.2);
  background: #ffffff;
  color: #0f3d33;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 61, 51, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(15, 61, 51, 0.2);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: min(900px, 100%);
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.6s ease;
}

.testimonial {
  background: var(--surface);
  border-radius: 26px;
  padding: 32px 36px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(15, 61, 51, 0.08);
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  left: 26px;
  top: 12px;
  font-size: 64px;
  color: rgba(26, 127, 107, 0.2);
  font-family: "Playfair Display", serif;
}

.testimonial-quote {
  margin: 0 0 22px;
  font-size: 1.05rem;
  color: #1b1d1f;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 61, 51, 0.2);
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-stars {
  margin-top: 14px;
  color: #f2b950;
  font-size: 18px;
  letter-spacing: 2px;
}

.gender-icon {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15, 61, 51, 0.08);
}

.gender-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-3);
}

.gender-icon.female {
  background: rgba(224, 138, 47, 0.15);
}

.gender-icon.female svg {
  fill: #c06a16;
}

.testimonial-avatars {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.avatar-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.avatar-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(15, 61, 51, 0.2);
}

.avatar-btn.active {
  transform: translateY(-4px) scale(1.05);
}

@media (max-width: 720px) {
  .testimonial {
    padding: 26px;
  }

  .testimonial::before {
    left: 18px;
    top: 6px;
  }
}

.cta {
  background: linear-gradient(120deg, #1a7f6b, #13594a);
  color: #ffffff;
  border-radius: 30px;
  padding: 42px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-strong);
}

.cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 61, 51, 0.18);
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(26, 127, 107, 0.6);
  box-shadow: 0 0 0 4px rgba(26, 127, 107, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: rgba(27, 29, 31, 0.55);
}

.footer {
  padding: 50px 0 40px;
  color: var(--muted);
  font-size: 14px;
  background: #f3f7f6;
  border-top: 1px solid rgba(15, 61, 51, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--ink);
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

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

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

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

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(15, 61, 51, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(15, 61, 51, 0.2);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #0f3d33;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 61, 51, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    gap: 16px;
    display: none;
  }

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

  .menu-btn {
    display: grid;
  }
}

@media (max-width: 720px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta {
    padding: 28px;
  }
}
.hero-slider {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26, 127, 107, 0.08), rgba(224, 138, 47, 0.08));
  padding: 18px;
}

.hero-slide {
  position: absolute;
  inset: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: grid;
  gap: 10px;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide h4 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-slide p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-slide .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 127, 107, 0.12);
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 600;
  width: max-content;
}

.hero-media {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.media-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 61, 51, 0.08);
}

.media-card img,
.media-card video,
.media-card iframe {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border: 0;
}

.media-card .caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.25);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}
