* {
  box-sizing: border-box;
}

@font-face {
  font-display: swap;
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/google-sans-v69-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Google Sans";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/google-sans-v69-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/fonts/google-sans-v69-latin-700.woff2') format('woff2'); 
}

/* ----- Base ----- */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Google Sans, sans-serif;
  color: #163d2c;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  color: #163d2c;
}

h2 span {
  display: block;
  font-weight: 400;
}

p {
  line-height: 1.3;
}

.container {
  max-width: 1296px;
}

/* ----- Header ----- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: none;
  transition: background-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-nav {
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  display: block;
  max-height: 56px;
  width: auto;
}

.nav-list {
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  padding: 12px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.nav-list a:hover {
  color: #fff;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-nav__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  display: block;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 1220px) {
  .nav-list a {
    font-size: 14px;
  }
  .btn-primary.header-nav__cta {
    padding: 10px 16px;
    min-height: 44px;
  }
}

@media (max-width: 991px) {
  .header-nav {
    min-height: 64px;
    padding: 8px 0;
    gap: 14px;
  }

  .brand img {
    max-height: 46px;
  }

  .header-nav__cta {
    margin-left: auto;
    padding: 10px 16px;
    font-size: 13px;
    line-height: 1;
  }
}

@media (max-width: 575px) {
  .btn-primary.header-nav__cta {
    border-radius: 50px !important;
    padding: 13px !important;
  }
  .btn-primary.header-nav__cta::after {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .header-nav {
    gap: 10px;
  }

  .brand img {
    max-height: 40px;
  }

  .header-nav__cta {
    padding: 9px 12px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle span {
    width: 23px;
  }
}

/* ----- Buttons ----- */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 26px;
  border: 0;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.28s ease, color 0.28s ease;
}

.btn-primary::after,
.btn-secondary::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  transform: translateX(4px);
}

.btn-primary {
  color: #fff !important;
  background-color: #019934 !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px rgba(0, 168, 59, 0.15) !important;
}

.btn-primary::after {
  filter: invert(1);
}

.btn-primary:hover {
  color: #fff !important;
  background-color: #008f32 !important;
  box-shadow: 0 14px 28px rgba(0, 168, 59, 0.25) !important;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary.active {
  color: #fff !important;
  background-color: #007529 !important;
  border-color: transparent !important;
  box-shadow: 0 6px 14px rgba(0, 168, 59, 0.2) !important;
}

.btn-secondary {
  color: #000 !important;
  background-color: #a6dc0f !important;
  border-color: transparent !important;
  box-shadow: 0 8px 20px rgba(163, 217, 21, 0.15) !important;
}

.btn-secondary::after {
  filter: brightness(0);
}

.btn-secondary:hover {
  color: #0c2717 !important;
  background-color: #b2eb1c !important;
  box-shadow: 0 14px 28px rgba(163, 217, 21, 0.25) !important;
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary.active {
  color: #0c2717 !important;
  background-color: #92c213 !important;
  border-color: transparent !important;
  box-shadow: 0 6px 14px rgba(163, 217, 21, 0.2) !important;
}

.btn-small {
  font-size: 12px;
  min-height: 44px;
  padding: 8px 21px;
}

@media (max-width: 991px) {
  .btn-primary,
  .btn-secondary {
    min-height: 44px;
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* ----- Mobile Menu ----- */

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #019934;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

.mobile-menu {
  background: #f2fff0;
}

.mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu .offcanvas-body a:not(.btn) {
  padding: 14px 0;
  border-bottom: 1px solid #dfeee4;
  color: #163d2c;
  font-weight: 500;
}

.mobile-menu__list,
.mobile-menu__list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-menu__list .sub-menu {
  padding-left: 18px;
}

.nav-list .sub-menu {
  position: absolute;
  min-width: 220px;
  padding: 12px 18px;
  margin: 0;
  list-style: none;
  background: rgba(22, 61, 44, 0.98);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-list li {
  position: relative;
}

.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list .sub-menu a {
  width: 100%;
  padding: 8px 0;
}

/* ----- Hero Section ----- */

.hero-section {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f3529;
}

.hero-section__motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: droneFlight 12s ease-in-out infinite alternate;
}

.hero-section__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

.hero-section__content {
  position: relative;
  z-index: 3;
  padding-top: 108px;
}

.hero-section__text {
  max-width: 650px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@keyframes droneFlight {
  0% {
    transform: scale(1.08) translate(-1%, -1%);
  }
  100% {
    transform: scale(1.22) translate(1%, 1%);
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: 680px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 650px;
  }

  .hero-section__content {
    padding-top: 75px;
  }

  .hero-section__text {
    font-size: 16px;
  }
}

/* ----- Trust Strip ----- */

.trust-strip {
  background: #f2fff0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #163d2c;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-strip .btn-primary {
  white-space: nowrap;
}

.trust-item img {
  flex-shrink: 0;
  height: 16px;
  width: auto;
}

/* ----- Services Section ----- */

.service-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card__media {
  position: relative;
  overflow: hidden;
  height: 260px;
  background-color: #dceee2;
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card__body {
  position: relative;
  z-index: 2;
  padding: 22px 12px;
  text-align: center;
  background: #fff;
  transition: background-color 0.28s ease, color 0.28s ease;
}

.service-card:hover .service-card__body {
  background: #019934;
}

.service-card h3 {
  margin-bottom: 5px;
  color: #163d2c;
  font-size: 21px;
  font-weight: 700;
  transition: color 0.28s ease;
}

.service-card:hover h3 {
  color: #fff;
}

.service-card p {
  margin-bottom: 0;
  color: #565656;
  font-size: 16px;
  transition: color 0.28s ease;
}

.service-card:hover p {
  color: #f2fff0;
}

/* ----- Portfolio Section ----- */

.portfolio-section {
  background: linear-gradient(to bottom, #fff 0 43%, #f2fff0 43% 100%);
}

#portfolio-comparison {
  margin: 0 auto;
  cursor: ew-resize;
  user-select: none;
  border-radius: 16px;
}

#portfolio-img-after {
  pointer-events: none;
}

#portfolio-before-layer {
  inset: 0 auto 0 0;
  width: 50%;
}

#portfolio-div-line {
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
}

#portfolio-img-before {
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  pointer-events: none;
}

#portfolio-div-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.project-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  border-radius: 16px;
  background-color: #dceee2;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.project-card:hover .project-card__image {
  transform: scale(1.06);
}

.project-card--green {
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 1rem;
  background: #058b0ee6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s ease, visibility 0.55s ease;
  will-change: transform;
}

.project-card:hover .project-card__overlay,
.project-card:focus-visible .project-card__overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.project-card__overlay > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease 0.2s, transform 0.38s ease 0.2s;
}

.project-card:hover .project-card__overlay > *,
.project-card:focus-visible .project-card__overlay > * {
  opacity: 1;
  transform: translateY(0);
}

.project-card__overlay > span {
  font-size: 26px;
  font-weight: 700;
}

.project-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
}

.project-card__location i {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.project-card__location i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.project-card__location small {
  font-size: 16px;
  font-weight: 500;
}

.project-card__svg {
  margin-top: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover .project-card__svg,
.project-card:focus-visible .project-card__svg {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-card:focus-visible {
  outline: 3px solid #a6dc0f;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .project-card {
    aspect-ratio: auto;
    min-height: 190px;
  }
}

/* ----- Process Section ----- */

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  position: relative;
  text-align: center;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    #019934 0 8px,
    transparent 8px 22px
  );
  background-size: 44px 2px;
  animation: processDash 2.8s linear infinite;
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 40px;
  border-radius: 50%;
  color: #019934;
  background: #eee;
  font-size: 48px;
  font-weight: 700;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.process-step span:hover {
  color: #fff;
  background-color: #019934;
}

.process-step h3 {
  font-size: 21px;
  font-weight: 700;
  color: #163d2c;
}

.process-step p {
  color: #565656;
  font-size: 16px;
}

@keyframes processDash {
  to {
    background-position: 44px 0;
  }
}

@keyframes processPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(20, 64, 44, 0.06);
  }
  50% {
    box-shadow: 0 14px 34px rgba(8, 163, 65, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-line::before,
  .process-step span {
    animation: none;
  }
}

@media (max-width: 991px) {
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .process-line {
    grid-template-columns: 1fr;
  }
}

/* ----- Areas Section ----- */

.areas-section {
  background: #f2fff0;
}

.area-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.area-tags a {
  display: inline-block;
  padding: 16px 30px;
  font-size: 16px;
  color: #000;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  background: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.area-tags a:hover {
  background-color: #019934;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .area-tags a {
    padding: 14px 18px;
  }
}

/* ----- Reviews Section ----- */

/* ----- Contact Section ----- */

.contact-section {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

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

/* ----- Footer ----- */

.footer {
  color: #fff;
  background: #163d2c;
  padding: 60px 0 35px;
}

.footer .h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.footer p,
.footer a {
  color: #fff;
  text-decoration: none;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.2s ease-in-out;
}

.footer a:hover {
  color: #a7dc11;
}

.footer address li {
  margin-bottom: 12px;
}

.footer__phone {
  color: #a7dc11 !important;
  font-weight: 700;
  font-size: 20px;
}

.socials-footer {
  padding: 0;
  margin: 0;
}

.socials-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials-footer a svg {
  width: 34px;
  height: 34px;
  transition: all 0.3s ease-out;
}

.socials-footer a:hover svg {
  opacity: 0.6;
}

.copyright {
  border-top: 1px solid #4f665c;
  padding-top: 35px;
  margin-top: 35px;
}

@media (max-width: 991px) {
  .footer {
    color: #fff;
    background: #163d2c;
    padding: 30px 0 20px;
  }
  .footer__brand img {
    max-height: 70px;
  }
  .copyright {
    padding-top: 15px;
    margin-top: 15px;
  }
}

/* ----- Inner Page Hero ----- */

.inner-hero {
  min-height: 570px;
}

.inner-hero .hero-section__image {
  animation: none;
  transform: none;
}

.inner-hero #breadcrumbs {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.inner-hero #breadcrumbs .breadcrumb_last,
.inner-hero #breadcrumbs a:hover {
  color: #a6dc0f;
}

.inner-hero #breadcrumbs a {
  color: inherit;
}

@media (max-width: 991px) {
  .inner-hero {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .inner-hero {
    min-height: 500px;
  }

  .inner-hero #breadcrumbs {
    margin-bottom: 28px;
  }
}

/* ----- Contact Page ----- */

.contact-main {
  background: linear-gradient(180deg, #fff 0%, #fbfefb 100%);
}

.contact-info {
  padding-top: 22px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

a.contact-detail:hover {
  color: #163d2c;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-detail__icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #019934;
  background: #f2fff0;
}

.contact-detail__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail small,
.contact-detail strong {
  display: block;
}

.contact-detail small {
  margin-bottom: 3px;
  color: #718078;
  font-size: 13px;
}

.contact-detail strong {
  color: #163d2c;
  font-size: 16px;
  font-weight: 700;
}

.contact-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid #a6dc0f;
  color: #565656;
}

.contact-note strong {
  color: #163d2c;
}

/* ----- Contact Form 7 ----- */

.wpcf7-form {
  padding: 42px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  color: #163d2c;
  font-size: 14px;
  font-weight: 700;
}

.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #019934;
  border-radius: 16px;
  outline: none;
  color: #163d2c;
  background-color: #fbfdfb;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wpcf7-textarea {
  min-height: 135px;
  resize: vertical;
}

.wpcf7-select {
  padding-right: 46px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23163d2c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  cursor: pointer;
}

.wpcf7-form-control::placeholder {
  color: #98a29d;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #019934;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(1, 153, 52, 0.1);
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #68736d;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #019934;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.contact-form__footer > span:not(.wpcf7-spinner) {
  color: #718078;
  font-size: 13px;
}

.wpcf7-not-valid {
  border-color: #dc3545 !important;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 13px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-width: 1px;
  border-radius: 16px;
}

.wpcf7-spinner {
  margin: 0;
}

@media (max-width: 767px) {
  .wpcf7-form {
    padding: 26px 20px;
  }

  .contact-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form__footer .btn {
    width: 100%;
  }
}

/* ----- Contact Page: Service Areas, Map and Footer ----- */

.contact-service-area {
  background: #f2fff0;
}

.contact-service-area p {
  max-width: 470px;
  margin: 0;
  color: #565656;
  font-size: 18px;
  line-height: 1.5;
}

.contact-area-list {
  gap: 12px;
}

.contact-area-list.area-tags {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.contact-footer-socials {
  display: flex;
  gap: 8px;
}

.contact-footer-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-footer-socials a:hover {
  color: #163d2c;
  background: #a6dc0f;
  border-color: #a6dc0f;
}

@media (max-width: 991px) {
  .contact-info {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .contact-service-area p {
    font-size: 16px;
  }

  .contact-area-list.area-tags a {
    padding: 12px 14px;
    font-size: 14px;
  }
}

.contact-map {
  height: clamp(360px, 45vw, 520px);
  overflow: hidden;
  border-radius: 16px;
  background: #dceee2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- Bootstrap Modal ----- */

.modal .btn-close:focus,
.modal .btn-close:active {
  outline: 0;
  box-shadow: none;
}

/* ----- Blog ----- */

.blog-feature,
.blog-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.blog-feature__media,
.blog-card__media {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #dceee2;
}

.blog-feature__media {
  min-height: 440px;
}

.blog-feature__media img,
.blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-feature:hover .blog-feature__media img,
.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}

.blog-feature__body {
  padding: 46px;
}

.blog-feature__body h2 a,
.blog-card h3 a {
  color: #163d2c;
  transition: color 0.2s ease;
}

.blog-feature__body h2 a:hover,
.blog-card h3 a:hover {
  color: #019934;
}

.blog-feature__body p,
.blog-card p {
  color: #565656;
  line-height: 1.5;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  height: 240px;
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.blog-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-card p {
  margin-bottom: 22px;
}

.blog-card .blog-read-more {
  margin-top: auto;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  color: #718078;
  font-size: 14px;
}

.blog-meta span:first-child {
  padding: 7px 12px;
  border-radius: 16px;
  color: #163d2c;
  background: #f2fff0;
  font-weight: 700;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #019934;
  font-weight: 700;
}

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

.blog-read-more:hover {
  color: #007529;
}

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

.blog-cta,
.blog-related {
  background: #f2fff0;
}

.blog-cta p {
  color: #565656;
  font-size: 18px;
}

.blog-single-hero {
  min-height: 620px;
}

.blog-single-hero .hero-section__image {
  object-position: center 58%;
}

.blog-meta--light {
  color: rgba(255, 255, 255, 0.82);
}

.blog-meta--light span:first-child {
  color: #163d2c;
  background: #a6dc0f;
}

.blog-article p,
.blog-article li {
  color: #42564d;
  font-size: 18px;
  line-height: 1.75;
}

.blog-article__lead {
  color: #163d2c !important;
  font-size: 23px !important;
  font-weight: 500;
  line-height: 1.55 !important;
}

.blog-article h2 {
  margin: 48px 0 18px;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 700;
}

.blog-article figure {
  margin: 44px 0;
}

.blog-article figure img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

.blog-article figcaption {
  margin-top: 12px;
  color: #718078;
  font-size: 14px;
  text-align: center;
}

.blog-article blockquote {
  margin: 44px 0;
  padding: 30px 34px;
  border-left: 4px solid #a6dc0f;
  border-radius: 0 16px 16px 0;
  background: #f2fff0;
}

.blog-article blockquote p {
  margin: 0;
  color: #163d2c;
  font-size: 21px;
  font-weight: 500;
}

.blog-article__callout {
  margin-top: 52px;
  padding: 36px;
  border-radius: 16px;
  background: #f2fff0;
}

.blog-article__callout h2 {
  margin-top: 0;
}

.blog-share {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid #dfeee4;
  color: #718078;
}

.navigation.pagination {
  display: block;
  margin: 48px 0 0;
}

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

.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #dfeee4;
  border-radius: 16px;
  color: #163d2c;
  background: #fff;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus-visible,
.navigation.pagination .page-numbers.current {
  color: #fff;
  background: #019934;
  border-color: #019934;
}

.navigation.pagination .page-numbers.current {
  cursor: default;
}

.navigation.pagination .page-numbers.dots {
  min-width: auto;
  padding: 0 4px;
  border-color: transparent;
  background: transparent;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  padding: 0 20px;
}

@media (max-width: 991px) {
  .blog-feature__media {
    min-height: 340px;
  }

  .blog-feature__body {
    padding: 34px;
  }

  .blog-single-hero {
    min-height: 560px;
  }
}

@media (max-width: 767px) {
  .blog-feature__media,
  .blog-card__media {
    height: 230px;
    min-height: 0;
  }

  .blog-feature__body,
  .blog-card__body {
    padding: 24px 20px;
  }

  .blog-article p,
  .blog-article li {
    font-size: 16px;
  }

  .blog-article__lead {
    font-size: 19px !important;
  }

  .blog-article h2 {
    margin-top: 36px;
  }

  .blog-article blockquote,
  .blog-article__callout {
    padding: 24px 20px;
  }

  .navigation.pagination {
    margin-top: 36px;
  }

  .navigation.pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
  }

  .navigation.pagination .page-numbers.prev,
  .navigation.pagination .page-numbers.next {
    padding: 0 14px;
  }
}

/* ----- Services ----- */

.services-page .inner-hero {
  min-height: 650px;
}

.services-problem,
.services-work,
.services-areas {
  background: #f2fff0;
}

.services-grid > .container > .row:first-child p,
.services-work > .container > .row:first-child p {
  color: #565656;
  font-size: 18px;
  line-height: 1.5;
}

.services-grid .service-card__body {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: center;
}

.services-grid .service-card:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.services-grid .service-card:hover .service-card__body {
  background: #fff;
}

.services-grid .service-card:hover h3 {
  color: #163d2c;
}

.services-grid .service-card:hover p {
  color: #565656;
}

.services-grid .service-card__link {
  margin-top: auto;
  padding-top: 8px;
  padding-bottom: 8px;
}

.services-problem__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #dceee2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.services-problem__media {
  height: 430px;
}

.services-problem__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-problem p {
  color: #42564d;
  font-size: 20px;
  line-height: 1.6;
}

.services-areas {
  background: #fff;
}

@media (max-width: 991px) {
  .services-page .inner-hero {
    min-height: 620px;
  }

  .services-problem__media {
    height: 340px;
  }
}

@media (max-width: 767px) {
  .services-page .inner-hero {
    min-height: 660px;
  }

  .services-grid .service-card__body {
    min-height: 0;
  }

  .services-grid .service-card__link {
    margin-top: 18px;
  }

  .services-problem__media {
    height: 260px;
  }

  .services-problem p,
  .services-grid > .container > .row:first-child p,
  .services-work > .container > .row:first-child p {
    font-size: 16px;
  }
}

/* ----- Location Page ----- */

.location-page .inner-hero {
  min-height: 650px;
}

.location-page .services-areas {
  background: #f2fff0;
}

.location-services > .container > .row:first-child p {
  color: #565656;
  font-size: 18px;
  line-height: 1.5;
}

.location-services .service-card__media {
  height: 205px;
}

.location-services .service-card__body {
  min-height: 135px;
}

.location-services-cta p {
  color: #42564d;
  font-size: 18px;
}

.location-why {
  background: #f2fff0;
}

.faq-section {
  background: #fff;
}

.location-why__media {
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  background: #dceee2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.location-why__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-why p {
  color: #42564d;
  font-size: 18px;
  line-height: 1.6;
}

.location-checklist {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.location-checklist li {
  position: relative;
  padding-left: 34px;
  color: #163d2c;
  line-height: 1.45;
}

.location-checklist li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #019934;
  font-size: 13px;
  font-weight: 700;
}

.faq-section > .container > .row p {
  color: #565656;
}

.faq-section .accordion {
  display: grid;
  gap: 12px;
}

.faq-section .accordion-item {
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-section .accordion-button {
  padding: 22px 24px;
  color: #163d2c;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #019934;
  background: #fff;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.faq-section .accordion-button::after {
  filter: hue-rotate(75deg) saturate(2);
}

.faq-section .accordion-body {
  padding: 0 24px 24px;
  color: #565656;
  line-height: 1.6;
}

.location-mobile-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 990;
  padding: 13px 22px;
  border-radius: 50px;
  color: #fff;
  background: #019934;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.location-mobile-call:hover,
.location-mobile-call:focus {
  color: #fff;
  background: #007529;
}

@media (max-width: 991px) {
  .location-page .inner-hero {
    min-height: 620px;
  }

  .location-why__media {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .location-page .inner-hero {
    min-height: 660px;
  }

  .location-services .service-card__media {
    height: 230px;
  }

  .location-services .service-card__body {
    min-height: 0;
  }

  .location-services-cta p,
  .location-why p,
  .location-services > .container > .row:first-child p {
    font-size: 16px;
  }

  .location-why__media {
    height: 300px;
  }

  .faq-section .accordion-button {
    padding: 18px;
    font-size: 16px;
  }

  .faq-section .accordion-body {
    padding: 0 18px 20px;
  }

  .location-page .footer {
    padding-bottom: 84px;
  }
}

/* ----- Portfolio Page ----- */

.portfolio-page .inner-hero {
  min-height: 650px;
}

.portfolio-gallery > .container > .row:first-child p {
  color: #565656;
  font-size: 18px;
  line-height: 1.5;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.04);
}

.portfolio-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  background: #dceee2;
  cursor: pointer;
}

.portfolio-card__media img,
.portfolio-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__media img {
  transition: transform 0.5s ease;
}

.portfolio-card__media:hover img {
  transform: scale(1.04);
}

.portfolio-card__media--video {
  background: #163d2c;
}

.portfolio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #019934;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  transition: background-color 0.25s ease;
  cursor: pointer;
}

.portfolio-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.portfolio-play:hover,
.portfolio-play:focus-visible {
  background: #007529;
}

.portfolio-card__media:focus-visible {
  outline: 3px solid #a6dc0f;
  outline-offset: -3px;
}

.portfolio-lightbox .modal-dialog {
  max-width: min(1200px, calc(100% - 32px));
}

.portfolio-lightbox .modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0d1f17;
}

.portfolio-lightbox .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 1;
}

.portfolio-lightbox__image {
  display: block;
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

@media (max-width: 991px) {
  .portfolio-page .inner-hero {
    min-height: 620px;
  }
}

@media (max-width: 767px) {
  .portfolio-page .inner-hero {
    min-height: 660px;
  }

  .portfolio-gallery > .container > .row:first-child p {
    font-size: 16px;
  }

  .portfolio-play {
    width: 60px;
    height: 60px;
  }

  .portfolio-lightbox .modal-dialog {
    max-width: calc(100% - 20px);
    margin-right: auto;
    margin-left: auto;
  }
}
/*
Theme Name: Green Planet
Theme URI: https://greenplanet.com/
Author: Green Planet
Description: Custom WordPress theme for Green Planet Outdoor Services.
Version: 1.0.0
Text Domain: green-planet
*/
