/* ==========================================================================
   MK Building Construction — Main stylesheet
   ==========================================================================
   01. Tokens & reset
   02. Base & typography
   03. Layout
   04. Site chrome (topbar, header, nav)
   05. Hero
   06. Mission / about
   07. Features, stats, projects
   08. Services
   09. Team, partners, news, testimonials
   10. FAQ, contact, footer
   11. Widgets & utilities
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

:root {
  --green-dark: #123c2f;
  --green: #1e5d46;
  --yellow: #f4b400;
  --orange: #ff7a00;
  --light: #f8f7f3;
  --white: #ffffff;
  --text: #1d1d1d;
  --gray: #777;
  --border: #ececec;
  --primary: var(--green-dark);
  --heading: var(--text);
  --bg: var(--light);
  --accent: var(--yellow);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

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

.container {
  width: 92%;
  max-width: 1220px;
  margin: auto;
}

.topbar {
  background: #f4f4f4;
  font-size: 13px;
  padding: 10px 0;
  color: #666;
  border-bottom: 1px solid #e9e9e9;
}

.topbar-content,
.header-content,
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: 0.3s;
  border: 1px solid #e5e5e5;
}

.socials a:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.socials,
.top-links,
.nav-links {
  display: flex;
  gap: 24px;
}

.main-header {
  background: white;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 92px;
  width: auto;
  max-width: min(380px, 52vw);
  object-fit: contain;
  filter: contrast(1.18) saturate(1.12);
}

.logo-img--compact {
  height: 64px;
  max-width: 280px;
  filter: contrast(1.18) saturate(1.12);
}

.mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}

.mobile-header .mobile-menu-close {
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  gap: 28px;
  align-items: center;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.info-box:hover {
  background: rgba(30, 93, 70, 0.06);
  transform: translateY(-2px);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
}

.info-text small {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.info-text span {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 14px;
}

/* Make header feel premium */
.main-header {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

@media (max-width: 900px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
  }

  .info-box {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
  }
}

nav,
.main-nav {
  background: white;
  position: sticky;
  top: 50px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.nav-content {
  padding: 18px 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: white;
  min-width: 260px;
  border-radius: 20px;
  padding: 16px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  border: 1px solid #eee;
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: rgba(244, 180, 0, 0.08);
  color: var(--green);
  padding-left: 30px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: white;
}

.btn-outline {
  border: 1.5px solid white;
  color: white;
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  color: white;
  background:
    linear-gradient(
      to right,
      rgba(18, 60, 47, 0.9) 0%,
      rgba(18, 60, 47, 0.7) 45%,
      rgba(18, 60, 47, 0.2) 100%
    ),
    url("../media/my-hero.jpg") center/cover no-repeat;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 95vh;
  display: flex;
  align-items: center;
  color: white;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition:
    opacity 0.85s ease,
    visibility 0.85s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  animation: heroBgKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroBgKenBurns {
  0% {
    background-size: 100%;
    background-position: center center;
  }
  100% {
    background-size: 112%;
    background-position: 58% 42%;
  }
}

.hero-slide--1 {
  background:
    linear-gradient(
      to right,
      rgba(18, 60, 47, 0.88) 0%,
      rgba(18, 60, 47, 0.65) 45%,
      rgba(18, 60, 47, 0.2) 100%
    ),
    url("../media/2.jpg") center / cover no-repeat;
}

.hero-slide--2 {
  background:
    linear-gradient(
      to right,
      rgba(18, 60, 47, 0.88) 0%,
      rgba(18, 60, 47, 0.65) 45%,
      rgba(18, 60, 47, 0.2) 100%
    ),
    url("../media/building.jpg") center / cover no-repeat;
}

.hero-slide--3 {
  background:
    linear-gradient(
      to right,
      rgba(18, 60, 47, 0.88) 0%,
      rgba(18, 60, 47, 0.65) 45%,
      rgba(18, 60, 47, 0.2) 100%
    ),
    url("../media/1.jpg") center / cover no-repeat;
}

.hero-slider-controls .dot {
  padding: 0;
  border: none;
  cursor: pointer;
}

.nav-chevron {
  font-size: 11px;
  margin-left: 4px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 22px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transform-origin: left center;
}
.hero-caption > .hero-tag,
.hero-caption > h1,
.hero-caption > .hero-title,
.hero-caption > p,
.hero-caption > .hero-actions {
  opacity: 0;
  transform: translateY(22px) rotate(-3deg);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.hero-slide.active .hero-caption > .hero-tag {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.hero-tag--out {
  opacity: 0;
  transform: translateY(8px) rotate(-8deg) scale(0.96);
}

.hero-tag--in {
  animation: heroTagIn 0.42s ease forwards;
}

@keyframes heroTagIn {
  from {
    opacity: 0;
    transform: translateY(-8px) rotate(8deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-slide.active .hero-caption > h1,
.hero-slide.active .hero-caption > .hero-title {
  opacity: 1;
  transform: none;
  transition-delay: 0.24s;
}

.hero-slide.active .hero-caption > p {
  opacity: 1;
  transform: none;
  transition-delay: 0.36s;
}

.hero-slide.active .hero-caption > .hero-actions {
  opacity: 1;
  transform: none;
  transition-delay: 0.48s;
}

.hero-rotate {
  display: inline-block;
  min-width: 0.25em;
  color: var(--yellow);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}

.hero-rotate--out {
  opacity: 0;
  transform: translateY(14px) rotate(-6deg) scale(0.95);
}

.hero-rotate--in {
  animation: heroRotateIn 0.45s ease forwards;
}

@keyframes heroRotateIn {
  from {
    opacity: 0;
    transform: translateY(-14px) rotate(6deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

.hero-slider-controls .dot.active {
  background: var(--yellow);
  transform: scale(1.2) rotate(45deg);
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active {
    animation: none;
  }

  .hero-tag--out,
  .hero-tag--in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  .hero-caption > .hero-tag,
  .hero-caption > h1,
  .hero-caption > .hero-title,
  .hero-caption > p,
  .hero-caption > .hero-actions {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-rotate--out,
  .hero-rotate--in {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

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

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--yellow);
  transform: scale(1.2) rotate(45deg);
  border-radius: 4px;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  max-width: 650px;
  padding: 120px 0;
}

.hero h1 {
  font-size: 76px;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.trusted-box {
  background: white;
  margin-top: -55px;
  position: relative;
  z-index: 10;
  border-radius: 26px;
  padding: 32px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trusted-box h4 {
  color: var(--green-dark);
  font-size: 22px;
}

.logos {
  display: flex;
  gap: 30px;
  color: #aaa;
  font-weight: 700;
}

section {
  padding: 110px 0;
}
/* SECTION */

.about-section {
  position: relative;
  overflow: hidden;

  padding: 120px 8%;
  background: #fff;
}

/* Decorative Background */

.about-section::before {
  content: "";

  position: absolute;
  top: -120px;
  right: -120px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: rgba(13, 59, 120, 0.05);

  filter: blur(10px);
}

.about-section::after {
  content: "";

  position: absolute;
  bottom: -150px;
  left: -150px;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: rgba(240, 180, 0, 0.08);

  filter: blur(10px);
}

/* CONTAINER */

.about-container {
  position: relative;
  z-index: 2;

  max-width: 1320px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 90px;
}

/* LEFT CONTENT */

.about-content {
  flex: 1;
  max-width: 560px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(13, 59, 120, 0.08);

  color: var(--green-dark);

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 28px;
}

.section-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;

  letter-spacing: -2px;

  margin-bottom: 22px;

  color: var(--text);
}

.section-title span {
  color: var(--green-dark);
}

.section-description {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);

  margin-bottom: 50px;
}

/* INFO CARDS */

.info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;

  padding: 26px;

  border-radius: 24px;

  background: #fff;

  border: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);

  transition: 0.35s ease;
}

.info-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 45px rgba(16, 24, 40, 0.12);
}

.icon-box {
  min-width: 60px;
  height: 60px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, var(--green-dark), var(--green));

  color: #fff;

  font-size: 24px;
  font-weight: 700;

  box-shadow: 0 12px 24px rgba(13, 59, 120, 0.25);
}

.info-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.info-text p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text);
}

/* IMAGE SIDE */

.about-image {
  flex: 1;

  display: flex;
  justify-content: center;

  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

/* Main Blob */

.image-shape {
  overflow: hidden;

  height: 460px;

  border-radius: 58% 42% 48% 52% / 42% 58% 42% 58%;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);

  position: relative;
}

.image-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.6s ease;
}

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

/* Floating Card */

.floating-card {
  position: absolute;

  bottom: 30px;
  left: -30px;

  background: #fff;

  padding: 22px 26px;

  border-radius: 22px;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);

  min-width: 230px;

  backdrop-filter: blur(12px);
}

.floating-card h4 {
  font-size: 34px;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.floating-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

/* Decorative Dots */

.dots {
  position: absolute;
  top: -30px;
  right: -20px;

  width: 120px;
  height: 120px;

  background-image: radial-gradient(var(--yellow) 2px, transparent 2px);

  background-size: 16px 16px;

  opacity: 0.6;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .about-container {
    flex-direction: column;
  }

  .about-content {
    max-width: 100%;
  }

  .section-title {
    font-size: 42px;
  }

  .image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 90px 24px;
  }

  .section-title {
    font-size: 34px;
  }

  .section-description {
    font-size: 16px;
  }

  .image-shape {
    height: 360px;
  }

  .floating-card {
    left: 10px;
    bottom: 10px;

    padding: 18px 20px;
  }
}

@media (max-width: 520px) {
  .info-card {
    flex-direction: column;
  }

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

  .image-shape {
    height: 300px;
  }

  .floating-card {
    position: relative;
    margin-top: 20px;
    left: 0;
    bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   08. Services
   -------------------------------------------------------------------------- */

.services-section {
  position: relative;
  overflow: hidden;
  padding: 120px 8%;
  background-color: var(--green-dark);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      165deg,
      rgba(18, 60, 47, 0.94) 0%,
      rgba(18, 60, 47, 0.82) 45%,
      rgba(18, 60, 47, 0.9) 100%
    ),
    url("../media/building.jpg") center / cover no-repeat;
  pointer-events: none;
}

@media (min-width: 901px) {
  .services-section::before {
    background-attachment: fixed;
  }
}

/* =========================
 DECORATIVE BACKGROUND
========================= */

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.bg-circle.one {
  width: 380px;
  height: 380px;

  background: rgba(243, 195, 47, 0.16);

  top: -120px;
  right: -120px;
}

.bg-circle.two {
  width: 300px;
  height: 300px;

  background: rgba(10, 35, 66, 0.08);

  bottom: -80px;
  left: -80px;
}

.services-section .section-header {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 90px;
  text-align: center;
}

.services-section .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff2c9;
  color: #b88600;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
  box-shadow: 0 10px 25px rgba(243, 195, 47, 0.18);
}

.services-section .section-header h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 26px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.services-section .section-header p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
  margin: auto;
}

.services-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

  gap: 35px;
}

/* =========================
 CARD
========================= */

.service-card {
  position: relative;

  background: #fff;

  border-radius: 34px;

  overflow: hidden;

  transition: 0.45s ease;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);

  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-14px);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

/* =========================
 FEATURED CARD
========================= */

.services-section .service-card.featured {
  border: 2px solid #f3c32f;
  transform: translateY(-18px);
}

.services-section .service-card.featured:hover {
  transform: translateY(-28px);
}

.services-section .badge {
  position: absolute;

  top: 24px;
  right: 24px;

  z-index: 3;

  background: #f3c32f;
  color: #111;

  padding: 10px 18px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(243, 195, 47, 0.35);
}

/* =========================
 IMAGE
========================= */

.service-image {
  position: relative;

  height: 260px;

  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* Service card image overlay */

.service-image .overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05));
}

/* =========================
 CONTENT
========================= */

.service-content {
  padding: 34px;
  position: relative;
}

/* =========================
 ICON
========================= */

.icon {
  width: 84px;
  height: 84px;

  border-radius: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #fff7da, #ffe793);

  font-size: 36px;

  margin-top: -76px;
  margin-bottom: 26px;

  position: relative;
  z-index: 2;

  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

/* =========================
 TEXT
========================= */

.service-card h3 {
  font-size: 31px;
  line-height: 1.2;

  font-weight: 800;

  color: #141414;

  margin-bottom: 18px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.9;

  color: #656d78;

  margin-bottom: 32px;
}

/* =========================
 BUTTON
========================= */

.service-card a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 18px;

  border-radius: 16px;

  text-decoration: none;

  background: #f3c32f;
  color: #111;

  font-size: 15px;
  font-weight: 700;

  transition: 0.35s ease;
}

.service-card a:hover {
  background: #111827;
  color: #fff;
}

/* =========================
 RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .services-section .section-header h2 {
    font-size: 56px;
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 100px 6%;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .services-section .service-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 90px 24px;
  }

  .services-section .section-header {
    text-align: left;
  }

  .services-section .section-header h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .services-section .section-header p {
    font-size: 16px;
  }

  .service-image {
    height: 230px;
  }

  .service-card h3 {
    font-size: 28px;
  }
}

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

  .services-section .section-header h2 {
    font-size: 36px;
  }

  .service-content {
    padding: 28px;
  }

  .icon {
    width: 72px;
    height: 72px;

    font-size: 30px;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

.feature-grid,
.service-grid,
.stats-grid,
.gallery-grid {
  display: grid;
  gap: 28px;
}

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

.feature-card {
  padding: 42px 32px;
  border-radius: 26px;
  background: white;
  border: 1px solid #eee;
  transition: 0.35s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(244, 180, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 28px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--green-dark);
}

.about-section {
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-photo-main {
  display: block;
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  height: 620px;
}

.about-photo-thumb {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38%;
  max-width: 268px;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.about-photo-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  min-height: 130px;
}

.experience-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: white;
  padding: 20px 24px 22px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  max-width: 292px;
}

.badge-icon {
  grid-row: 1 / span 4;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.28),
    rgba(30, 93, 70, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 20px;
}

.badge-label {
  grid-column: 2;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.badge-value {
  grid-column: 2;
  margin: 0;
  line-height: 1.05;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.badge-number {
  font-size: 34px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
}

.badge-suffix {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
}

.badge-sub {
  grid-column: 2;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}

.section-tag {
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.about-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--light));
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  box-shadow: 0 10px 28px rgba(18, 60, 47, 0.08);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-section-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
}

.section-title {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--green-dark);
  letter-spacing: -1.5px;
}

.highlight {
  color: var(--yellow);
}

.about-content p {
  color: #666;
  margin-bottom: 30px;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.check-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--green-dark);
  font-size: 15px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.check-chip:hover {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 8px 24px rgba(18, 60, 47, 0.06);
}

.check-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 17px;
}

.about-quote {
  margin: 0 0 26px;
  padding: 16px 0 16px 20px;
  border-left: 4px solid var(--orange);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: #555;
}

.about-quote p {
  margin: 0;
}

.about-quote footer {
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-outline-dark {
  border: 2px solid rgba(18, 60, 47, 0.22);
  color: var(--green-dark);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--green);
  background: rgba(244, 180, 0, 0.1);
}

.about-actions a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.about-trust {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-trust-heading {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 22px;
}

.about-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fafafa;
  border: 1px solid #ececec;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}

.trust-pill i {
  color: #888;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .check-chip,
  .btn-outline-dark {
    transition: none;
  }

  .about-section [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.services {
  background: var(--green-dark);
  color: white;
}

.services-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.services .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.services .section-title {
  color: white;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 18px;
  line-height: 1.12;
}

.services .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.services-subtitle {
  margin: 0 auto;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1000px) {
  .service-card:nth-child(2) {
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 32px 55px rgba(0, 0, 0, 0.28);
  }

  .service-card:nth-child(2):hover {
    transform: scale(1.04) translateY(-10px);
  }
}

.service-card:focus-within {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.service-image-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 60, 47, 0.88) 0%,
    rgba(18, 60, 47, 0.15) 40%,
    transparent 68%
  );
  pointer-events: none;
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-content {
  padding: 28px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 180, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 19px;
  margin-bottom: 14px;
}

.service-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #fff;
}

.service-content > p:first-of-type {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
  flex-grow: 1;
}

.service-details {
  display: none;
  width: 100%;
  margin: 0 0 16px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.service-card.is-expanded .service-details {
  display: block;
  animation: serviceReveal 0.35s ease;
}

.service-details ul {
  margin: 0;
  padding: 0 0 0 1.1em;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.55;
}

.service-details li + li {
  margin-top: 8px;
}

@keyframes serviceReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-scope-btn {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.service-scope-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 180, 0, 0.45);
}

.service-scope-btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.service-scope-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-card.is-expanded .service-scope-btn i {
  transform: rotate(180deg);
}

.service-card-cta {
  align-self: stretch;
  text-align: center;
  margin-top: auto;
}

.services-proof {
  margin-top: 48px;
  text-align: center;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.services-proof p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.services-proof strong {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.15em;
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card:nth-child(2),
  .service-card:hover,
  .service-card:nth-child(2):hover,
  .service-card img {
    transition: none;
    transform: none !important;
  }

  .service-card:hover {
    box-shadow: none;
  }

  .service-card:nth-child(2) {
    box-shadow: none;
  }

  .service-card.is-expanded .service-details {
    animation: none;
  }

  .service-scope-btn i {
    transition: none;
  }
}

.stats-section {
  background: linear-gradient(180deg, #eef3f0 0%, var(--light) 45%, #fff 100%);
}

.stats-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.stats-head .section-title {
  margin-bottom: 16px;
}

.stats-head .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.stats-subtitle {
  margin: 0 auto;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  color: #666;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.stats-grid > .stat-card[data-animate]:nth-child(1) {
  transition-delay: 0s;
}
.stats-grid > .stat-card[data-animate]:nth-child(2) {
  transition-delay: 0.1s;
}
.stats-grid > .stat-card[data-animate]:nth-child(3) {
  transition-delay: 0.2s;
}
.stats-grid > .stat-card[data-animate]:nth-child(4) {
  transition-delay: 0.3s;
}

.stat-card {
  padding: 32px 24px 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(18, 60, 47, 0.06);
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(18, 60, 47, 0.1);
  border-color: rgba(255, 122, 0, 0.25);
}

@media (min-width: 1000px) {
  .stat-card--featured {
    transform: scale(1.06);
    z-index: 2;
    border-color: rgba(244, 180, 0, 0.45);
    box-shadow: 0 24px 55px rgba(18, 60, 47, 0.12);
  }

  .stat-card--featured:hover {
    transform: scale(1.06) translateY(-8px);
  }
}

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.22),
    rgba(30, 93, 70, 0.1)
  );
  border: 1px solid rgba(244, 180, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 22px;
}

.stat-card--featured .stat-icon {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  border-color: transparent;
}

.stat-value {
  margin: 0 0 6px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: "Poppins", sans-serif;
}

.stat-value .counter {
  font-size: 56px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -2px;
}

.stat-suffix {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.stat-card.is-counted .stat-suffix {
  opacity: 1;
}

.stat-label {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}

.stat-meta {
  margin: 0;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.45;
}

.stats-foot {
  margin-top: 40px;
  text-align: center;
}

.stats-foot-note {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.stats-foot-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stats-foot-note a:hover {
  color: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .stat-card--featured,
  .stat-card:hover,
  .stat-card--featured:hover {
    transition: none;
    transform: none !important;
  }

  .stat-card:hover {
    box-shadow: 0 12px 32px rgba(18, 60, 47, 0.06);
  }

  .stats-section [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .stats-grid > .stat-card[data-animate] {
    transition-delay: 0s;
  }

  .stat-suffix {
    opacity: 1;
    transition: none;
  }
}

.projects-section {
  background: #fff;
}

.projects-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.projects-head .section-title {
  margin-bottom: 16px;
}

.projects-head .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.projects-subtitle {
  margin: 0 auto;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
  color: #666;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-filter {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  border-color: transparent;
}

.gallery-filter:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.gallery-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 24px;
}

.gallery-grid > .gallery-item[data-animate]:nth-child(1) {
  transition-delay: 0s;
}
.gallery-grid > .gallery-item[data-animate]:nth-child(2) {
  transition-delay: 0.08s;
}
.gallery-grid > .gallery-item[data-animate]:nth-child(3) {
  transition-delay: 0.16s;
}
.gallery-grid > .gallery-item[data-animate]:nth-child(4) {
  transition-delay: 0.08s;
}
.gallery-grid > .gallery-item[data-animate]:nth-child(5) {
  transition-delay: 0.16s;
}
.gallery-grid > .gallery-item[data-animate]:nth-child(6) {
  transition-delay: 0.24s;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(18, 60, 47, 0.08);
  cursor: pointer;
  min-height: 280px;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.gallery-item--featured {
  grid-column: span 8;
  grid-row: span 2;
}

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

.gallery-item:hover {
  box-shadow: 0 22px 48px rgba(18, 60, 47, 0.14);
  transform: translateY(-4px);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item--featured img {
  min-height: 100%;
  height: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 60, 47, 0.94) 0%,
    rgba(18, 60, 47, 0.4) 50%,
    transparent 72%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.gallery-overlay h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #fff;
}

.gallery-case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.gallery-case-link:hover {
  filter: brightness(1.08);
  color: #fff;
}

.gallery-overlay p {
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.gallery-location {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-proof {
  margin: 28px 0 0;
  text-align: center;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.gallery-proof strong {
  color: var(--green-dark);
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(10, 26, 20, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(1100px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-inner img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-caption {
  margin-top: 18px;
  text-align: center;
  color: #fff;
  max-width: 640px;
}

.lightbox-caption h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.lightbox-case-link {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  font-size: 0.9rem;
  text-decoration: none;
  width: auto;
}

.lightbox-caption p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  z-index: 2;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .gallery-item,
  .gallery-item--featured {
    grid-column: span 12;
    grid-row: span 1;
  }

  .gallery-item img {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item,
  .gallery-item:hover {
    transition: none;
    transform: none;
  }

  .gallery-item img,
  .gallery-item:hover img {
    transition: none;
    transform: none;
  }

  .gallery-overlay {
    opacity: 1;
    transition: none;
  }

  .projects-section [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-grid > .gallery-item[data-animate] {
    transition-delay: 0s;
  }

  .gallery-filter {
    transition: none;
  }
}

.contact-section {
  background:
    linear-gradient(rgba(18, 60, 47, 0.88), rgba(18, 60, 47, 0.88)),
    url("../media/ourcp.jpg") center / cover no-repeat;
  color: white;
  padding-bottom: 0;
}

.contact-section .section-title {
  color: #fff;
}

.contact-form-submit {
  border: none;
  width: 100%;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 70px;
  align-items: start;
  padding-top: 90px;
  padding-bottom: 50px;
}

.contact-lead {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

.contact-details-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-details-list i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
  font-size: 18px;
}

.contact-details-list strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 6px;
}

.contact-details-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.contact-details-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.contact-map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.contact-map-wrap {
  padding-bottom: 0;
}

.contact-map {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 24px 24px 0 0;
  filter: grayscale(20%) contrast(1.05);
}

.sticky-topbar a,
.sticky-topbar span a {
  color: inherit;
}

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

.main-header .info-text a {
  color: var(--text);
}

.main-header .info-text a:hover {
  color: var(--green);
}

form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 30px;
  padding: 40px;
}

input,
textarea,
select {
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  border: none;
  margin-bottom: 18px;
  font-family: inherit;
}

footer {
  background: #0a261d;
  color: white;
  padding: 90px 0 30px;
}

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

.footer-grid h3 {
  margin-bottom: 20px;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand .logo-img--footer {
  height: 110px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  border-radius: 12px;
  filter: contrast(1.2) saturate(1.15) brightness(1.05);
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.75;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
  display: block;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-contact {
  min-width: 0;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72) !important;
  margin-bottom: 20px !important;
}

.footer-address i {
  color: var(--yellow);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.22s ease,
    padding-left 0.22s ease;
}

.footer-contact-row:last-child {
  border-bottom: none;
}

.footer-contact-row:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 22px;
}

.footer-contact-row:hover .footer-contact-value {
  color: #fff;
}

.footer-contact-row:hover .footer-contact-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--yellow);
}

.footer-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.footer-contact-row:nth-child(2) .footer-contact-icon {
  background: linear-gradient(135deg, #1a6b52, var(--green-dark));
}

.footer-contact-row:nth-child(3) .footer-contact-icon {
  background: linear-gradient(135deg, var(--orange), #e86a00);
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  word-break: break-word;
}

.footer-contact-arrow {
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
  flex-shrink: 0;
}

.footer-contact .footer-contact-row {
  margin-bottom: 0;
  display: flex;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 54px;
  }

  .section-title {
    font-size: 42px;
  }

  .header-content,
  .nav-content,
  .topbar-content {
    flex-direction: column;
    gap: 20px;
  }

  .logo-img {
    height: 76px;
    max-width: min(320px, 70vw);
  }

  .footer-brand .logo-img--footer {
    height: 96px;
    max-width: 300px;
  }

  .footer-contact-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

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

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--green-dark);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

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

  .nav-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .contact-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .info-box {
    justify-content: center;
  }
}

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

  .section-title {
    font-size: 28px;
  }

  .feature-card,
  .service-card,
  .stat-card {
    text-align: center;
  }

  .service-content {
    align-items: center;
  }

  .service-details {
    text-align: left;
  }

  .stat-value .counter {
    font-size: 42px;
  }

  .stat-suffix {
    font-size: 28px;
  }

  .gallery-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    gap: 40px;
  }

  .about-photo-main {
    height: 350px;
  }

  .about-photo-thumb {
    width: 44%;
    max-width: 200px;
    right: 8px;
    bottom: 8px;
    border-width: 4px;
  }

  .experience-badge {
    left: 10px;
    bottom: 12px;
    padding: 16px 18px;
    max-width: 260px;
  }

  .badge-number {
    font-size: 28px;
  }

  .badge-suffix {
    font-size: 16px;
  }

  .about-actions {
    justify-content: center;
  }

  .about-section-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    padding: 10px 16px 10px 14px;
  }
}

@media (max-width: 768px) {
  form {
    padding: 25px;
  }

  input,
  textarea,
  select {
    font-size: 14px;
    padding: 14px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
  overflow-x: clip;
}

@media (max-width: 768px) {
  .nav-links a {
    padding: 12px 0;
  }
}

.sticky-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  font-size: 13px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sticky-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sticky-left,
.sticky-right {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.sticky-topbar i {
  color: var(--yellow);
  margin-right: 6px;
}

.sticky-btn {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: white;
  transition: 0.3s;
  font-size: 12px;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.25);
}

body {
  padding-top: 50px;
}

@media (max-width: 768px) {
  .sticky-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .sticky-left,
  .sticky-right {
    justify-content: center;
  }

  body {
    padding-top: 80px;
  }

  nav,
  .main-nav {
    top: 80px;
  }

  html {
    scroll-padding-top: 200px;
  }

  main section[id] {
    scroll-margin-top: 200px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s ease;
  animation: pulse 1.8s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 18px;
    right: 18px;
  }
}

.wa-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wa-popup {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 280px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
  z-index: 9999;
  font-family: inherit;
}

.wa-header {
  background: #25d366;
  color: white;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-header h4 {
  margin: 0;
  font-size: 14px;
}

.wa-header small {
  font-size: 11px;
  opacity: 0.9;
}

.wa-header span {
  margin-left: auto;
  cursor: pointer;
}

.wa-body {
  padding: 14px;
  font-size: 14px;
  color: #333;
}

.wa-chat-btn {
  display: block;
  text-align: center;
  background: #25d366;
  color: white;
  padding: 12px;
  font-weight: bold;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Base button */
.hero-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Primary button */
.hero-btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: white;
}

/* Outline glass button */
.hero-btn.outline {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}

/* Hover effects */
.hero-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Icon styling */
.hero-btn i {
  font-size: 14px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--green-dark);
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100vh;
  background: white;
  z-index: 9999;
  padding: 20px;
  transition: 0.4s ease;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-header h3 {
  color: var(--green-dark);
}

.mobile-menu a {
  display: block;
  padding: 14px 10px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #f1f1f1;
}

.mobile-menu a:hover {
  background: rgba(30, 93, 70, 0.05);
  padding-left: 16px;
}

.mobile-search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 12px;
  padding: 14px 12px;
  border: 2px solid rgba(30, 93, 70, 0.15);
  border-radius: 12px;
  background: rgba(30, 93, 70, 0.06);
  color: var(--green-dark);
  font-weight: 600;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
}

.mobile-search-btn:hover {
  background: rgba(30, 93, 70, 0.12);
}

.mobile-divider {
  height: 1px;
  background: #eee;
  margin: 15px 0;
}

/* Mobile menu backdrop */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9998;
}

#overlay.active {
  display: block;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    display: none;
  }
}

.testimonials {
  background: #f8f7f3;
  text-align: center;
}

.testimonials-head {
  max-width: 720px;
  margin: 0 auto 12px;
}

.testimonials-head .section-title {
  margin-bottom: 16px;
}

.testimonials-head .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.testimonials-subtitle {
  margin: 0 auto;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.65;
  color: #666;
}

.testimonials-aggregate {
  margin: 0 auto 36px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
}

.testimonials-aggregate i {
  color: var(--yellow);
  margin-right: 6px;
}

.testimonial-slider-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-slider {
  flex: 1;
  min-width: 0;
  position: relative;
  min-height: 320px;
}

.testimonial {
  display: none;
  text-align: left;
  padding: 36px 36px 32px 44px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease;
}

.testimonial.active {
  display: block;
  animation: fadeTestimonial 0.6s ease;
  box-shadow: 0 22px 50px rgba(18, 60, 47, 0.1);
  border-left-color: var(--orange);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 15px;
}

.testimonial-quote {
  margin: 0 0 24px;
  position: relative;
  padding-left: 8px;
}

.quote-mark {
  position: absolute;
  left: -8px;
  top: -18px;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(255, 122, 0, 0.2);
  pointer-events: none;
}

.testimonial-quote p {
  margin: 0;
  font-size: 18px;
  color: #555;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  margin: 0 0 4px;
  font-size: 17px;
  color: var(--green-dark);
}

.testimonial-role {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
}

.testimonial-project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--green-dark);
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.testimonial-nav:hover {
  background: var(--light);
  border-color: rgba(255, 122, 0, 0.4);
  color: var(--orange);
}

.testimonial-nav:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.t-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.t-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

.t-dot:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.testimonials-foot {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 768px) {
  .testimonial-slider-wrap {
    flex-direction: column;
    gap: 16px;
  }

  .testimonial-nav {
    order: 2;
  }

  .testimonial-slider {
    order: 1;
    width: 100%;
    min-height: 340px;
  }

  .testimonial-slider-wrap .testimonial-prev {
    order: 2;
  }

  .testimonial-slider-wrap .testimonial-next {
    order: 3;
  }

  .testimonial-slider-wrap .testimonial-nav {
    display: inline-flex;
  }

  .testimonial-slider-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-slider {
    flex: 1 1 100%;
    order: 1;
  }

  .testimonial-prev {
    order: 2;
  }

  .testimonial-next {
    order: 2;
    margin-left: 12px;
  }

  .testimonial {
    padding: 28px 24px 24px 32px;
  }

  .quote-mark {
    font-size: 56px;
    top: -12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial.active {
    animation: none;
  }

  .testimonial-nav,
  .t-dot {
    transition: none;
  }

  .testimonials [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

.counter {
  display: inline-block;
  transition: 0.3s ease;
}

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

[data-animate="left"] {
  transform: translateX(-60px) rotate(-4deg);
}

[data-animate="right"] {
  transform: translateX(60px) rotate(4deg);
}

[data-animate="zoom"] {
  transform: scale(0.9) rotate(-2deg);
}

[data-animate="rotate-left"] {
  transform: translateY(40px) rotate(-8deg);
}

[data-animate="rotate-right"] {
  transform: translateY(40px) rotate(8deg);
}

[data-animate="tilt-up"] {
  transform: perspective(900px) translateY(40px) rotateX(10deg);
}

[data-animate].show {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg) rotateX(0deg);
}

.features-premium {
  padding: 100px 0;
  background: #f8f7f3;
}

.features-premium .section-title {
  max-width: 900px;
}

.features-premium-lead {
  max-width: 720px;
  color: #666;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 48px;
}

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

.feature-grid-premium > .feature-card-premium[data-animate]:nth-child(1) {
  transition-delay: 0s;
}

.feature-grid-premium > .feature-card-premium[data-animate]:nth-child(2) {
  transition-delay: 0.12s;
}

.feature-grid-premium > .feature-card-premium[data-animate]:nth-child(3) {
  transition-delay: 0.24s;
}

.feature-grid-premium > .feature-card-premium[data-animate]:nth-child(4) {
  transition-delay: 0.36s;
}

.feature-card-premium {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.feature-card-premium:hover {
  --lift: -10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.feature-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.feature-card-premium:hover img {
  transform: scale(1.08);
}

.feature-card-premium-body {
  padding: 0 16px 20px;
}

.feature-premium-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.22),
    rgba(30, 93, 70, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--green-dark);
}

.feature-card-premium h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #123c2f;
}

.feature-card-premium-body > p:first-of-type {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.65;
}

.feature-premium-proof {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  line-height: 1.5;
}

.feature-premium-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.feature-premium-more i {
  font-size: 12px;
}

.feature-premium-more:hover {
  color: var(--green);
}

.features-premium-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid rgba(18, 60, 47, 0.1);
}

.fp-stat {
  text-align: center;
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.fp-stat .counter {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 8px;
}

.fp-stat.is-counted .counter,
.stat-card.is-counted .stat-suffix {
  opacity: 1;
}

.fp-stat > p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .feature-card-premium,
  .feature-card-premium:hover,
  .feature-image img,
  .feature-card-premium:hover img {
    transition: none;
    transform: none;
  }

  .feature-card-premium:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }

  .features-premium [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .feature-grid-premium > .feature-card-premium[data-animate] {
    transition-delay: 0s;
  }

  .feature-premium-more {
    transition: none;
  }
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Menu toggle button */
.menu-toggle {
  border: none;
  background: transparent;
  padding: 8px;
  line-height: 1;
}

.mobile-menu-close,
.wa-close {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--green-dark);
  padding: 8px;
  line-height: 1;
}

.wa-fab {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Contact form labels */
.contact-section form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.contact-section form label + input,
.contact-section form label + select,
.contact-section form label + textarea {
  margin-top: 0;
}

/* Site search */
.search-toggle {
  border: none;
  background: transparent;
  font-size: 18px;
  color: var(--green-dark);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.search-toggle:hover,
.search-toggle:focus-visible {
  background: rgba(30, 93, 70, 0.08);
  color: var(--green);
  outline: none;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 20px;
}

.site-search[hidden] {
  display: none !important;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 38, 29, 0.55);
  backdrop-filter: blur(4px);
}

.site-search-panel {
  position: relative;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  max-height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
}

.site-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.site-search-header h2 {
  font-size: 1.35rem;
  color: var(--green-dark);
}

.site-search-close {
  border: none;
  background: #f3f3f3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
}

.site-search-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 10px;
}

.site-search-input:focus {
  outline: none;
  border-color: var(--green);
}

.site-search-hint {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.site-search-results {
  list-style: none;
  overflow-y: auto;
  flex: 1;
  margin: 0;
  padding: 0;
}

.site-search-results li {
  margin: 0;
}

.site-search-results a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.site-search-results a:hover,
.site-search-results a:focus-visible {
  background: rgba(30, 93, 70, 0.08);
  color: var(--green-dark);
  outline: none;
}

.site-search-results .search-meta {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-top: 2px;
}

.site-search-results .search-empty {
  padding: 16px;
  color: #666;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-right .search-toggle {
    display: none;
  }
}

/* Team section */
.team-section {
  padding: 100px 0;
  background: #fff;
}

.team-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.team-head .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.team-subtitle {
  margin-top: 16px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}

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

.team-grid > .team-card[data-animate]:nth-child(1) {
  transition-delay: 0s;
}
.team-grid > .team-card[data-animate]:nth-child(2) {
  transition-delay: 0.1s;
}
.team-grid > .team-card[data-animate]:nth-child(3) {
  transition-delay: 0.2s;
}
.team-grid > .team-card[data-animate]:nth-child(4) {
  transition-delay: 0.3s;
}

.team-card {
  background: var(--light);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(18, 60, 47, 0.12);
}

.team-card-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.team-card-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(transparent, rgba(18, 60, 47, 0.85));
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.team-card:hover .team-card-social,
.team-card:focus-within .team-card-social {
  opacity: 1;
  transform: translateY(0);
}

.team-card-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.team-card-social a:hover {
  background: var(--yellow);
  color: var(--green-dark);
}

.team-card-body {
  padding: 22px 22px 26px;
  text-align: center;
}

.team-card-body h3 {
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

.team-foot {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.team-foot p {
  color: var(--gray);
  font-size: 16px;
}

/* Blog section */
.blog-section {
  padding: 100px 0;
  background: var(--light);
}

.blog-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.blog-head .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.blog-subtitle {
  margin-top: 16px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-grid > .blog-card[data-animate]:nth-child(1) {
  transition-delay: 0s;
}
.blog-grid > .blog-card[data-animate]:nth-child(2) {
  transition-delay: 0.1s;
}
.blog-grid > .blog-card[data-animate]:nth-child(3) {
  transition-delay: 0.2s;
}

.blog-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(18, 60, 47, 0.1);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-body time {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 20px;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-body h3 {
  color: var(--green);
}

.blog-card-body > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
}

.blog-read-more i {
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-read-more i {
  transform: translateX(4px);
}

.blog-foot {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .team-section [data-animate],
  .blog-section [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .team-grid > .team-card[data-animate],
  .blog-grid > .blog-card[data-animate] {
    transition-delay: 0s;
  }

  .team-card:hover,
  .blog-card:hover {
    transform: none;
  }
}

/* Investors section */
.investors-section {
  padding: 90px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.investors-head {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.investors-head .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.investors-subtitle {
  margin-top: 16px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}

.investors-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.investors-slider-viewport {
  flex: 1;
  overflow: hidden;
}

.investors-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.investor-slide {
  flex: 0 0 calc(100% / var(--investors-per-view, 5));
  padding: 0 12px;
  box-sizing: border-box;
}

.investor-logo {
  margin: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.investor-logo img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.82;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.investor-slide:hover .investor-logo,
.investor-slide:focus-within .investor-logo {
  border-color: rgba(30, 93, 70, 0.25);
  box-shadow: 0 12px 32px rgba(18, 60, 47, 0.08);
  transform: translateY(-3px);
}

.investor-slide:hover .investor-logo img,
.investor-slide:focus-within .investor-logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.investors-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.investors-nav:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.investors-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.investors-dots .inv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d8d8d8;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.investors-dots .inv-dot.active {
  background: var(--orange);
  transform: scale(1.15);
}

@media (max-width: 900px) {
  .investors-slider-wrap {
    gap: 10px;
  }

  .investors-nav {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .investor-logo {
    height: 88px;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .investors-section [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .investors-track {
    transition: none;
  }

  .investor-slide:hover .investor-logo {
    transform: none;
  }
}

/* Team showcase (leadership slider) */
.team-showcase {
  background: #fff;
}

.team-showcase .team-showcase-panel {
  position: relative;
  margin-top: 48px;
}

.team-showcase .team-showcase-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 0 56px;
}

.team-showcase .team-showcase-text {
  flex: 1;
  max-width: 520px;
}

.team-showcase .breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.team-showcase .breadcrumb a {
  color: var(--green);
  font-weight: 600;
}

.team-showcase .breadcrumb a:hover {
  color: var(--orange);
}

.team-showcase .name {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.team-showcase .role {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--orange);
  margin-bottom: 24px;
  font-weight: 600;
}

.team-showcase .description {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray);
}

.team-showcase .team-showcase-media {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 480px;
}

.team-showcase .profile-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(18, 60, 47, 0.15);
}

.team-showcase .team-showcase-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.team-showcase .team-showcase-arrow:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.team-showcase .team-showcase-arrow--prev,
.team-showcase .arrow.left {
  left: 0;
}

.team-showcase .team-showcase-arrow--next,
.team-showcase .arrow.right {
  right: 0;
}

.team-showcase .team-list {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 12px;
}

.team-showcase .member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: var(--light);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  min-width: 120px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.team-showcase .member:hover {
  border-color: rgba(30, 93, 70, 0.25);
  transform: translateY(-2px);
}

.team-showcase .member.active {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(18, 60, 47, 0.12);
}

.team-showcase .member img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-showcase .member-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
}

.team-showcase .member-role {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.3;
}

.team-showcase .team-foot {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 992px) {
  .team-showcase .team-showcase-content {
    flex-direction: column;
    text-align: center;
    padding: 0 48px;
  }

  .team-showcase .team-showcase-text {
    max-width: 100%;
  }

  .team-showcase .description {
    margin-left: auto;
    margin-right: auto;
  }

  .team-showcase .team-showcase-arrow {
    top: auto;
    bottom: 200px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .team-showcase .team-showcase-content {
    padding: 0 40px;
  }

  .team-showcase .team-showcase-arrow {
    width: 40px;
    height: 40px;
    bottom: 220px;
  }

  .team-showcase .member {
    min-width: 100px;
    padding: 10px 12px;
  }
}

/* News / blog section */
.news-section {
  padding: 100px 0;
  background: var(--light);
}

.news-section .news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.news-section .news-header-text {
  flex: 1;
  min-width: 280px;
}

.news-section .news-header .section-title {
  text-align: left;
  margin-bottom: 12px;
}

.news-section .news-header .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.news-header-desc {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray);
}

.news-see-all {
  flex-shrink: 0;
  white-space: nowrap;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.news-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(18, 60, 47, 0.1);
}

.news-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange, #ff7a00);
  margin: 0 0 10px;
  line-height: 1.4;
}

.news-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--gray, #5a6b65);
  line-height: 1.6;
}

.news-foot a {
  color: var(--green-dark, #123c2f);
  font-weight: 600;
}

.news-card-media {
  position: relative;
  overflow: hidden;
}

.news-card--featured .news-card-media {
  aspect-ratio: 16 / 11;
}

.news-card--compact .news-card-media {
  aspect-ratio: 16 / 10;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.news-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.news-content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-content time {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
}

.news-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
  color: var(--green-dark);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.news-card--compact .news-content h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.news-card:hover .news-content h3 {
  color: var(--green);
}

.news-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 16px;
  flex: 1;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  text-decoration: none;
}

.news-read-more:hover {
  text-decoration: underline;
}

.news-read-more i {
  transition: transform 0.2s ease;
}

.news-card:hover .news-read-more i {
  transform: translateX(4px);
}

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

  .news-section .news-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-see-all {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-section [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .news-card:hover {
    transform: none;
  }
}

/* Testimonials showcase (card carousel) */
.testimonial-section {
  padding: 100px 0;
  background: #fff;
}

.testimonial-section-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 48px 56px;
  align-items: center;
}

.testimonial-section .testimonial-left .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.testimonial-section .testimonial-left .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 20px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.testimonial-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 480px;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-cards-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.testimonial-cards-nav:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.testimonial-right {
  min-width: 0;
}

.testimonial-cards-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 8px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonial-cards-track::-webkit-scrollbar {
  display: none;
}

.testimonial-section .testimonial-card {
  flex: 0 0 min(300px, 85vw);
  scroll-snap-align: center;
  background: #fff;
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 35px rgba(18, 60, 47, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.testimonial-section .testimonial-card.active {
  transform: translateY(-12px);
  border-color: rgba(30, 93, 70, 0.25);
  box-shadow: 0 24px 50px rgba(18, 60, 47, 0.12);
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-section .testimonial-card.active:hover {
  transform: translateY(-14px);
}

.testimonial-card-stars {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.testimonial-section .testimonial-card h3 {
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.testimonial-card-role {
  display: block;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.testimonial-card-tag {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 16px;
}

.testimonial-section .testimonial-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

.testimonial-section .testimonials-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 992px) {
  .testimonial-section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial-section .testimonial-left .section-title {
    text-align: center;
  }

  .testimonial-section .testimonial-left .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-controls {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-section [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonial-section .testimonial-card,
  .testimonial-section .testimonial-card.active {
    transform: none;
  }
}

/* Scroll lock — used when menu, search, or lightbox is open */
html.scroll-lock,
body.scroll-lock {
  overflow: hidden;
  overscroll-behavior: none;
}

/* Prevent horizontal page drift from wide/absolute sections */
body {
  overflow-x: clip;
}

main section[id] {
  scroll-margin-top: 160px;
}

.hero,
.gallery-lightbox {
  overflow: hidden;
}

.testimonial-section {
  overflow: visible;
}

/* --------------------------------------------------------------------------
   11. Utilities (partners, FAQ, form, scroll lock)
   -------------------------------------------------------------------------- */
.top-locations {
  font-size: 13px;
  color: #666;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.partner-card {
  background: #fff;
  border: 1px solid rgba(18, 60, 47, 0.12);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(18, 60, 47, 0.06);
}

.partner-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 60, 47, 0.08);
  color: var(--primary, #123c2f);
  font-size: 22px;
}

.partner-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #123c2f;
}

.partner-card p {
  font-size: 0.9rem;
  color: #5a6b65;
  line-height: 1.5;
}

.faq-section {
  padding: 88px 0;
  background: #f8faf9;
}

.faq-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.faq-intro {
  color: #5a6b65;
  margin-top: 12px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(18, 60, 47, 0.1);
  border-radius: 12px;
  padding: 4px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 16px;
  color: #4a5c56;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 28px;
  color: #5a6b65;
}

.faq-cta a {
  color: var(--primary, #123c2f);
  font-weight: 600;
}

.form-status {
  margin-bottom: 12px;
  font-size: 0.9rem;
  min-height: 1.25em;
}

.form-status--success {
  color: #1e7a4c;
}

.form-status--error {
  color: #b42318;
}

.socials a.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Careers */
.careers-section {
  padding: 88px 0;
  background: #fff;
}

.careers-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.careers-intro {
  color: #5a6b65;
  margin-top: 12px;
  line-height: 1.6;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.career-card {
  background: #f8faf9;
  border: 1px solid rgba(18, 60, 47, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.career-card:hover {
  box-shadow: 0 12px 32px rgba(18, 60, 47, 0.1);
  transform: translateY(-2px);
}

.career-title {
  font-size: 1.2rem;
  color: var(--green-dark, #123c2f);
  margin: 0;
}

.career-meta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange, #ff7a00);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.career-desc {
  color: #4a5c56;
  line-height: 1.6;
  margin: 0 0 8px;
  flex: 1;
}

.career-apply {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.career-apply-btn {
  flex: 1 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(18, 60, 47, 0.15);
  background: #fff;
  color: var(--green-dark, #123c2f);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.career-apply-btn:hover {
  border-color: var(--green-dark, #123c2f);
  background: var(--green-dark, #123c2f);
  color: #fff;
}

.career-apply-btn--linkedin {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
}

.career-apply-btn--linkedin:hover {
  background: #004182;
  border-color: #004182;
  color: #fff;
}

.career-apply-btn--form {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-color: transparent;
  color: #fff;
}

.career-apply-btn--form:hover {
  filter: brightness(1.05);
  color: #fff;
}

.careers-cta {
  text-align: center;
  margin-top: 36px;
  color: #5a6b65;
  line-height: 1.6;
}

.careers-cta a {
  color: var(--green-dark, #123c2f);
  font-weight: 600;
}

/* Job application form */
.job-application-panel {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(18, 60, 47, 0.1);
  scroll-margin-top: 120px;
}

.job-application-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.35fr);
  gap: 40px;
  align-items: start;
}

.job-application-intro .section-tag {
  margin-bottom: 12px;
}

.job-application-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--green-dark, #123c2f);
  margin: 0 0 14px;
  line-height: 1.3;
}

.job-application-intro > p {
  color: #4a5c56;
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.job-application-notes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #4a5c56;
  line-height: 1.5;
}

.job-application-notes i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(18, 60, 47, 0.08);
  color: var(--green-dark, #123c2f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.job-application-notes a {
  color: var(--green-dark, #123c2f);
  font-weight: 600;
}

.job-application-form {
  background: #fff;
  border: 1px solid rgba(18, 60, 47, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(18, 60, 47, 0.08);
  position: relative;
  backdrop-filter: none;
}

.job-application-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.job-application-form .form-status {
  margin-bottom: 16px;
}

.job-form-row {
  margin-bottom: 0;
}

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

.job-form-field {
  margin-bottom: 18px;
}

.job-application-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark, #123c2f);
  margin-bottom: 8px;
}

.label-optional {
  font-weight: 500;
  color: #7a8a84;
}

.job-application-form input:not([type="file"]),
.job-application-form select,
.job-application-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(18, 60, 47, 0.15);
  background: #f8faf9;
  margin-bottom: 0;
  font-size: 15px;
  color: var(--text, #1d1d1d);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.job-application-form input[type="file"] {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(18, 60, 47, 0.25);
  background: #f8faf9;
  margin-bottom: 8px;
  font-size: 14px;
}

.job-application-form input:focus,
.job-application-form select:focus,
.job-application-form textarea:focus {
  outline: none;
  border-color: var(--green, #1e5d46);
  box-shadow: 0 0 0 3px rgba(30, 93, 70, 0.12);
}

.job-application-form textarea {
  resize: vertical;
  min-height: 120px;
}

.job-form-hint {
  font-size: 0.85rem;
  color: #5a6b65;
  margin: 0;
  line-height: 1.5;
}

.job-form-hint a {
  color: var(--green-dark, #123c2f);
  font-weight: 600;
}

.job-form-submit {
  width: 100%;
  border: none;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 1rem;
  cursor: pointer;
}

.job-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .job-application-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .career-apply-btn {
    flex: 1 1 100%;
  }

  .job-application-form {
    padding: 24px 20px;
  }
}

/* Process */
.process-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f8faf9 0%, #fff 100%);
}

.process-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.process-intro {
  color: #5a6b65;
  margin-top: 12px;
  line-height: 1.6;
}

.process-steps {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: process;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(18, 60, 47, 0.1);
  align-items: start;
}

.process-step:last-child {
  border-bottom: none;
}

.process-num {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.process-body h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 0 0 8px;
}

.process-body p {
  margin: 0;
  color: #4a5c56;
  line-height: 1.65;
}

.process-foot {
  text-align: center;
  margin-top: 32px;
  color: #5a6b65;
}

.process-foot a {
  color: var(--green-dark);
  font-weight: 600;
}

/* Certifications */
.certs-section {
  padding: 80px 0;
  background: #fff;
}

.certs-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.certs-intro {
  color: #5a6b65;
  margin-top: 12px;
  line-height: 1.6;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.cert-card {
  background: #f8faf9;
  border: 1px solid rgba(18, 60, 47, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.25s ease;
}

.cert-card:hover {
  box-shadow: 0 12px 32px rgba(18, 60, 47, 0.08);
}

.cert-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.cert-card h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin: 0 0 10px;
}

.cert-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #4a5c56;
  line-height: 1.55;
}

.certs-foot {
  text-align: center;
  margin-top: 32px;
  color: #5a6b65;
}

.certs-foot a {
  color: var(--green-dark);
  font-weight: 600;
}

/* Case study */
.case-study-section {
  padding: 88px 0;
  background: var(--green-dark);
  color: #fff;
  scroll-margin-top: 100px;
}

.case-study-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.case-study-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.case-study-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.case-study-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-study-content .section-title {
  color: #fff;
  text-align: left;
}

.case-study-content .section-tag {
  text-align: left;
}

.case-study-meta {
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-study-content > p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 20px;
}

.case-study-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.case-study-facts li {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.case-study-facts strong {
  color: var(--yellow);
}

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

.case-study-actions .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.case-study-actions .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Video */
.video-section {
  padding: 88px 0;
  background: #f8faf9;
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.video-copy .section-title {
  text-align: left;
}

.video-copy .section-tag {
  text-align: left;
}

.video-copy > p {
  color: #4a5c56;
  line-height: 1.65;
}

.video-note {
  font-size: 0.9rem;
  color: #7a8a84;
  margin: 12px 0 24px;
}

.video-player {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a261d;
  box-shadow: 0 20px 50px rgba(18, 60, 47, 0.2);
  aspect-ratio: 16 / 9;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.video-play-btn:hover {
  transform: scale(1.06);
}

.video-embed {
  width: 100%;
  height: 100%;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Downloads */
.downloads-section {
  padding: 88px 0;
  background: #fff;
}

.downloads-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.downloads-intro {
  color: #5a6b65;
  margin-top: 12px;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.download-card {
  background: #f8faf9;
  border: 1px solid rgba(18, 60, 47, 0.1);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.download-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.download-card h3 {
  color: var(--green-dark);
  margin: 0 0 10px;
}

.download-card p {
  color: #5a6b65;
  font-size: 0.92rem;
  margin: 0 0 20px;
  line-height: 1.5;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.download-btn:hover {
  background: var(--green);
  color: #fff;
}

.downloads-foot {
  text-align: center;
  margin-top: 28px;
  color: #5a6b65;
}

.downloads-foot a {
  color: var(--green-dark);
  font-weight: 600;
}

#partners {
  scroll-margin-top: 100px;
}

#why-us,
#process,
#certifications,
#downloads,
#video,
#case-study {
  scroll-margin-top: 100px;
}

@media (max-width: 900px) {
  .case-study-layout,
  .video-layout {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
}

/* Rotation & tilt effects */
.floating-card,
.experience-badge {
  animation: floatRotate 5s ease-in-out infinite;
}

.experience-badge {
  animation-delay: 0.6s;
}

.dots {
  animation: spinSlow 28s linear infinite;
}

@keyframes floatRotate {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.badge-icon,
.stat-icon,
.cert-icon,
.partner-icon,
.feature-premium-icon {
  transition: transform 0.35s ease;
}

.stat-card.is-counted .stat-icon {
  animation: iconPopRotate 0.65s ease backwards;
}

.cert-card:hover .cert-icon,
.partner-card:hover .partner-icon,
.feature-card-premium:hover .feature-premium-icon {
  transform: rotate(-8deg) scale(1.08);
}

@keyframes iconPopRotate {
  from {
    transform: rotate(-120deg) scale(0.5);
    opacity: 0;
  }
  to {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

.feature-card-premium,
.cert-card,
.partner-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(var(--lift));
  transition:
    transform 0.2s ease-out,
    box-shadow 0.35s ease;
}

.cert-card:hover,
.partner-card:hover {
  --lift: -6px;
}

.process-num {
  display: inline-block;
  transition: transform 0.4s ease;
}

.process-step:hover .process-num {
  transform: rotate(-12deg) scale(1.08);
  color: var(--yellow);
}

.certs-grid .cert-card[data-animate].show,
.partners-grid .partner-card[data-animate].show {
  animation: revealRotate 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

@keyframes revealRotate {
  from {
    opacity: 0;
    transform: perspective(800px) translateY(28px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) translateY(0) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-card,
  .experience-badge,
  .dots {
    animation: none;
  }

  .feature-card-premium,
  .cert-card,
  .partner-card {
    transform: none !important;
  }

  .stat-card.is-counted .stat-icon,
  .certs-grid .cert-card[data-animate].show,
  .partners-grid .partner-card[data-animate].show {
    animation: none;
  }

  .cert-card:hover .cert-icon,
  .partner-card:hover .partner-icon,
  .feature-card-premium:hover .feature-premium-icon,
  .process-step:hover .process-num {
    transform: none;
  }
}
