/*
Theme Name: Hauptstadt Entsorger
Theme URI: https://hauptstadt-entsorger.de
Author: Hauptstadt Entsorger
Author URI: https://hauptstadt-entsorger.de
Description: Custom theme for Hauptstadt Entsorger - professional clearance and waste disposal services in Berlin.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hauptstadt-entsorger
*/

:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --heading-weight: 600;
  --heading-size: 40px;
  --subheading-size: 20px;
  --subheading-weight: 500;
  --body-font: 'Inter', sans-serif;
  --body-size: 18px;
  --body-weight: 400;
}

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

body {
  background-color: #FFF8F0;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
  transition: color 0.3s ease, transform 0.3s ease;
}

.tech__btn-icon .btn-arrow,
.solutions__btn-icon .btn-arrow {
  width: 14px;
  height: 14px;
}

.header__cta:hover .btn-arrow,
.banner__btn:hover .btn-arrow,
.focus__btn:hover .btn-arrow,
.about__btn:hover .btn-arrow,
.expert__btn:hover .btn-arrow,
.gallery__btn:hover .btn-arrow,
.appointment__btn:hover .btn-arrow,
.available-cta__btn:hover .btn-arrow,
.tech__btn:hover .btn-arrow,
.solutions__btn:hover .btn-arrow {
  transform: translateX(4px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}
h1{
	  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
	line-height: 50px;
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
}

h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
}

p {
 font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
}

.services__card-text,
.svc-grid__card-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* Header */
.header {
  width: 100%;
  background-color: transparent;
  padding: 20px 100px 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s, background-color 0.3s;
}

.allsection_wrapper {
  position: relative;
  width: 100%;
}

.header.scrolled {
  padding: 0;
  background-color: #ffffff;
}

.mobile-header.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header__container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 50px;
  padding: 12px 16px 12px 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 2px;
}

.header__logo-h {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: #276C03;
}

.header__logo-e {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: #FFA500;
}

.header__logo-icon {
  display: flex;
  align-items: center;
  margin-left: 2px;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.header__menu-item a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.3s;
}

.header__menu-item a:hover {
  color: #276C03;
}

.header__arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.header__arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

.header__menu-item--dropdown {
  position: relative;
}

.header__menu-item--dropdown.open .header__arrow {
  transform: rotate(180deg);
}

.header__dropdown {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px 0;
  min-width: 200px;
 
  margin-top: 12px;
  z-index: 100;
  list-style: none;
  transform: translateY(-8px);
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.header__menu-item--dropdown.open .header__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.header__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  color: #1a1a2e;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.header__dropdown li a:hover {
  background-color: #f5f5f5;
  color: #276C03;
}

.header__container {
  position: relative;
  transition: border-radius 0.25s ease;
}

.header__container:has(.header__menu-item--mega.open) {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.header__menu-item--mega {
  position: static;
}

.header__menu-item--dropdown.header__menu-item--mega .header__dropdown--mega {
  display: grid;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  min-width: 0;
  max-width: none;
  margin-top: 0;
  padding: 20px 24px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  transform: translateY(-8px);
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.header__menu-item--mega.open .header__dropdown--mega {
  display: grid;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.header__dropdown--mega li a {
/*   padding: 8px 10px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 6px; */
    padding: 8px 10px;
    font-size: 13px;
    white-space: normal;
    overflow: hidden;
    border-radius: 6px;
}

@media (max-width: 1280px) {
  .header__menu-item--dropdown.header__menu-item--mega .header__dropdown--mega {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.header__dropdown--mega li.header__dropdown-all a,
.header__dropdown li.header__dropdown-all a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background-color: #FFA500;
  padding: 12px 24px;
/*   border-radius: 30px; */
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.header__dropdown--mega li.header__dropdown-all a:hover,
.header__dropdown li.header__dropdown-all a:hover {
  background-color: #e69500;
  color: #fff;
  transform: translateY(-2px);
}

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

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background-color: #FFA500;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.header__cta:hover {
  background-color: #e69500;
  transform: translateY(-2px);
}

.header__hamburger {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1a1a2e;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.header__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Nav */
/* Mobile Header (visible on tablet/mobile only) */
.mobile-header {
  display: none;
}

/* Mobile Footer Nav (visible on tablet/mobile only) */
.mobile-footer {
  display: none;
}

.mobile-menu {
  display: none;
}

.banner {
  width: 100%;
  background-color: #223F0F;
  padding: 10rem 100px 80px;
}

.banner__container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.banner__image,
.banner__content {
  flex: 1;
  color: #fff;
}

.banner__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
      justify-content: center;
}

.banner__sub-heading {
  line-height: 30px;
  color: #FFA500;
  background-color: #fff;

    padding: 10px 24px;
  display: inline-block;
  border-radius: 30px;
}

.banner__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 70.44px;
  line-height: 79.25px;
}

.banner__text {
  line-height: 28px;
}

.focus_text {
  line-height: 28px;
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	line-height: 28px;
	color: #555;
}

.banner_text {
  line-height: 28px;
	font-family: 'Inter', sans-serif;
	font-size: 17px;
}
.banner_text {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner_text li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
}

.banner_text .check-icon {
    flex-shrink: 0;
    margin-top: 5px;
	color: #fff;
}
/* .banner__text li {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
} */

.banner_text i {
    color: #28a745;
    font-size: 14px;
}
.banner__badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.banner__badges img {
  width: 149px;
  height: 59px;
  background-color: #fff;
  border-radius: 40px;
  padding: 11px;
}

.banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


.focus_text {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus_text li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.focus_text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%23276C03' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.focus_text2 {
    list-style: none;
    padding: 0;
    margin: 0;
	color: #555;
	    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 28px;
}

.focus_text2 li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.focus_text2 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%23276C03' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}


.page-template-page-service-details .page-section-1 li,
.page-template-page-service-details .page-section-3 li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.page-template-page-service-details .page-section-1 li::before,
.page-template-page-service-details .page-section-3 li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%23276C03' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}



.page-template-page-service-details .page-section-2 h2{
	color: #fff;
}
/* Stats Section */
.stats {
  width: 100%;
  padding: 80px 100px;
  border-bottom: 0.8px solid #4442424D;
}

.stats__container {
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}

.stats__title {
  line-height: 50px;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.stats__text {
  line-height: 28px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 60px;
}

.stats__circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stats__circle {
  width: 180px;
  height: 180px;
  background-color: #223F0F;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px #FFF8F0, 0 0 0 10px #c8b98a4d;
}

.stats__number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  line-height: 1;
}

.stats__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin-top: 8px;
}

/* Video Banner Section */
.video-banner {
  width: 100%;
}

.video-banner__bg {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.subVideo .video-banner__video {
border-radius: 10px;
}
.video-banner__video {
  width: 100%;
  height: 746px;
  object-fit: cover;
  display: block;
}

.video-banner__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: #FFEDD5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.video-banner__pause {
  display: none;
}

.video-banner__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Process Section */
.process {
  width: 100%;
  padding: 80px 100px;
  overflow: hidden;
      border-bottom: 0.8px solid #4442424D;
}

.process--no-border {
  border-bottom: none;
}

.process__container {
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}

.process__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  border: none;
  padding: 10px 24px;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 16px;
}

.process__title {
  line-height: 50px;
  color: #1a1a2e;
  margin-bottom: 60px;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
    position: relative;
}
.page-template-page-about-php .process__steps::after {
    content: "";
    position: absolute;
    top: 27.1%;
    left: 0%;
    transform: translateY(0);
    width: 100%;
    height: 1px;
    z-index: -1;
    background: #0000004d;
}
.process__steps::after{
    content: "";
    position: absolute;
    top: 29%;
    left: 0%;
    transform: translateY(-57%);
    width: 100%;
    height: 1px;
    z-index: -1;
    background: #0000004d;
}
.process__step {
  flex: 1;
  max-width: 410px;
  text-align: center;
}

.process__circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid #ccc;
  margin: 0 auto 24px;
  position: relative;
  overflow: hidden;
}

.process__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  padding: 6px;
}

.process__badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background-color: #223F0F;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 1;
}

.process__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #999;
  padding-top: 100px;
  flex-shrink: 0;
  width: 60px;
  letter-spacing: -2px;
}

.process__step-title {
  color: #1a1a2e;
  margin-bottom: 8px;
}

.process__step-text {
  line-height: 28px;
  color: #555;
/*   max-width: 260px; */
  margin: 0 auto;
}

.process__watermark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 100px;
  color: transparent;
  -webkit-text-stroke: 1.5px #e0d5c5;
  margin-top: 60px;
  white-space: nowrap;
  user-select: none;
}

/* Focus Section */
.focus {
  width: 100%;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.focus__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
	align-items: center;
/*   align-items: flex-start; */
}

.focus__image {
  flex: 1;
     height: stretch;
    width: 100%;
}

.focus__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.focus__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.focus__title {
  line-height: 50px;
  color: #1a1a2e;
}

.focus__text {
  line-height: 28px;
  color: #555;
}

.focus__container--reverse {
  flex-direction: row-reverse;
}

.focus__link {
  color: #1a1a2e;
  text-decoration: underline;
}

.focus__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background-color: #276C03;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 8px;
  transition: background-color 0.3s, transform 0.3s;
}

.focus__btn:hover {
  background-color: #1e5502;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq {
  width: 100%;
  padding: 80px 100px;
  background-color: #223F0F1A;
}

.faq__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.faq__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.faq__sub-heading {
  color: #FFA500;
  background-color: #fff;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 30px;
}

.faq__title {
  line-height: 50px;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.faq__accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #1a1a2e;
  transition: background-color 0.3s, color 0.3s;
}

.faq__item--active .faq__question {
  background-color: #829961;
  color: #fff;
}

.faq__question:hover {
  background-color: #829961;
  color: #fff;
}

.faq__question:hover .faq__toggle {
  background-color: #fff;
  color: #829961;
}

.faq__toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #829961;
  color: #fff;
  flex-shrink: 0;
  transition: background-color 0.3s, color 0.3s;
}

.faq__item--active .faq__toggle {
  background-color: #fff;
  color: #829961;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item--active .faq__answer {
  max-height: fit-content;
  padding: 16px 20px;
}

.faq__answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #555;
}

.faq__right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.faq__images {
  width: 100%;
}

.faq__images img {
  width: 100%;
}

/* Appointment Section */
.appointment {
  width: 100%;
}

.appointment__bg {
  background: url('/wp-content/uploads/2026/05/bannerImage.png') center/cover no-repeat;
  position: relative;
  padding: 80px 100px;
}

.appointment__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(34, 63, 15, 0.7);
}

.appointment__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.appointment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.appointment__title {
  line-height: 52px;
  color: #fff;
}

.appointment__text {
  line-height: 28px;
  color: #ffffffcc;
}

.appointment__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background-color: #FFA500;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.appointment__btn:hover {
  background-color: #e69500;
  transform: translateY(-2px);
}

.appointment__form-wrap {
  flex: 1;
  background-color: #fff;
  border-radius: 16px;
  padding: 40px 32px;
}

.appointment__form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.appointment__form-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
}

.appointment__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.appointment__input-wrap {
  position: relative;
}

.appointment__input-wrap input,
.appointment__input-wrap textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 48px 14px 16px;
  outline: none;
  resize: none;
  background-color: #fff;
}

.appointment__input-wrap textarea {
  background-color: #f5f5f5;
}

.appointment__input-wrap input:focus,
.appointment__input-wrap textarea:focus {
  border-color: #223F0F;
}

.appointment__input-wrap svg {
  position: absolute;
  right: 16px;
  top: 14px;
}

.appointment__input-wrap--textarea svg {
  top: 14px;
}

.appointment__submit {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a2e;
  background-color: transparent;
  border: 2px solid #1a1a2e;
  border-radius: 30px;
  padding: 14px 32px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s, color 0.3s;
}

.appointment__submit:hover {
  background-color: #223F0F;
  color: #fff;
  border-color: #223F0F;
}

/* CTA Section */
.available-cta {
  width: 100%;
}

.available-cta__bg {
  background: url('/wp-content/uploads/2026/05/bannerImage.png') center/cover no-repeat;
  position: relative;
  padding: 80px 100px;
}

.available-cta__bg::before {
  content: '';
  position: absolute;
  inset: 0;
	    background: linear-gradient(90deg, #223F0FFC, #feca5700);
/*   background-color: rgba(34, 63, 15, 0.7); */
}

.available-cta__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.available-cta__content {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.available-cta__title {
  line-height: 52px;
  color: #fff;
}

.available-cta__text {
  line-height: 28px;
  color: #ffffffcc;
}

.available-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFA500;
  background-color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.available-cta__btn:hover {
  background-color: #FFA500;
  color: #fff;
  transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
  width: 100%;
  padding: 80px 100px;
  background-color: #F6F6F6;
}

.testimonials__container {
  max-width: 1350px;
  margin: 0 auto;
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.testimonials__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.testimonials__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 30px;
}

.testimonials__title {
  line-height: 50px;
  color: #1a1a2e;
}

.testimonials__nav {
  display: flex;
  gap: 12px;
}

.testimonials__prev,
.testimonials__next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.testimonials__prev {
  background-color: transparent;
  border: 2px solid #FFA500;
}

.testimonials__next {
  background-color: #FFA500;
  border: 2px solid #FFA500;
}

.testimonials__prev:hover {
  background-color: #fff3e0;
}

.testimonials__next:hover {
  background-color: #e69500;
}

.testimonials__card {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  width: 420px;
  height: 355px;
  position: relative;
  margin-top: 40px;
}

.testimonials__avatar {
  position: relative;
  display: inline-block;
  margin-top: -60px;
  margin-bottom: 16px;
}

.testimonials__avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.testimonials__quote {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #223F0F;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.testimonials__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.testimonials__review {
  line-height: 24px;
  color: #555;
  margin-bottom: 16px;
}

.testimonials__stars {
  color: #FFA500;
  font-size: 18px;
  letter-spacing: 4px;
}

/* Testimonials – dark variant (about page) */
.testimonials--dark {
  background-color: #223F0F;
}

.testimonials--dark .testimonials__title {
  color: #ffffff;
}

.testimonials--dark .testimonials__prev {
  background-color: transparent;
  border-color: #ffffff;
}

.testimonials--dark .testimonials__prev:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.testimonials--dark .testimonials__prev svg path {
  stroke: #ffffff;
}

.testimonials--dark .testimonials__next {
  background-color: #ffffff;
  border-color: #ffffff;
}

.testimonials--dark .testimonials__next:hover {
  background-color: #f0f0f0;
}

.testimonials--dark .testimonials__next svg path {
  stroke: #223F0F;
}

/* Gallery Section */
.gallery {
  width: 100%;
  padding: 80px 100px;
}

.gallery__container {
  max-width: 1350px;
  margin: 0 auto;
}

.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.gallery__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 30px;
}

.gallery__title {
  line-height: 50px;
  color: #1a1a2e;
}

.gallery__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background-color: #276C03;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.3s, transform 0.3s;
}

.gallery__btn:hover {
  background-color: #1e5502;
  transform: translateY(-2px);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
}

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

.gallery__item--1 {
  grid-column: 1;
  grid-row: 1;
}

.gallery__item--2 {
  grid-column: 2;
  grid-row: 1;
}

.gallery__item--3 {
  grid-column: 3;
  grid-row: 1;
}

.gallery__item--4 {
  grid-column: 1 / -1;
  grid-row: 2;
  max-height: 350px;
}

/* Expert Section */
.expert {
  width: 100%;
  background-color: #223F0F;
  padding: 120px 100px;
}

.expert__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.expert__image {
  flex: 1;
}

.expert__image-frame {
  position: relative;
  border: 10px solid #ffffff;
  border-radius: 16px;
  padding: 20px 20px 40px 0;
  top: 20px;
  right: -40px;
  width: 510px;
  height: 624px;
}

.expert__image-frame img {
  width: 500px;
  border-radius: 12px;
  display: block;
  position: relative;
  height: 624px;
  top: -75px;
  left: -45px;
  object-fit: cover;
}

.expert__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.expert__title {
  line-height: 52px;
  color: #fff;
}

.expert__text {
  line-height: 28px;
  color: #ffffffcc;
}

.expert__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background-color: #FFA500;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.expert__btn:hover {
  background-color: #e69500;
  transform: translateY(-2px);
}

.expert__features {
  display: flex;
  gap: 0;
  background-color: #fff;
  border-radius: 12px;
  margin-top: 12px;
  align-self: stretch;
}

.expert__feature {
  flex: 1;
  padding: 24px;
}

.expert__feature:first-child {
  border-right: 1px solid #e0e0e0;
}

.expert__feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a2e;
  margin: 10px 0 6px;
}

.expert__feature-text {
  line-height: 28px;
  color: #555;
}

/* About Section */
.about {
  width: 100%;
  background-color: #223F0F;
  padding: 80px 100px;
}

.about__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.about__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__sub-heading {
  line-height: 24px;
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 30px;
  align-self: flex-start;
}

.about__title {
  line-height: 50px;
  color: #fff;
}

.about__left-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.about__middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: end;
}

.about__info + .about__info {
  border-top: 1px solid #FFFFFF80;
  padding-top: 24px;
}

.about__info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.about__info-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.about__info-text {
  line-height: 28px;
  color: #ffffffcc;
}

.banner__btn{
      display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background-color: #FFA500;
      padding: 17px 28px;
  border-radius: 30px;
  text-decoration: none;
  align-self: flex-start;
  transition: background-color 0.3s, transform 0.3s;
  
}

.banner__btn:hover {
  background-color: #e69500;
  transform: translateY(-2px);
}

.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background-color: #286D04;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 8px;
  transition: background-color 0.3s, transform 0.3s;
}

.about__btn:hover {
  background-color: #1e5502;
  transform: translateY(-2px);
}

.about__right {
  flex: 1.2;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about__right-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #FFA500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Services Section */
.services {
  width: 100%;
  padding: 80px 100px;
}

.services__container {
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}

.services__sub-heading {
    color: #FFA500;
    background-color: #FFEDD5;
    padding: 10px 24px;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 16px;
}

.services__title {
  line-height: 50px;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.services__text {
  line-height: 28px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 48px;
}

.services__slider {
  padding-bottom: 50px;
}

.services__card {
  background-color: #EFEDDD;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
  height: 377px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services__card:hover {
  background-color: #223F0F;
}

.services__icon {
  width: 50px;
  height: 50px;
  background-color: #FFA500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  transition: background-color 0.3s, color 0.3s;
}

.services__card:hover .services__icon {
  background-color: #fff;
  color: #223F0F;
}

.services__card-title {
  line-height: 30px;
  color: #1a1a2e;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.services__card:hover .services__card-title {
  color: #fff;
}

.services__card-text {
  line-height: 24px;
  color: #555;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.services__card:hover .services__card-text {
  color: #ffffffcc;
}

.services__link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1a1a2e;
  text-decoration: auto;
  transition: color 0.3s;
}

.services__link .btn-arrow {
  position: relative;
  left: 10px;
  top: 3px;
  color: currentColor;
  transition: color 0.3s ease, transform 0.3s ease;
}

.services__card:hover .services__link,
.services__card:hover .services__link .btn-arrow {
  color: #FFA500;
}

.services__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #223F0F;
  opacity: 0.4;
}

.services__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}

/* Footer */
.footer {
  width: 100%;
  background-color: #223F0F;
  padding: 80px 100px 0;
}

.footer__container {
  max-width: 1350px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #ffffff30;
}

.footer__brand {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__desc {
  line-height: 28px;
  color: #ffffffcc;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2e5a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.footer__social:hover {
  background-color: #FFA500;
}

.footer__col {
  flex: 1;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links li a {
  font-family: var(--body-font);
  font-size: 14px;
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__links li a:hover {
  color: #FFA500;
}

.footer__subscribe-text {
  line-height: 28px;
  color: #ffffffcc;
  margin-bottom: 16px;
}

.footer__subscribe-form {
  display: flex;
  align-items: center;
  background-color: #2e5a1a;
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 12px;
}

.footer__subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-family: var(--body-font);
  font-size: 14px;
  color: #fff;
}

.footer__subscribe-form input::placeholder {
  color: #ffffffaa;
}

.footer__subscribe-form button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFA500;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer__subscribe-form button:hover {
  background-color: #e69500;
}

.footer__checkbox {
  font-family: var(--body-font);
  font-size: 12px;
  color: #ffffffcc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__checkbox input {
  accent-color: #FFA500;
}

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

.footer__bottom p {
  font-family: var(--body-font);
  font-size: 14px;
  color: #ffffffcc;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-family: var(--body-font);
  font-size: 14px;
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__bottom-links a:hover {
  color: #FFA500;
}

/* About Banner Section (shared across inner pages) */
.about-banner {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 100px 0;
  overflow: hidden;
}

/* Per-page background images */
.about-banner--about {
  background-image: url('/wp-content/uploads/2026/05/about_bg.webp');
}

.about-banner--service {
  background-image: url('/wp-content/uploads/2026/05/our_service.webp');
}

.about-banner--service-single {
  background-image: url('/wp-content/uploads/2026/05/service_details.webp');
}

.about-banner--contact {
  background-image: url('/wp-content/uploads/2026/05/contact_page.webp');
}

.about-banner--city {
  background-image: url('/wp-content/uploads/2026/05/city_banner.webp');
  align-items: center;
  height: 800px;
}

.about-banner--city .about-banner__card {
  background-color: transparent;
  color: #ffffff;
  text-align: left;
  align-items: flex-start;
  border-radius: 0;
  padding: 0;
  max-width: 720px;
}

.about-banner--city .about-banner__title {
  color: #ffffff;
}

.about-banner__text {
  line-height: 1.6;
  color: #ffffff;
}

.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 63, 15, 0.15) 0%, rgba(34, 63, 15, 0.35) 100%);
  pointer-events: none;
}

.about-banner__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
}

.about-banner__card {
  background-color: #223F0F;
  border-radius: 20px 20px 0 0;
  padding: 32px 48px;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
}
.about-banner__card ul{
	gap: 10px;
}
.about-banner__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.about-banner__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.about-banner__crumb {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-banner__crumb:hover {
  color: #FFA500;
}

.about-banner__crumb--current {
  color: #FFA500;
}

.about-banner__sep {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

/* Solutions Section */
.solutions {
  width: 100%;
  padding: 80px 100px;
}

.solutions__container {
  max-width: 1350px;
  margin: 0 auto;
}

.solutions__main {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.solutions__image {
  flex: 1;
  position: relative;
  align-self: stretch;
  border-radius: 12px;
}

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

.solutions__badge {
  position: absolute;
  top: -25px;
  right: -20px;
  background-color: #223F0F;
  color: #ffffff;
  padding: 24px 28px;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
}

.solutions__badge-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}

.solutions__badge-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
}

.solutions__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.solutions__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 8px 22px;
  display: inline-block;
  border-radius: 30px;
}

.solutions__title {
  line-height: 1.25;
  color: #1a1a2e;
}

.solutions__text {
  line-height: 1.7;
  color: #555;
}

.solutions__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  background-color: #223F0F;
  padding: 12px 14px 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 4px;
}

.solutions__btn:hover {
  background-color: #1a3309;
  transform: translateY(-2px);
}

.solutions__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #FFA500;
}

.solutions__features {
  display: flex;
  gap: 60px;
  margin-top: 48px;
}

.solutions__feature {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.solutions__feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: #FFA500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solutions__feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.solutions__feature-text {
  line-height: 1.6;
  color: #555;
}

/* Quality Section */
.quality {
  width: 100%;
  background-color: #223F0F;
  padding: 80px 100px 0;
  height: 923px;
  margin-bottom: 15rem;
}

.quality__container {
  max-width: 1350px;
  margin: 0 auto;
}

.quality__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 8px 22px;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 24px;
}

.quality__header {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.quality__title {
  flex: 1;
  line-height: 1.25;
  color: #ffffff;
}

.quality__text {
  flex: 1;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.quality__stats {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 50px;

}

.quality__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  width: 308px;
  transform: rotate(0deg);
  opacity: 1;
  border-radius: 18px;
  background: #FFFFFF38;
  padding: 30px 0;
}

.quality__stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: #FFA500;
}

.quality__stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}

.quality .video-banner__bg {
  border-radius: 16px;
  /* overflow: hidden; */
}

.quality .video-banner__video {
  height: 600px;
}

/* Service Grid Section */
.svc-grid {
  width: 100%;
  padding: 80px 100px;
}

.svc-grid__container {
  max-width: 1350px;
  margin: 0 auto;
}

.svc-grid__header {
  text-align: center;
  margin-bottom: 56px;
}

.svc-grid__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 8px 22px;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 20px;
}

.svc-grid__title {
  line-height: 1.25;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.svc-grid__text {
  line-height: 1.7;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
}

.svc-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-grid__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.svc-grid__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: #FFA500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.svc-grid__card-title {
  color: #1a1a2e;
  margin-bottom: 10px;
}

.svc-grid__card-text {
  line-height: 1.6;
  color: #666;
}

/* Service Detail Section */
.svc-detail {
  width: 100%;
  padding: 80px 100px;
}

.svc-detail__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.svc-detail__image {
  flex: 2;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

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

.svc-detail__sidebar {
  flex: 1;
  background-color: #FFEDD5;
  border-radius: 12px;
    padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-detail__sidebar-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #1a1a2e;
}

.svc-detail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 0;
  margin: 0;
}

.svc-detail__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: #ffffff;
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.svc-detail__link:hover {
  background-color: #276C03;
  color: #ffffff;
}

.svc-detail__link--active {
  background-color: #276C03;
  color: #ffffff;
}

.svc-detail__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Service Info Section */
.svc-info {
  width: 100%;
  padding: 40px 100px 80px;
}

.svc-info__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.svc-info__content {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-info__title {
  line-height: 1.25;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.svc-info__text {
  line-height: 1.7;
  color: #333;
}

.svc-info__list {
  list-style: disc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.svc-info__list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.svc-info__contact {
  flex: 1;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.svc-info__contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.svc-info__contact-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(34, 63, 15, 0.7);
  z-index: 1;
}

.svc-info__contact-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.svc-info__contact-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  color: #ffffff;
}

.svc-info__contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #FFA500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
}

.svc-info__contact-icon:hover {
  background-color: #e69500;
  transform: scale(1.05);
}

.svc-info__contact-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.svc-info__contact-phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
}

/* Service Why-Choose Section */
.svc-why {
  width: 100%;
  padding: 40px 100px 80px;
}

.svc-why__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.svc-why__image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
}

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

.svc-why__content {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-why__title {
  line-height: 1.2;
  color: #1a1a2e;
}

.svc-why__text {
  line-height: 1.7;
  color: #555;
}
.page-section ul{
	list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
 
}
.page-template-page-city .banner__btn{
	    margin: 2rem 0 0;
}
.page-template-page-city .page-section li::before {
/*     content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2328a745'%3E%3Cpath d='M20.285 6.709a1 1 0 0 1 0 1.414l-10 10a1 1 0 0 1-1.414 0l-5-5a1 1 0 1 1 1.414-1.414L9.5 15.914l9.293-9.293a1 1 0 0 1 1.492.088z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain; */
	
	
	content: "";
width: 20px;
height: 20px;
flex-shrink: 0;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23276C03'/%3E%3Cpath d='M17.5 8.5L10.5 15.5L6.5 11.5' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
background-size: contain;
}
.page-section li{
	    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}
.page-section{
    gap: 0.7rem;
    display: grid;	
}
.svc-why__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-why__list li {
  position: relative;
  padding-left: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
}

.svc-why__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%23276C03' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Service Why – CTA card */
.svc-why__cta {
  width: 100%;
  margin: 16px 0 0;
  background-color: #ffffff;
  border: 1px solid #FFEDD5;
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(34, 63, 15, 0.06);
}

.svc-why__cta-info {
  display: flex;
/*   align-items: center; */
  gap: 18px;
  flex: 1 1 320px;
}

.svc-why__cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFA500 0%, #276C03 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(39, 108, 3, 0.25);
}

.svc-why__cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #1a1a2e;
  margin: 0 0 4px;
}

.svc-why__cta-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #888;
  margin: 0;
}

.svc-why__cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  flex-shrink: 0;
}

.svc-why__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  background-color: #223F0F;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.svc-why__cta-btn:hover {
  background-color: #1a3309;
  transform: translateY(-2px);
}

.svc-why__cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #276C03;
  background-color: #ffffff;
  border: 1.5px solid #FFEDD5;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.svc-why__cta-phone svg {
  color: #FFA500;
}

.svc-why__cta-phone:hover {
  border-color: #FFA500;
  color: #1f5602;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .svc-why__cta {
    padding: 22px;
    gap: 20px;
  }

  .svc-why__cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .svc-why__cta-btn,
  .svc-why__cta-phone {
    justify-content: center;
  }
}

.svc-why__brochure {
  flex: 1;
  background-color: #FFEDD5;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: flex-start;
}

.svc-why__brochure-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a2e;
}

.svc-why__brochure-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.svc-why__brochure-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.svc-why__brochure-text {
  line-height: 1.6;
  color: #555;
}

.svc-why__brochure-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #276C03;
  text-decoration: underline;
  align-self: flex-start;
  transition: color 0.3s;
}

.svc-why__brochure-link:hover {
  color: #1f5602;
}

/* Contact Map Section */
.contact-map {
  width: 100%;
  line-height: 0;
}

.contact-map__frame {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/* Contact Section */
.contact {
  width: 100%;
  padding: 80px 100px;
}

.contact__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.contact__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 8px 22px;
  display: inline-block;
  border-radius: 30px;
}

.contact__title {
  line-height: 1.2;
  color: #1a1a2e;
}

.contact__text {
  line-height: 1.7;
  color: #555;
}

.contact__details {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #FFA500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__detail-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a2e;
}

.contact__detail-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #1a1a2e;
/*   text-decoration: underline; */
  transition: color 0.3s;
}

.contact__detail-link:hover {
  color: #276C03;
}

.contact__detail-value {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

a.contact__detail-value:hover {
  color: #276C03;
}

.contact__form {
  flex: 1;
  background-color: #FFEDD5;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form-row {
  display: flex;
  gap: 16px;
}

.contact__form-row .contact__input {
  flex: 1;
}

.contact__input {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #1a1a2e;
  background-color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 16px 20px;
  outline: none;
  width: 100%;
  transition: box-shadow 0.2s;
}

.contact__input::placeholder {
  color: #999;
}

.contact__input:focus {
  box-shadow: 0 0 0 2px #FFA500;
}

.contact__textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Inter', sans-serif;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  background-color: #276C03;
  border: 0;
  border-radius: 30px;
  padding: 16px 28px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 4px;
}

.contact__submit:hover {
  background-color: #1f5602;
  transform: translateY(-2px);
}

.contact__submit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tech / Modern Equipment Section */
.tech {
  width: 100%;
  padding: 80px 100px;
  background: linear-gradient(135deg, rgba(229, 238, 219, 0.5) 0%, #FFFFFF 100%);
}

.tech__container {
  max-width: 1350px;
  margin: 0 auto;
}

.tech__header {
/*   text-align: center; */
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.tech__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 6px 18px;
  border-radius: 30px;
}

.tech__title {
  line-height: 1.3;
  color: #1a1a2e;
}

.tech__text {
  line-height: 1.6;
  color: #555;
  max-width: 620px;
}

.tech__body {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.tech__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.tech__card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.tech__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #276C03;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech__card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tech__card-title {
  color: #1a1a2e;
}

.tech__card-text {
  line-height: 1.55;
  color: #555;
}

.tech__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background-color: #276C03;
  padding: 10px 12px 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 8px;
}

.tech__btn:hover {
  background-color: #1f5602;
  transform: translateY(-2px);
}

.tech__btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFA500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tech__image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

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

/* Team Section */
.team {
  width: 100%;
  padding: 80px 100px;
}

.team__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: center;
}

.team__image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  align-self: stretch;
}

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

.team__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.team__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 6px 18px;
  border-radius: 30px;
}

.team__title {
  line-height: 1.3;
  color: #1a1a2e;
}

.team__text {
  line-height: 1.6;
  color: #555;
}

.team__features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.team__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.team__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #276C03;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.team__feature-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team__feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a2e;
}

.team__feature-text {
  line-height: 1.55;
  color: #555;
}

/* Coverage Areas Section */
.coverage {
  width: 100%;
  padding: 80px 100px;
}

.coverage__container {
  max-width: 1350px;
  margin: 0 auto;
}

.coverage__header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.coverage__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 6px 18px;
  border-radius: 30px;
}

.coverage__title {
  line-height: 1.25;
  color: #1a1a2e;
}

.coverage__text {
  line-height: 1.6;
  color: #555;
  max-width: 620px;
}

.coverage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.coverage__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.coverage__card2 {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
/*   flex-direction: column; */
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.coverage__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.coverage__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #E5EEDB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.coverage__card-title {
  color: #1a1a2e;
}

.coverage__card-text {
  line-height: 1.55;
  color: #666;
  flex: 1;
}

.coverage__card-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #276C03;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
/*   margin-top: 4px; */
  transition: color 0.3s, gap 0.3s;
}

.coverage__card-link:hover {
  color: #1f5602;
  gap: 10px;
}

.coverage__footer {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.coverage__footer-text {
  color: #555;
}

.coverage__footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #276C03;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, gap 0.3s;
}

.coverage__footer-link:hover {
  color: #1f5602;
  gap: 12px;
}
/* .page-section-1 p {
    color: #fff !important;
} */

.page-template-page-service-details .page-section-1 li,
.page-template-page-service-details .page-section-3 li {
    color: #555 !important;
}
/* Specialized Services Section */
.specialized {
  width: 100%;
  padding: 80px 100px;
  background-color: #FAFAF8;
}
.page-template-page-city .about-banner__card{
       padding: 3rem 0 0;
    position: relative;
    top: 1rem;
}
.page-template-page-city .page-section-1 li {
    color: #fff !important;
}
.page-template-page-city .page-section-1 p {
    color: #fff !important;
}

.page-template-page-service-details .page-section-2 p{
	color: #fff;
}
.specialized__container {
  max-width: 1350px;
  margin: 0 auto;
}

.specialized__header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.specialized__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 6px 18px;
  border-radius: 30px;
}

.specialized__title {
  line-height: 1.25;
  color: #1a1a2e;
}

.specialized__text {
  line-height: 1.6;
  color: #555;
  max-width: 620px;
}

.specialized__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.specialized__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.specialized__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.specialized__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #FFA500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.specialized__card-title {
  color: #1a1a2e;
}

.specialized__card-text {
  line-height: 1.6;
  color: #555;
}

.specialized__list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
}

.specialized__list li {
  position: relative;
  padding-left: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.specialized__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23276C03' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.specialized__link {
  margin-top: auto;
  padding-top: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #276C03;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s, gap 0.3s;
}

.specialized__link:hover {
  color: #1f5602;
  gap: 10px;
}

/* Trusted / Why Choose Us Section */
.trusted {
  width: 100%;
  background-color: #223F0F;
  padding: 80px 100px;
}

.trusted__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.trusted__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.trusted__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 6px 18px;
  border-radius: 30px;
}

.trusted__title {
  line-height: 1.2;
  color: #ffffff;
}

.trusted__text {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.trusted__features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trusted__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 18px;
}

.trusted__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trusted__feature-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trusted__feature-title {
  color: #ffffff;
}

.trusted__feature-text {
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.trusted__visual {
  flex: 1;
  position: relative;
  align-self: stretch;
  display: flex;
}

.trusted__image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

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

.trusted__stat {
  position: absolute;
  bottom: 24px;
  left: -32px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  min-width: 200px;
}

.trusted__stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1a1a2e;
  line-height: 1;
}

.trusted__stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #555;
}

/* Quote Section */
.quote {
  width: 100%;
  background-color: #223F0F;
  padding: 60px 100px 80px;
}

.quote__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.quote__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
}

.quote__title {
  line-height: 1.2;
  color: #ffffff;
}

.quote__text {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.quote__contacts {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote__contact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 18px;
}

.quote__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote__contact-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote__contact-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
}

.quote__contact-meta {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.quote__contact-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  margin-top: 2px;
  transition: color 0.3s;
}

a.quote__contact-value:hover {
  color: #FFA500;
}

.quote__form {
  flex: 1;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.quote__form-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}

.quote__form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a2e;
}

.quote__form-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #777;
}

.quote__form-row {
  display: flex;
  gap: 14px;
}

.quote__form-row .quote__field {
  flex: 1;
}

.quote__field {
  position: relative;
}

.quote__field input,
.quote__field select,
.quote__field textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1a1a2e;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 13px 40px 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote__field textarea {
  resize: vertical;
  min-height: 96px;
  font-family: 'Inter', sans-serif;
}

.quote__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
}

.quote__field input::placeholder,
.quote__field textarea::placeholder {
  color: #999;
}

.quote__field input:focus,
.quote__field select:focus,
.quote__field textarea:focus {
  border-color: #276C03;
  box-shadow: 0 0 0 2px rgba(39, 108, 3, 0.12);
}

.quote__field-icon {
  position: absolute;
  right: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.quote__field--textarea .quote__field-icon {
  top: 14px;
}

.quote__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  background-color: #276C03;
  border: 0;
  border-radius: 10px;
  padding: 15px 24px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 6px;
}

.quote__submit:hover {
  background-color: #1f5602;
  transform: translateY(-2px);
}

.quote__submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote__legal {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 4px;
}

/* About Berlin Section */
.about-berlin {
  width: 100%;
  padding: 80px 100px;
}

.about-berlin__container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.about-berlin__content {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.about-berlin__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 6px 18px;
  border-radius: 30px;
}

.about-berlin__title {
  line-height: 1.25;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.about-berlin__text {
  line-height: 1.7;
  color: #444;
}

.about-berlin__facts {
  flex: 1;
  background-color: #E5EEDB4D;
  border: 1px solid #335E2633;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-berlin__facts-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a2e;
}

.about-berlin__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.about-berlin__fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #335E2633;
}

.about-berlin__fact:last-child {
  border-bottom: 0;
}

.about-berlin__fact:first-child {
  padding-top: 0;
}

.about-berlin__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: #276C03;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-berlin__fact-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-berlin__fact-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a2e;
}

.about-berlin__fact-text {
  line-height: 1.55;
  color: #555;
}

/* Regulations Section */
.regulations {
  width: 100%;
  padding: 80px 100px;
}

.regulations__container {
  max-width: 1350px;
  margin: 0 auto;
}

.regulations__header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.regulations__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 6px 18px;
  border-radius: 30px;
}

.regulations__title {
  line-height: 1.25;
  color: #1a1a2e;
}

.regulations__text {
  line-height: 1.6;
  color: #555;
  max-width: 680px;
}

.regulations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.regulations__card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.regulations__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

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

.regulations__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #E5EEDB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.regulations__card-title {
  color: #1a1a2e;
}

.regulations__card-text {
  line-height: 1.6;
  color: #555;
}

.regulations__list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.regulations__list li {
  position: relative;
  padding-left: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #444;
}

.regulations__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23276C03' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Districts Section */
.districts {
  width: 100%;
  padding: 80px 100px;
}

.districts__container {
  max-width: 1350px;
  margin: 0 auto;
}

.districts__header {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.districts__sub-heading {
  color: #FFA500;
  background-color: #FFEDD5;
  padding: 6px 18px;
  border-radius: 30px;
}

.districts__title {
  line-height: 1.25;
  color: #1a1a2e;
}

.districts__text {
  line-height: 1.6;
  color: #555;
  max-width: 620px;
}

.districts__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.districts__card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.districts__card--reverse {
  flex-direction: row-reverse;
}

.districts__content {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

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

.districts__pin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #276C03;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.districts__card-title {
  color: #1a1a2e;
}

.districts__card-text {
  line-height: 1.6;
  color: #555;
}

.districts__tags {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.districts__tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #1a1a2e;
}

.districts__image {
  flex: 0 0 362px;
  width: 362px;
  height: 256px;
  border-radius: 10px;
  overflow: hidden;
}

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

/* ===================== Floating Contact Widget ===================== */
.floating-contact {
  position: fixed;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

.floating-contact__btn {
  display: flex;
  align-items: center;
  height: 54px;
  width: 54px;
  border-radius: 6px 0 0 6px;
  background: #276C03;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(39, 108, 3, 0.35);
  transition: width 0.35s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact__btn:hover,
.floating-contact__btn:focus-visible {
  width: 240px;
  background: #1d5402;
  box-shadow: 0 8px 22px rgba(39, 108, 3, 0.45);
  outline: none;
}

.floating-contact__btn:nth-child(2):hover,
.floating-contact__btn:nth-child(2):focus-visible {
  width: 320px;
}

.floating-contact__btn--whatsapp {
  background: #25D366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.floating-contact__btn--whatsapp:hover,
.floating-contact__btn--whatsapp:focus-visible {
  background: #1ebe5b;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.floating-contact__icon {
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-contact__icon svg {
  width: 22px;
  height: 22px;
}

.floating-contact__label {
  flex: 1 1 auto;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  padding-right: 0;
  transition: opacity 0.25s ease 0.05s, padding 0.35s ease;
}

.floating-contact__btn:hover .floating-contact__label,
.floating-contact__btn:focus-visible .floating-contact__label {
  opacity: 1;
  padding-right: 20px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #276C03;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s, visibility 0s linear 0.3s;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s, visibility 0s linear 0s;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #1d5402;
  outline: none;
}
.pfaq-question:hover{
	  background-color: #829961 !important;
	 color: #fff;
}
.pfaq-question{
	border-radius: 10px;
}
.open .pfaq-question{
	  background-color: #829961 !important;
    color: #fff;
border-radius: 10px 10px 0 0 !important;
}
.pfaq-item.open .pfaq-answer {
    max-height: 2000px;
    padding: 12px 16px;
    background: #fff;
}
.pfaq-item.open .pfaq-answer {

    border-radius: 0 0 10px 10px;
}
.pfaq-item {
  
    border: 1px solid #dddddd00 !important;
}
.page-template-standorte{
	    padding: 7rem 0 0;
}
.page-id-704 .available-cta{
 display:none}
.page-id-704 .focus{
display:none}

.page-id-708 .focus__container--reverse{
	    display: none;
}
.page-id-710 .focus__container--reverse{
	    display: none;
}
.page-id-706 li{
	    color: #555 !important;
}
.page-id-708 li{
	    color: #fff !important;
}

.subVideo{
	    position: relative;
    overflow: hidden;
flex: 1;
}


/* 404 Not Found */
.error404 {
  padding: 100px 0px;
}

.error404__container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.error404__code {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  color: #FFA500;
}

.error404__title {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: var(--heading-size);
  margin: 16px 0 12px;
}

.error404__text {
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: #555;
  margin: 0 auto 32px;
  max-width: 560px;
}

.error404__search {
  display: flex;
  max-width: 480px;
  margin: 0 auto 32px;
  gap: 8px;
}

.error404__search-input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
}

.error404__search-input:focus {
  border-color: #FFA500;
}

.error404__search-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background-color: #FFA500;
  padding: 14px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.error404__search-btn:hover {
  background-color: #e69500;
}

.error404__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.error404__link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFA500;
  text-decoration: none;
}

.error404__link:hover {
  text-decoration: underline;
}

#wpforms-751 .wpforms-field input,
#wpforms-751 .wpforms-field textarea,
#wpforms-751 .wpforms-field select {
    width: 100% !important;
    max-width: 100% !important;
    font-family: 'Poppins', sans-serif;
}
.wpforms-submit{
	    font-family: 'Poppins', sans-serif !important;
}
