/*
Theme Name: iSquare Theme
Description: Professional BPO WordPress Theme
Author: iSquare Team
Version: 1.1.1
Text Domain: isquare-theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --green: #008f6b;
  /* Professional Emerald */
  --green-light: #00bf8f;
  /* Fresh Mint */
  --green-pale: #f0fdf9;
  --dark: #002d27;
  /* Deep Forest */
  --text: #1a2f26;
  --muted: #5c7b73;
  --white: #ffffff;
  --offwhite: #fcfdfc;
  --accent: #d1f2e5;
  --border: #e2f0e9;
  --grad: linear-gradient(135deg, var(--green), var(--green-light));
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  transition: background 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: block;
}

@keyframes pageSwitch {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.1, 0.8, 0.1, 1);
}

nav.scrolled {
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-image {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-image {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 3px;
}

.nav-links a:hover,
.nav-links a.al {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.al::after {
  width: 100%;
}

.btn-nav {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.35s;
}

.btn-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 107, 74, 0.4);
}

.btn-nav:hover::before {
  left: 100%;
}

.btn-nav:active {
  transform: translateY(-1px);
}

/* DROPDOWN */
.nav-links li {
  position: relative;
}

.ddc svg {
  width: 11px;
  height: 11px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  stroke: currentColor;
  fill: none;
}

.nav-links li:hover .ddc svg {
  transform: rotate(180deg);
}

.ddm {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: white;
  border-radius: 16px;
  min-width: 280px;
  box-shadow: 0 20px 60px rgba(46, 204, 113, 0.18);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2000;
  padding: 10px;
  backdrop-filter: blur(10px);
}

.ddm::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: white;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-links li:hover .ddm {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ddm a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}

.ddm a::after {
  display: none;
}

.ddm a:hover {
  background: var(--green-pale);
  color: var(--green);
  transform: translateX(4px);
}

.ddi {
  width: 36px;
  height: 36px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.ddm a:hover .ddi {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  transform: scale(1.1);
}

.ddi svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  transition: stroke 0.3s;
}

.ddm a:hover .ddi svg {
  stroke: white;
}

/* BTNS */
.btn-p {
  background: var(--grad);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 32px rgba(0, 143, 107, 0.3);
  cursor: pointer;
  border: none;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn-p:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 107, 74, 0.4);
  letter-spacing: 0.5px;
}

.btn-p:hover::before {
  width: 300px;
  height: 300px;
}

.btn-p:active {
  transform: translateY(-1px);
}

.btn-o {
  background: transparent;
  color: var(--green);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--green);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-o::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-o:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 107, 74, 0.25);
}

.btn-o:hover::before {
  transform: scaleX(1);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 60px 120px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero::before {
  display: none;
}

/* Slider Nav Buttons */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-nav:hover {
  background: rgba(0, 143, 107, 0.7);
  border-color: var(--green-light);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hbg1 {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
  z-index: 1;
}

.hbg2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  background-image: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.15) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  opacity: 0.3;
  z-index: 1;
}

.hero-c {
  position: relative;
  z-index: 2;
  max-width: 640px;
  background: rgba(0, 0, 0, 0.65);
  padding: 40px 44px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.hero-c h1,
.hero-c p,
.hero-c .badge {
  color: var(--white);
}

.hero-c .badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--border);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
  box-shadow: 0 8px 24px rgba(0, 143, 107, 0.08);
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 143, 107, 0.12);
  border-color: var(--green);
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero h1 em {
  color: var(--green-light);
  font-style: normal;
}

.hero > div > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hbtns {
  display: flex;
  gap: 16px;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hstats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  animation: fadeUp 0.8s 0.6s ease both;
}

.snum {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  display: block;
  line-height: 1;
}

.slbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* SECTIONS */
section {
  padding: 140px 60px;
}

.sl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sl::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

.st {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.ss {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

/* COUNTER BAR */
.cbar {
  background: linear-gradient(135deg, #001a14 0%, #002d27 50%, #00403a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 191, 143, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(0, 143, 107, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.cbar::after {
  display: none;
}

.cbars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.ci {
  text-align: left;
  padding: 36px 32px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 191, 143, 0.15);
  box-shadow: none;
  z-index: 1;
}

.ci::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 191, 143, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.ci::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 0 0 16px 16px;
  filter: none;
}

.ci:hover::before {
  opacity: 1;
}

.ci:hover::after {
  transform: scaleX(1);
}

.ci:hover {
  border-color: rgba(0, 191, 143, 0.4);
  box-shadow: 0 0 30px rgba(0, 191, 143, 0.1);
  transform: translateY(-6px);
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 143, 0.15),
    rgba(0, 143, 107, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ci:hover .ci-icon {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 191, 143, 0.3);
}

.cn {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  display: block;
  line-height: 1;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.ci:hover .cn {
  color: var(--green-light);
  -webkit-text-fill-color: var(--green-light);
  font-size: 44px;
}

.cl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.ci:hover .cl {
  color: rgba(255, 255, 255, 0.75);
}

.ci-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.ci-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* SERVICES GRID */
/* SERVICE BLOCK — image left, list right */
.sblock {
  display: flex;
  gap: 48px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.sblock-img {
  flex-shrink: 0;
  width: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-pale), var(--accent));
}

.sblock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sblock-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sitem {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  border-bottom: 1px solid transparent;
  background-image:
    linear-gradient(white, white),
    linear-gradient(to right, transparent, var(--border), transparent);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  text-decoration: none;
  transition: all 0.35s ease;
  border-radius: 16px;
  cursor: pointer;
}

.sitem:last-child {
  border-bottom: none;
}

.sitem:hover {
  background: var(--green-pale);
  transform: translateX(6px);
}

.sitem .sico {
  flex-shrink: 0;
  margin-bottom: 0;
}

.sitem-content {
  flex: 1;
  min-width: 0;
}

.sitem-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.sitem:hover .sitem-content h3 {
  color: var(--green);
}

.sitem-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.sitem:hover .sico {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(26, 107, 74, 0.25);
}

.sitem:hover .sico svg {
  stroke: white;
}

.lm {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Inter", sans-serif;
  padding: 0;
}

.lm:hover {
  gap: 14px;
}

/* SERVICE PAGE LAYOUT */
.srv-section {
  background: var(--white);
  padding: 80px 40px;
}

.srv-section.srv-alt {
  background: var(--offwhite);
}

.srv-wrap {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  max-width: 1140px;
  margin: 0 auto;
}

.srv-alt .srv-wrap {
  flex-direction: row-reverse;
}

.srv-img {
  flex-shrink: 0;
  width: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 50px rgba(0, 71, 62, 0.1);
}

.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}

.srv-content {
  flex: 1;
  min-width: 0;
}

.srv-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 40px;
}

/* SUB PILLS */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pill {
  background: var(--green-pale);
  color: var(--green);
  border: 1.5px solid transparent;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 107, 74, 0.15);
}

.pill:hover,
.pill.act {
  color: white;
  border-color: var(--green);
}

.pill.act {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 8px 20px rgba(26, 107, 74, 0.25);
}

.pill:hover::before {
  opacity: 1;
}

.sdet {
  background: white;
  border-radius: 14px;
  padding: 24px;
  margin-top: 6px;
  display: none;
  animation: slideDown 0.3s ease;
  border: 1.5px solid var(--green-pale);
}

.sdet.vis {
  display: block;
}

.sdet h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.sdet p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.sdet ul {
  padding-left: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sdet li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* STEPS */
.steps-s {
  background: linear-gradient(135deg, var(--dark), #0a2e1f);
  color: white;
  position: relative;
  overflow: hidden;
}

.steps-s::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 107, 74, 0.25) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

.stc {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sti .stn {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.stidot {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--accent), #a0d5b5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(26, 107, 74, 0.3);
}

.sti:hover .stidot {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 12px 32px rgba(26, 107, 74, 0.4);
}

.sti h3 {
  font-size: 21px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.sti:hover h3 {
  color: var(--accent);
}

.sti p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* ABOUT */
.ainner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.abf {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  padding: 28px 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 48px rgba(26, 107, 74, 0.35);
  animation: float 4s ease-in-out infinite;
}

.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
  /* darker fade, more opacity */
}

.content-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px;
  /* remove background overlay now that opacity is on image */
}

.abf .big {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 900;
  display: block;
}

.abf .sm {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.acl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.acl li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.acl li:hover {
  transform: translateX(6px);
  color: var(--green);
}

.acl li::before {
  content: "";
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, var(--green-pale), #d4e8dc);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='%231a6b4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.acl li:hover::before {
  background-color: var(--green);
  transform: scale(1.1);
}

/* WHY GRID */
.wgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.wcard {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.wcard::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 107, 74, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.wcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(26, 107, 74, 0.15);
}

.wcard:hover::before {
  opacity: 1;
}

.wnum {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.wcard:hover .wnum {
  font-size: 48px;
  color: var(--green-light);
}

.wcard h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.wcard p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* TEAM */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.tc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 107, 74, 0.08);
}

.tc:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(26, 107, 74, 0.18);
}

.tav {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: white;
  position: relative;
  overflow: hidden;
}

.tav::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tc:hover .tav::after {
  opacity: 1;
}

.tb {
  padding: 26px;
}

.tb h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.tc:hover .tb h3 {
  color: var(--green);
}

.tb .role {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

.tc:hover .tb .role {
  background: var(--green);
  color: white;
}

.tb p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.teb {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.teb:hover {
  gap: 12px;
}

/* MODAL */
.mo {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 24, 0.7);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.mo.open {
  display: flex;
}

.md {
  background: white;
  border-radius: 28px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mdh {
  padding: 40px 44px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.mav {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  font-family: "Montserrat", sans-serif;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(26, 107, 74, 0.25);
}

.mdt h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
}

.mdt .role {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.mdb {
  padding: 36px 44px;
}

.mdb p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 18px;
}

.mdb h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin: 24px 0 12px;
}

.mdb ul {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mdb li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.mc {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mc:hover {
  background: var(--green);
  transform: rotate(90deg);
  box-shadow: 0 6px 18px rgba(26, 107, 74, 0.2);
}

.mc svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  transition: stroke 0.3s;
}

.mc:hover svg {
  stroke: white;
}

/* MARQUEE ANIMATIONS */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeScrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* CLIENT IMAGES - MARQUEE */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.marquee-container.client-marquee {
  max-width: 1400px;
  margin: 0 auto;
}

.marquee-container.accreditation-marquee {
  max-width: 1400px;
  margin: 0 auto;
}

.marquee-content {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  width: fit-content;
  animation: marqueeScroll 60s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f8faf9;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(9, 41, 29, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.marquee-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 34px rgba(9, 41, 29, 0.13);
  border-color: var(--green-light);
}

.client-img-card,
.accreditation-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f8faf9;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(9, 41, 29, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.client-img-card:hover,
.accreditation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(9, 41, 29, 0.13);
  border-color: var(--green-light);
}

.client-img-card img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  min-width: 140px;
}

.accreditation-card img {
  display: block;
  width: 100%;
  height: 80px;
  object-fit: contain;
  padding: 12px;
  background: white;
  min-width: 140px;
}

/* TESTIMONIALS */
.tgrid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.tcard {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(26, 107, 74, 0.06);
  transition: all 0.35s;
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 107, 74, 0.12);
}

.tq {
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  color: var(--green-pale);
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}

.tcard > p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.tau {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tasv {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.tasv-img {
  object-fit: cover;
  border: 2px solid var(--green-pale);
}

.tname {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.trole {
  font-size: 12px;
  color: var(--muted);
}

.tstars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
}

/* CAREERS */
.ctop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  margin-bottom: 70px;
}

.wwgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.wwc {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wwc:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 107, 74, 0.12);
  border-color: var(--green-light);
}

.wwico {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-pale), #d4e8dc);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.wwc:hover .wwico {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  transform: scale(1.12);
}

.wwico svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  transition: stroke 0.3s ease;
}

.wwc:hover .wwico svg {
  stroke: white;
}

.wwc h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.wwc p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.obox {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(26, 107, 74, 0.08);
}

.obox h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.noo {
  background: linear-gradient(135deg, var(--green-pale), #d4e8dc);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  margin: 20px 0;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}

.noo:hover {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  transform: scale(1.02);
}

.noo span {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.noo p {
  font-size: 15px;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.3px;
}

.noo:hover p {
  color: white;
}

/* FORMS */
.fg {
  margin-bottom: 18px;
}

.fg label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background: white;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}

.fg input:hover,
.fg textarea:hover,
.fg select:hover {
  border-color: var(--green-light);
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 107, 74, 0.12);
  transform: translateY(-1px);
}

.fg textarea {
  resize: vertical;
  min-height: 120px;
  font-size: 14px;
  line-height: 1.6;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bsub {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(26, 107, 74, 0.25);
  position: relative;
  overflow: hidden;
}

.bsub::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.35s;
}

.bsub:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 107, 74, 0.35);
  letter-spacing: 0.5px;
}

.bsub:hover::before {
  left: 100%;
}

.bsub:active {
  transform: translateY(0);
}

.bsub-full {
  width: 100%;
}

/* CTA CONTACT */
.ctasec {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2e1f 100%);
  position: relative;
  overflow: hidden;
}

.ctasec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 107, 74, 0.12) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

.ctainn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cil {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cil li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.cil li:hover {
  color: white;
  transform: translateX(4px);
}

.cil li svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  flex-shrink: 0;
  fill: none;
  margin-top: 2px;
}

.cil a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.cil a:hover {
  color: var(--accent);
}

.cil a:hover {
  color: var(--accent);
}

.cf {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.cf h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-form-message {
  display: none;
  border-radius: 12px;
  padding: 12px 14px;
  margin: -8px 0 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-message.show {
  display: block;
}

.contact-form-message.is-success {
  background: #e8f8f0;
  color: #0c6a46;
  border: 1px solid #bfead6;
}

.contact-form-message.is-error {
  background: #fff2f2;
  color: #a32626;
  border: 1px solid #ffd3d3;
}

/* SUBSCRIBE */
.sub-bar {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.sub-bar p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.sub-bar form {
  display: flex;
  gap: 12px;
}

.sub-bar input {
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  width: 280px;
  outline: none;
  font-family: "Inter", sans-serif;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sub-bar input::placeholder {
  color: rgba(25, 25, 25, 0.5);
}

.sub-bar input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

.sub-bar button {
  padding: 12px 28px;
  background: rgba(15, 31, 24, 0.95);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Inter", sans-serif;
  box-shadow: 0 4px 12px rgba(15, 31, 24, 0.3);
  position: relative;
  overflow: hidden;
}

.sub-bar button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.35s;
}

.sub-bar button:hover {
  background: rgba(15, 31, 24, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 31, 24, 0.4);
}

.sub-bar button:hover::before {
  left: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wp-content-area {
  padding: 60px 0;
  line-height: 1.8;
}

.wp-content-area h1,
.wp-content-area h2,
.wp-content-area h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: var(--dark);
}

.wp-content-area p {
  margin-bottom: 1em;
  color: var(--text);
}

.wp-content-area ul,
.wp-content-area ol {
  margin-bottom: 1.5em;
  padding-left: 2em;
}

.wp-content-area li {
  margin-bottom: 0.5em;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 60px 36px;
}

.fgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 70px;
  margin-bottom: 60px;
}

.fb p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-brand-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}

.fsoc {
  display: flex;
  gap: 12px;
}

.sbtn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sbtn:hover {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(26, 107, 74, 0.3);
}

.sbtn svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.3s ease;
}

.sbtn:hover svg {
  fill: white;
}

.fc h4 {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fc a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* PAGE BANNER */
.pban {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2e1f 100%);
  padding: 140px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pban::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 107, 74, 0.12) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

.pban h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 1;
}

.pban p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.bc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.bc span {
  color: var(--accent);
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

.rvl {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.rvl.vis {
  opacity: 1;
  transform: translateX(0);
}

.rvr {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.rvr.vis {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: 0s;
}

.d2 {
  transition-delay: 0.1s;
}

.d3 {
  transition-delay: 0.2s;
}

.d4 {
  transition-delay: 0.3s;
}

.d5 {
  transition-delay: 0.4s;
}

.d6 {
  transition-delay: 0.5s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-50%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btt {
  position: fixed;
  bottom: 108px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 107, 74, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btt.show {
  opacity: 1;
  transform: translateY(0);
}

.btt:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26, 107, 74, 0.45);
}

.btt:active {
  transform: translateY(-2px);
}

.btt svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
  border: none;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-whatsapp__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.floating-whatsapp__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: inherit;
  display: none;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 16px;
    padding: 5px 10px 5px 5px;
    gap: 8px;
  }

  .floating-whatsapp__icon {
    width: 40px;
    height: 40px;
  }

  .floating-whatsapp__icon svg {
    width: 22px;
    height: 22px;
  }

  .floating-whatsapp__text {
    font-size: 13px;
  }

  .btt {
    right: 16px;
    bottom: 78px;
  }
}

@media (max-width: 480px) {
  .floating-whatsapp__text {
    font-size: 12px;
  }

  .btt {
    width: 44px;
    height: 44px;
    bottom: 74px;
  }
}

/* ================== Responsive adjustments ================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fbot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

body.nav-open {
  overflow: hidden;
}

iframe,
video,
table {
  max-width: 100%;
}

table {
  display: block;
  overflow-x: auto;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2000;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  margin: 5px 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
  nav,
  section,
  .pban,
  footer {
    padding-left: 36px;
    padding-right: 36px;
  }

  .hero {
    padding: 150px 36px 100px;
  }

  .fgrid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
  }

  .cbars {
    padding: 0 36px;
  }
}

@media (max-width: 992px) {
  nav {
    padding: 0 24px;
  }

  .hero {
    min-height: auto;
    padding: 130px 24px 80px;
  }

  .hero-c {
    max-width: 720px;
    width: 100%;
  }

  .hero-nav {
    width: 42px;
    height: 42px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .nav-links {
    gap: 16px;
  }

  .cbars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 0 24px;
  }

  .wgrid,
  .tgrid,
  .tgrid2,
  .stgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ainner,
  .ctop,
  .ctainn {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sblock {
    flex-direction: column;
  }

  .sblock-img {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    height: 320px;
  }

  .srv-wrap,
  .srv-alt .srv-wrap {
    flex-direction: column;
    gap: 24px;
  }

  .srv-img {
    width: 100%;
    position: static;
  }

  .srv-img img {
    aspect-ratio: 16 / 9;
  }

  .fgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .rvl > div {
    height: auto !important;
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 16px;
  }

  .hamburger {
    display: block;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-nav {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 16px 40px;
    gap: 24px;
    transition: left 0.35s ease;
    z-index: 1500;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .ddm {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    display: none;
    min-width: 100%;
    padding: 8px 0;
  }

  .ddm::before {
    display: none;
  }

  .nav-links li.show-dd .ddm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .nav-links li.show-dd .ddc svg {
    transform: rotate(180deg);
  }

  .ddm a {
    font-size: 15px;
    padding: 10px 12px;
  }

  .hero {
    padding: 110px 16px 56px;
    text-align: center;
  }

  .hero-c {
    margin: 0 auto;
    padding: 30px 22px;
  }

  .hero-nav {
    display: none;
  }

  .hbg1,
  .hbg2 {
    display: none;
  }

  .hbtns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hstats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  section {
    padding: 64px 16px;
  }

  .pban {
    padding: 112px 16px 56px;
  }

  .cbars {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .ci {
    padding: 28px 20px;
  }

  .sblock-img {
    height: 260px;
  }

  .sitem {
    padding: 20px 16px;
  }

  .sitem:hover {
    transform: translateX(0);
  }

  .pills {
    gap: 6px;
  }

  .pill {
    padding: 8px 12px;
    font-size: 12px;
  }

  .srv-section {
    padding: 56px 16px;
  }

  .st,
  .pban h1 {
    font-size: 34px;
  }

  .fgrid,
  .wgrid,
  .tgrid,
  .tgrid2,
  .stgrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fbot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ctasec {
    padding: 56px 16px !important;
  }

  .cf,
  .obox {
    padding: 24px;
    border-radius: 18px;
  }

  .md {
    border-radius: 18px;
  }

  .mdh,
  .mdb {
    padding: 22px;
  }
}

@media (max-width: 576px) {
  nav {
    height: 60px;
  }

  .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
    padding-top: 24px;
  }

  .nav-logo-image {
    height: 40px;
  }

  .hero {
    padding: 88px 12px 40px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero > div > p,
  .hero p {
    font-size: 15px;
  }

  .badge {
    font-size: 11px;
    padding: 7px 12px;
    letter-spacing: 0.08em;
  }

  .hbtns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-p,
  .btn-o {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hstats {
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
  }

  .snum {
    font-size: 28px;
  }

  .slbl {
    font-size: 12px;
  }

  section,
  .srv-section,
  footer,
  .ctasec {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .st,
  .pban h1 {
    font-size: 28px;
  }

  .ss {
    font-size: 14px !important;
  }

  .sub-bar {
    flex-direction: column;
    padding: 20px 12px;
    text-align: center;
  }

  .sub-bar form {
    flex-direction: column;
    width: 100%;
  }

  .sub-bar input,
  .sub-bar button {
    width: 100%;
    padding: 12px 16px;
  }

  .frow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fg input,
  .fg select,
  .fg textarea {
    font-size: 16px;
    padding: 12px;
  }

  .bsub {
    width: 100%;
    padding: 13px 16px;
  }

  .ci {
    padding: 22px 14px;
  }

  .cn {
    font-size: 32px;
  }

  .cl {
    font-size: 13px;
  }

  .sitem {
    gap: 12px;
    padding: 14px 12px;
  }

  .sitem-content h3 {
    font-size: 17px;
  }

  .sitem-content p {
    font-size: 13px;
  }

  .srv-img {
    height: 220px;
  }

  .srv-desc,
  .sdet p,
  .sdet li {
    font-size: 14px;
  }

  .footer-brand-logo {
    width: 170px;
  }

  .fbot-links {
    gap: 14px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 10px;
    bottom: 12px;
  }

  .btt {
    right: 12px;
    bottom: 72px;
  }
}

@media (max-width: 380px) {
  nav {
    height: 56px;
    padding: 0 10px;
  }

  .nav-links {
    top: 56px;
    height: calc(100vh - 56px);
  }

  .nav-logo-image {
    height: 36px;
  }

  .hero {
    padding: 80px 10px 34px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .badge {
    font-size: 10px;
    padding: 6px 10px;
  }

  .st,
  .pban h1 {
    font-size: 24px;
  }

  .sblock-img,
  .srv-img {
    height: 200px;
  }

  .content-wrap {
    padding: 24px;
  }

  .cf,
  .obox,
  .mdh,
  .mdb {
    padding: 16px;
  }

  .abf {
    padding: 10px 14px;
    bottom: -8px;
    right: -8px;
    border-radius: 10px;
  }

  .abf .big {
    font-size: 20px;
  }

  .abf .sm {
    font-size: 9px;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
    right: 8px;
    bottom: 10px;
  }

  .floating-whatsapp__icon {
    width: 24px;
    height: 24px;
  }
}
