/* =========================================================
   M S ELITE BIRD NETTING — LANDING PAGE STYLES
   ---------------------------------------------------------
   1.  Theme variables (change colours here)
   2.  Base & typography
   3.  Shared components (kicker, titles, buttons, frames)
   4.  Top bar
   5.  Header
   6.  Hero carousel
   7.  Marquee
   8.  About
   9.  Services (zig-zag)
   10. Why choose us
   11. How it works (timeline)
   12. Numbers + areas
   13. Gallery + lightbox
   14. FAQ
   15. Testimonials
   16. CTA band
   17. Contact
   18. Footer
   19. Floating buttons
   20. Reveal animations & floating decor
   21. Responsive
   ========================================================= */

/* ---------- 1. THEME VARIABLES ---------- */
:root {
  --primary: #0f6b45;
  /* main green */
  --primary-dark: #0a4a30;
  /* deep forest */
  --primary-deep: #06331f;
  /* darkest */
  --primary-light: #1f8f5f;
  /* hover / lighter green */
  --accent: #e8b53a;
  /* warm accent (stars, highlights) */
  --mint: #eaf5ee;
  /* soft green section bg */
  --mint-2: #f4faf6;
  /* lighter tint */
  --sand: #fbfaf5;
  /* warm off-white section bg */
  --white: #ffffff;
  --ink: #15261d;
  /* headings */
  --text: #4a5a51;
  /* body text */
  --muted: #7b8a82;
  --line: #dde9e1;

  --font-head: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;

  --radius-lg: 22px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(10, 74, 48, .07);
  --shadow: 0 14px 34px rgba(10, 74, 48, .10);
  --shadow-lg: 0 24px 60px rgba(6, 51, 31, .16);
  --ease: cubic-bezier(.22, .8, .24, 1);
  --header-h: 78px;
}

/* ---------- 2. BASE & TYPOGRAPHY ---------- */
html {
  scroll-padding-top: calc(var(--header-h) + 10px);
  overflow-x: clip;
}

html,
body {
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

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

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

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

strong {
  color: var(--ink);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

/* ---------- 3. SHARED COMPONENTS ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.kicker i {
  font-size: 1rem;
  color: var(--accent);
}

.kicker.justify-content-center {
  display: flex;
}

.kicker-light {
  color: #bfe6cf;
}

.section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.06rem;
  color: var(--text);
  max-width: 560px;
}

.section-sub-light {
  color: rgba(255, 255, 255, .78);
}

.section-head {
  position: relative;
  margin-bottom: 64px;
}

.lead-text {
  font-size: 1.12rem;
  color: var(--ink);
}

/* Big faint word behind a heading */
.ghost-word {
  position: absolute;
  left: 50%;
  top: -44px;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 107, 69, .10);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.section-head>*:not(.ghost-word) {
  position: relative;
  z-index: 1;
}

/* Buttons — each type has its own hover */
.btn-main,
.btn-ghost,
.btn-light-solid,
.btn-light-outline,
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-sm-pad {
  padding: 11px 22px;
  font-size: .95rem;
}

/* Primary: fill slides in from left */
.btn-main {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(15, 107, 69, .25);
}

.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.btn-main:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 107, 69, .32);
}

.btn-main:hover::before {
  transform: scaleX(1);
}

/* Ghost: border to solid */
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-ghost:hover i {
  transform: rotate(-12deg) scale(1.15);
}

.btn-ghost i {
  transition: transform .3s ease;
}

.link-arrow {
  font-weight: 600;
  color: var(--ink);
  background-image: linear-gradient(var(--primary), var(--primary));
  background-size: 0 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size .35s var(--ease), color .25s;
}

.link-arrow:hover {
  background-size: 100% 2px;
  color: var(--primary);
}

/* Image frame with graceful fallback when image missing */
.img-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .18), transparent 55%),
    linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.img-frame::before,
.g-item::before {
  /* image placeholder icon, covered once the real image loads */
  content: "\F42A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: rgba(255, 255, 255, .35);
}

.img-frame img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

img.img-missing {
  opacity: 0;
}

/* ---------- 4. TOP BAR ---------- */
.topbar {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  padding: 9px 0;
}

.topbar-info,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-info i {
  color: var(--accent);
}

.topbar a {
  color: rgba(255, 255, 255, .88);
}

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

.topbar-social {
  gap: 6px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .25s, transform .25s;
}

.topbar-social a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

/* ---------- 5. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}

.site-header.scrolled {
  box-shadow: 0 8px 26px rgba(6, 51, 31, .08);
  border-color: var(--line);
}

.site-header .navbar {
  min-height: var(--header-h);
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 8px 18px rgba(15, 107, 69, .28);
  transition: transform .4s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(-8deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.28rem;
  color: var(--ink);
  letter-spacing: -.01em;
}

.brand-text small {
  font-size: .8rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: .04em;
}

.site-header .nav-link {
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
  padding: 8px 14px !important;
  position: relative;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--primary);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  transform: scaleX(1);
}

.btn-header {
  background: var(--mint);
  color: var(--primary-dark);
  padding: 11px 20px;
  border-color: var(--line);
}

.btn-header i {
  animation: ring 2.4s ease-in-out infinite;
}

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

/* Custom burger */
.nav-burger {
  border: 0;
  padding: 10px;
  width: 46px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  background: var(--mint);
}

.nav-burger:focus {
  box-shadow: none;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  margin: 0 auto;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 6. HERO CAROUSEL ---------- */
.hero {
  position: relative;
}

.hero .carousel-item {
  height: clamp(520px, 86vh, 760px);
}

/* no display override on .carousel-item */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark);
  overflow: hidden;
}

/* Background images (paths relative to this CSS file) + gradient fallback */
.hero-bg-1 {
  background-image: url("../images/b1.webp"), linear-gradient(135deg, #000000b4, #0000008c);
}

.hero-bg-2 {
  background-image: url("../images/b2.webp"), linear-gradient(135deg, #000000b4, #0000008c);
}

.hero-bg-3 {
  background-image: url("../images/b3.png"), linear-gradient(135deg, #000000b4, #0000008c);
}

/* Ken-burns layer: scale the slide on the active item */
.hero .carousel-item.active .hero-slide {
  animation: kenburns 7s ease-out both;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.452) 75%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.377));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 20px;
}

.hero-kicker {
  display: inline-block;
  color: #d7f0e0;
  font-weight: 600;
  font-size: .98rem;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-text {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  max-width: 600px;
  margin: 0 auto;
}

/* staggered text entrance on each active slide */
.hero .carousel-item .hero-content>* {
  opacity: 0;
  transform: translateY(26px);
}

.hero .carousel-item.active .hero-content>* {
  animation: heroText .9s var(--ease) forwards;
}

.hero .carousel-item.active .hero-content>*:nth-child(2) {
  animation-delay: .15s;
}

.hero .carousel-item.active .hero-content>*:nth-child(3) {
  animation-delay: .3s;
}

.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-indicators button {
  width: 58px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, .3);
  overflow: hidden;
  cursor: pointer;
}

.hero-indicators button span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--white);
}

.hero-indicators button.active span {
  animation: progress 5.5s linear forwards;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  transition: background .3s, transform .3s;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-arrow:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.hero-next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* ---------- 7. MARQUEE ---------- */
.marquee-band {
  background: var(--primary);
  padding: 0;
  position: relative;
  z-index: 3;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--white);
  white-space: nowrap;
  padding: 0 30px;
}

.marquee-item i {
  color: var(--accent);
}

.marquee:not(.marquee-alt) .marquee-item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  margin-left: 30px;
}

.marquee-alt {
  background: var(--mint);
  padding: 12px 0;
}

.marquee-alt .marquee-item {
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.marquee-alt .marquee-item::before {
  content: "\2726";
  color: var(--primary);
  margin-right: 4px;
  font-size: .9rem;
}

/* ---------- 8. ABOUT ---------- */
.about {
  background: var(--white);
}

.about-collage {
  position: relative;
  padding: 0 60px 70px 0;
  max-width: 560px;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-main {
  aspect-ratio: 7 / 8;
}

.about-img-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  border: 8px solid var(--white);
}

.about-img:hover img {
  transform: scale(1.06);
}

.about-badge {
  position: absolute;
  top: 34px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.about-badge i {
  font-size: 1.8rem;
  color: var(--primary);
}

.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.2;
}

.about-badge span {
  font-size: .85rem;
  color: var(--muted);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 26px 0 32px;
}

.about-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
}

.about-points i {
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1.5;
}

.about-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

/* ---------- 9. SERVICES (zig-zag) ---------- */
.services {
  background: linear-gradient(180deg, var(--mint-2), var(--white) 70%);
}

.svc-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 70px;
  margin-bottom: 90px;
  position: relative;
}

.svc-row:last-child {
  margin-bottom: 0;
}

.svc-row-rev .svc-media {
  order: 2;
}

.svc-media {
  position: relative;
  isolation: isolate;
}

.svc-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

/* offset outline block behind image */
.svc-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  opacity: .18;
  z-index: -1;
  transition: inset .5s var(--ease), opacity .5s;
}

.svc-row-rev .svc-media::before {
  inset: 22px 22px -22px -22px;
}

.svc-row:hover .svc-media::before {
  inset: 12px -12px -12px 12px;
  opacity: .45;
}

.svc-row-rev:hover .svc-media::before {
  inset: 12px 12px -12px -12px;
}

/* image hover: zoom + tilt reveal */
.svc-row:hover .svc-img img {
  transform: scale(1.07) rotate(.6deg);
}

.svc-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.svc-tag i {
  color: var(--primary);
}

.svc-title {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.svc-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-top: 12px;
  transition: width .5s var(--ease);
}

.svc-row:hover .svc-title::after {
  width: 100%;
}

.svc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 20px 0 28px;
}

.svc-list li {
  position: relative;
  padding-left: 26px;
  font-size: .96rem;
  color: var(--ink);
  font-weight: 500;
}

.svc-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary);
  font-size: 1.05rem;
}

.svc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- 10. WHY CHOOSE US ---------- */
.why {
  background: var(--sand);
}

.why-head {
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: background .6s var(--ease), color .6s, transform .6s var(--ease), box-shadow .6s, border-color .6s;
  overflow: hidden;
}

.why-card::before {
  /* corner glow */
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: var(--mint);
  transition: background .6s, transform .6s var(--ease);
}

.why-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: var(--mint);
  color: var(--primary);
  margin-bottom: 22px;
  transition: background .6s, color .6s, transform .6s var(--ease);
}

.why-card h3 {
  position: relative;
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: color .6s;
}

.why-card p {
  position: relative;
  margin: 0;
  font-size: .96rem;
  transition: color .6s;
}

/* lit state — driven by JS, travels card 1 → 4 */
.why-card.is-lit {
  background: linear-gradient(150deg, var(--primary-light), var(--primary-dark));
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.why-card.is-lit::before {
  background: rgba(255, 255, 255, .1);
  transform: scale(1.5);
}

.why-card.is-lit .why-icon {
  background: var(--white);
  color: var(--primary);
  transform: rotate(-8deg);
}

.why-card.is-lit h3 {
  color: var(--white);
}

.why-card.is-lit p {
  color: rgba(255, 255, 255, .85);
}

.why-track {
  position: relative;
  height: 4px;
  background: var(--line);
  border-radius: 4px;
  margin-top: 34px;
}

.why-track-dot {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: transform .6s var(--ease);
}

/* ---------- 11. HOW IT WORKS ---------- */
.process {
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 143, 95, .35), transparent 40%),
    radial-gradient(circle at 88% 85%, rgba(232, 181, 58, .12), transparent 35%),
    var(--primary-deep);
  color: rgba(255, 255, 255, .8);
}

.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: rgba(255, 255, 255, .14);
  border-radius: 3px;
}

.timeline-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #7fd6a5);
  border-radius: 3px;
  transition: width .2s linear;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  position: relative;
}

.step {
  text-align: center;
}

.step-num {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  background: var(--primary-deep);
  color: var(--white);
  border: 3px solid rgba(255, 255, 255, .25);
  transition: background .5s, border-color .5s, transform .5s var(--ease);
}

.step.is-done .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-deep);
  transform: scale(1.08);
}

.step-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  transition: transform .45s var(--ease), background .45s, border-color .45s;
  height: calc(100% - 86px);
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(232, 181, 58, .45);
}

.step-card i {
  font-size: 1.9rem;
  color: #8fe0b3;
  display: inline-block;
  margin-bottom: 14px;
  transition: transform .45s var(--ease);
}

.step-card:hover i {
  transform: scale(1.18) rotate(-6deg);
}

.step-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-card p {
  margin: 0;
  font-size: .95rem;
  color: rgba(255, 255, 255, .72);
}

/* ---------- 12. NUMBERS + AREAS ---------- */
.areas {
  background: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat {
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--mint-2);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--primary);
  line-height: 1.1;
}

.stat>span {
  font-size: .92rem;
  color: var(--text);
  font-weight: 500;
}

.area-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
}

.area-panel::after {
  /* map-grid texture */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .35;
  mask-image: linear-gradient(180deg, transparent, #000 60%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%);
}

.area-panel-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.area-panel-head>i {
  font-size: 1.6rem;
  color: var(--white);
  background: var(--primary);
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.area-panel-head h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.area-panel-head p {
  margin: 0;
  font-size: .95rem;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.area-chips li {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 600;
  background: var(--mint-2);
  color: var(--primary-dark);
  border: 1px solid var(--line);
  transition: background .3s, color .3s, transform .3s var(--ease);
  cursor: default;
}

.area-chips li:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.04);
}

/* ---------- 13. GALLERY ---------- */
.gallery {
  background: var(--mint);
}

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--white);
  padding: 6px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.filter-btn {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background .3s, color .3s;
}

.filter-btn:hover {
  color: var(--primary);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.g-item {
  position: relative;
  border: 0;
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  box-shadow: var(--shadow-sm);
  transition: opacity .4s, transform .4s var(--ease);
}

.g-item img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s;
}

.g-item::after {
  content: "\F62C";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--white);
  background: rgba(6, 51, 31, .45);
  opacity: 0;
  transition: opacity .4s;
}

.g-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: .85rem;
  padding: 6px 12px;
  border-radius: 50px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
}

.g-item:hover img {
  transform: scale(1.12);
  filter: saturate(1.15);
}

.g-item:hover::after,
.g-item:focus-visible::after {
  opacity: 1;
}

.g-item:hover .g-caption,
.g-item:focus-visible .g-caption {
  transform: none;
  opacity: 1;
}

.g-item.is-hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 25, 15, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.open {
  opacity: 1;
}

.lb-figure {
  margin: 0;
  max-width: min(900px, 100%);
  text-align: center;
}

.lb-figure img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--primary-dark);
  min-width: 240px;
  min-height: 180px;
}

.lb-figure figcaption {
  color: var(--white);
  margin-top: 12px;
  font-weight: 600;
}

.lb-close,
.lb-nav {
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background .3s;
}

.lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.lb-close:hover,
.lb-nav:hover {
  background: var(--primary);
}

/* ---------- VIDEO SECTION ---------- */
.videos {
  background: var(--mint-2);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.v-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--primary-deep);
  box-shadow: var(--shadow-sm);
}

.v-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--primary-deep);
}

/* ---------- 14. FAQ ---------- */
.faq {
  background: var(--white);
}

.faq-aside {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.faq-help {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 107, 69, .25);
}

.faq-help i {
  font-size: 2rem;
}

.faq-help span {
  display: block;
  font-size: .88rem;
  opacity: .85;
}

.faq-help a {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}

.faq-help a:hover {
  color: var(--accent);
}

.faq-list .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .3s, border-color .3s;
}

.faq-list .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-list .accordion-header {
  margin: 0;
}

.faq-list .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 20px 24px;
  background: var(--white);
  box-shadow: none;
  gap: 14px;
}

.faq-list .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--mint-2);
}

.faq-list .accordion-button::after {
  background-image: none;
  content: "\F64D";
  font-family: "bootstrap-icons";
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: var(--mint);
  color: var(--primary);
  transition: transform .35s var(--ease), background .3s;
}

.faq-list .accordion-button:not(.collapsed)::after {
  content: "\F63B";
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-list .accordion-button:focus {
  box-shadow: none;
}

.faq-list .accordion-body {
  padding: 4px 24px 22px;
  background: var(--mint-2);
}

/* ---------- 15. TESTIMONIALS ---------- */
.testimonials {
  background: var(--sand);
}

.testi-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.testi-arrows {
  display: flex;
  gap: 10px;
}

.testi-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  transition: background .3s, color .3s, transform .3s;
}

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

#testiPrev:hover {
  transform: translateX(-3px);
}

#testiNext:hover {
  transform: translateX(3px);
}

.testi-slider {
  overflow: hidden;
  margin: 0 -12px;
  padding: 16px 0 26px;
  touch-action: pan-y;
}

.testi-track {
  display: flex;
  transition: transform .7s var(--ease);
  cursor: grab;
}

.testi-track.dragging {
  transition: none;
  cursor: grabbing;
}

.testi-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 12px;
  display: flex;
  user-select: none;
}

.testi-card {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
}

.testi-card::after {
  /* quote mark */
  content: "\F6B0";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--mint);
  transition: color .5s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 107, 69, .35);
}

.testi-card:hover::after {
  color: rgba(15, 107, 69, .25);
}

.testi-stars i {
  color: var(--accent);
  font-size: 1rem;
  margin-right: 2px;
}

.testi-card blockquote {
  font-size: 1.04rem;
  color: var(--ink);
  line-height: 1.7;
  margin: 16px 0 22px;
  flex: 1;
}

.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(140deg, var(--primary-light), var(--primary-dark));
}

.testi-card figcaption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
}

.testi-card figcaption small {
  color: var(--muted);
  font-size: .86rem;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testi-dots button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 0;
  padding: 0;
  background: #c8dccf;
  transition: width .4s var(--ease), background .3s;
}

.testi-dots button.active {
  width: 32px;
  background: var(--primary);
}

/* ---------- 16. CTA BAND ---------- */
.cta-band {
  background: var(--sand);
  padding: 0 0 110px;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 50px 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-lg);
}

.cta-inner::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, .06);
}

.cta-text {
  position: relative;
}

.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255, 255, 255, .82);
  margin: 0;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-light-solid {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-light-solid:hover {
  background: var(--accent);
  color: var(--primary-deep);
  transform: translateY(-3px);
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  color: var(--white);
  letter-spacing: .02em;
}

/* ---------- 17. CONTACT ---------- */
.contact {
  background: var(--white);
}

.contact-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.contact-info {
  position: relative;
  height: 100%;
  padding: 50px 44px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary-deep));
  color: rgba(255, 255, 255, .82);
}

.contact-intro {
  margin-bottom: 30px;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, .1);
  color: var(--accent);
  transition: background .3s, transform .3s var(--ease);
}

.contact-list li:hover .ci-icon {
  background: var(--accent);
  color: var(--primary-deep);
  transform: rotate(-8deg);
}

.contact-list small {
  display: block;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

.contact-list a,
.contact-list address {
  color: var(--white);
  font-weight: 600;
  word-break: break-word;
  font-style: normal;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-deco {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 9rem;
  color: rgba(255, 255, 255, .05);
  transform: rotate(-20deg);
}

.contact-form {
  padding: 50px 44px;
  background: var(--white);
  height: 100%;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--ink);
  font-size: .92rem;
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .98rem;
  background-color: var(--mint-2);
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 107, 69, .12);
}

.form-note {
  margin: 12px 0 0;
  font-size: .92rem;
  font-weight: 600;
  color: var(--primary);
  min-height: 1.4em;
}

.map-frame {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(.9);
}

/* ---------- 18. FOOTER ---------- */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, .72);
  padding: 80px 0 0;
  font-size: .96rem;
}

.brand-footer .brand-text strong {
  color: var(--white);
}

.brand-footer .brand-text small {
  color: #8fe0b3;
}

.footer-about {
  margin: 18px 0 20px;
  max-width: 340px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  transition: background .3s, transform .3s var(--ease);
}

.footer-social a:hover {
  background: var(--primary-light);
  transform: translateY(-4px) rotate(8deg);
}

.footer-title {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 18px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, .72);
  display: inline-block;
  transition: color .3s, transform .3s var(--ease);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255, 255, 255, .85);
  word-break: break-word;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .88rem;
}

.footer-bottom p {
  margin: 0;
}

/* ---------- 19. FLOATING BUTTONS ---------- */
.float-btn {
  position: fixed;
  bottom: 24px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
  transition: transform .3s var(--ease);
}

.float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}

.float-btn:hover {
  color: var(--white);
  transform: scale(1.1);
}

.float-wa {
  left: 22px;
  background: #25d366;
}

.float-call {
  right: 22px;
  background: var(--primary);
}

.float-call i {
  animation: ring 2.4s ease-in-out infinite;
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 96px;
  z-index: 1039;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, background .3s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--primary);
  color: var(--white);
}

/* ---------- 20. REVEAL & FLOATING DECOR ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js .reveal[data-reveal="left"] {
  transform: translateX(-40px);
}

.js .reveal[data-reveal="right"] {
  transform: translateX(40px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* stagger children-level reveals (why cards, steps) */
.js .why-grid .reveal:nth-child(2),
.js .timeline-steps .reveal:nth-child(2) {
  transition-delay: .1s;
}

.js .why-grid .reveal:nth-child(3),
.js .timeline-steps .reveal:nth-child(3) {
  transition-delay: .2s;
}

.js .why-grid .reveal:nth-child(4),
.js .timeline-steps .reveal:nth-child(4) {
  transition-delay: .3s;
}

/* after reveal, why-card uses its own transition timings */
.js .why-card.reveal.is-visible {
  transition: background .6s var(--ease), color .6s, transform .6s var(--ease), box-shadow .6s, border-color .6s, opacity .8s var(--ease);
  transition-delay: 0s;
}

.float-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 22px solid var(--mint);
  top: 50px;
  left: -70px;
  animation: floatY 7s ease-in-out infinite;
}

.deco-feather {
  font-size: 3.4rem;
  color: rgba(15, 107, 69, .12);
  bottom: 60px;
  left: 3%;
  animation: floatRotate 9s ease-in-out infinite;
}

.deco-feather-2 {
  font-size: 4rem;
  color: rgba(255, 255, 255, .07);
  top: 50px;
  right: 6%;
  animation: floatRotate 10s ease-in-out infinite;
}

.deco-dots {
  width: 140px;
  height: 140px;
  left: 4%;
  top: 40px;
  opacity: .25;
  background-image: radial-gradient(#8fe0b3 2px, transparent 2px);
  background-size: 18px 18px;
  animation: floatY 8s ease-in-out infinite;
}

.deco-quote {
  font-size: 12rem;
  line-height: 1;
  color: rgba(15, 107, 69, .06);
  bottom: 10px;
  left: 2%;
  animation: floatY 9s ease-in-out infinite;
}

.float-y {
  animation: floatY 5s ease-in-out infinite;
}

.about .container,
.process .container,
.testimonials .container {
  position: relative;
  z-index: 1;
}

/* Keyframes */
@keyframes kenburns {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroText {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes ring {

  0%,
  60%,
  100% {
    transform: rotate(0);
  }

  10%,
  30% {
    transform: rotate(-14deg);
  }

  20%,
  40% {
    transform: rotate(14deg);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-18px) rotate(12deg);
  }
}

/* Reduced motion: calm decorative loops only (marquee, carousel & counters keep working) */
@media (prefers-reduced-motion: reduce) {

  .float-deco,
  .float-y,
  .float-btn::before,
  .btn-header i,
  .float-call i {
    animation: none !important;
  }

  .hero .carousel-item.active .hero-slide {
    animation: none;
  }
}

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
  .site-header .nav-link {
    padding: 8px 10px !important;
  }

  .svc-row {
    gap: 50px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-h: 70px;
  }

  .section {
    padding: 84px 0;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    margin-top: 12px;
    padding: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .site-header .nav-link {
    padding: 12px 14px !important;
    border-radius: 10px;
  }

  .site-header .nav-link::after {
    display: none;
  }

  .site-header .nav-link.active,
  .site-header .nav-link:hover {
    background: var(--mint);
  }

  .btn-header {
    margin: 10px 0 4px;
    width: 100%;
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }

  .about-collage {
    margin: 0 auto;
  }

  .svc-row,
  .svc-row-rev {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 70px;
  }

  .svc-row-rev .svc-media {
    order: 0;
  }

  .svc-media {
    margin-right: 22px;
  }

  .svc-row-rev .svc-media {
    margin-left: 0;
    margin-right: 22px;
  }

  .svc-row-rev .svc-media::before,
  .svc-row-rev:hover .svc-media::before {
    inset: 22px -22px -22px 22px;
  }

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

  .why-track {
    display: none;
  }

  .timeline-line {
    display: none;
  }

  .timeline-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .step-num {
    margin-bottom: 16px;
  }

  .step-card {
    height: auto;
  }

  .testi-slide {
    flex-basis: 50%;
  }

  .faq-aside {
    position: static;
  }

  .contact-info,
  .contact-form {
    padding: 40px 30px;
  }

  .cta-inner {
    padding: 40px 32px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .ghost-word {
    top: -26px;
  }

  .topbar {
    font-size: .82rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .brand-text strong {
    font-size: 1.12rem;
  }

  .hero .carousel-item {
    height: 76vh;
    min-height: 480px;
    max-height: 620px;
  }

  .hero-indicators {
    bottom: 24px;
  }

  .hero-indicators button {
    width: 40px;
  }

  .marquee-item {
    font-size: 1.05rem;
    padding: 0 20px;
  }

  .marquee:not(.marquee-alt) .marquee-item::after {
    margin-left: 20px;
  }

  .about-collage {
    padding: 0 34px 50px 0;
  }

  .about-badge {
    top: 18px;
    right: 0;
    padding: 10px 14px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .svc-list {
    grid-template-columns: 1fr;
  }

  .svc-media::before {
    inset: 14px -14px -14px 14px;
  }

  .svc-row-rev .svc-media::before {
    inset: 14px 14px -14px -14px;
  }

  .svc-media,
  .svc-row-rev .svc-media {
    margin-left: 0;
    margin-right: 14px;
  }

  .svc-row-rev .svc-media::before {
    inset: 14px -14px -14px 14px;
  }

  .svc-row:hover .svc-media::before,
  .svc-row-rev:hover .svc-media::before {
    inset: 8px -8px -8px 8px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-filters {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 7px 11px;
    font-size: .84rem;
    white-space: nowrap;
  }

  .g-caption {
    opacity: 1;
    transform: none;
    font-size: .76rem;
    left: 8px;
    bottom: 8px;
    padding: 4px 10px;
  }

  .testi-slide {
    flex-basis: 100%;
  }

  .testi-head {
    align-items: flex-start;
  }

  .map-frame iframe {
    height: 280px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .lb-nav {
    position: absolute;
    bottom: 24px;
  }

  .lb-prev {
    left: calc(50% - 60px);
  }

  .lb-next {
    right: calc(50% - 60px);
  }
}

@media (max-width: 575.98px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 12px;
  }

  .stat {
    padding: 16px;
  }

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

  .area-panel {
    padding: 24px 20px;
  }

  .contact-info,
  .contact-form {
    padding: 34px 22px;
  }

  .cta-inner {
    padding: 34px 24px;
  }

  .cta-actions,
  .cta-actions a {
    width: 100%;
    justify-content: center;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 18px;
  }

  .float-wa {
    left: 16px;
  }

  .float-call {
    right: 16px;
  }

  .to-top {
    right: 22px;
    bottom: 82px;
  }
}