/**
* Template Name: Appland
* Template URL: https://bootstrapmade.com/free-bootstrap-app-landing-page-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #585a61;
  overflow-x: hidden;
}

a {
  color: #6B8E6B;
  text-decoration: none;
}

a:hover {
  color: #7FA37F;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/* Responsive container padding */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Better touch targets on mobile */
@media (max-width: 768px) {
  a, button, .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Prevent text selection issues on mobile */
  .swiper-slide {
    -webkit-user-select: none;
    user-select: none;
  }
}

/* Fix for iOS momentum scrolling */
.swiper-wrapper {
  -webkit-overflow-scrolling: touch;
}

/* Fix row/column gaps on mobile */
@media (max-width: 768px) {
  .row {
    --bs-gutter-x: 1rem;
  }

  .row > * {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}

/* Ensure images don't overflow on mobile */
img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #6B8E6B;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #7FA37F;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 575px) {
  .back-to-top {
    width: 36px;
    height: 36px;
    right: 10px;
    bottom: 10px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #6B8E6B;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header {
    padding: 10px 0;
  }

  #header .logo img {
    max-height: 35px;
  }

  #header .container {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  #header .logo img {
    max-height: 30px;
  }
}
/*--------------------------------------------------------------
# INDEX PAGE
--------------------------------------------------------------*/

    /* Image container */
    .image-container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    /* Individual image with text */
    .image-with-text {
      position: relative;
      margin-bottom: 20px; /* Adjust spacing between images */
      text-align: center;
    }

    /* Overlay */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.8;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none; /* Allows clicking through the overlay */
      transition: opacity 0.3s ease;
    }

    /* Text styling */
    .overlay h1 {
      color: white;
      font-size: 24px;
      text-align: center;
      pointer-events: auto; /* Allows clicking on text */
    }

    /* Hover effect */
    .image-with-text:hover .overlay {
      opacity: 1.9; /* Darken overlay when hovered */
    }

    /* Desktop layout */
    @media (min-width: 769px) {
      .image-container {
        flex-direction: row;
      }

      .image-with-text {
        margin-bottom: 0; /* Reset spacing between images */
        margin-left: 20px; /* Adjust spacing between images */
      }

      .image-with-text:first-child {
        margin-left: 0; /* No margin for the first image */
      }
    }
    
        /* Center the logo */
    .logo {
      text-align: center;
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: #3D5A3D;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #6B8E6B;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #6B8E6B;
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #7FA37F;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #6B8E6B;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #3D5A3D;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #3D5A3D;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #6B8E6B;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #6B8E6B;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

@media (max-width: 575px) {
  .mobile-nav-toggle {
    font-size: 24px;
  }

  .navbar-mobile ul {
    top: 50px;
    right: 10px;
    left: 10px;
    bottom: 10px;
    padding: 8px 0;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 15px;
    font-size: 14px;
  }

  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 10px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

.language-switcher .current-lang {
    display: flex;
    align-items: center; /* Align items vertically */
    position: relative;
    text-decoration: none;
}

/* Styles for mobile devices */
@media (max-width: 1200px) {
    .language-switcher .current-lang {
        width: 80px; /* Set a fixed width for mobile */
    }
}

.language-switcher .current-lang img {
    margin-right: 5px;
    width: 16px; /* Adjust the width of the flag icon */
    height: 16px; /* Adjust the height of the flag icon */
}

.language-switcher .current-lang .lang-label {
    display: none; /* Hide the short version of the language code */
}

.language-switcher .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

.language-switcher .dropdown-menu li {
    display: block;
    clear: both;
}

.language-switcher .dropdown-menu li a {
    display: block;
    padding: 10px;
    clear: both;
    font-size: 14px;
}

.language-switcher .dropdown-menu li a:hover {
    background-color: #f8f9fa;
}

.language-switcher .dropdown-menu li.active a {
    font-weight: bold;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px 0;
}

#hero::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 20%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background-color: #E8F0E8;
  transform: skewY(135deg);
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #6B8E6B;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #4A5E4A;
  margin-bottom: 50px;
  font-size: 20px;
}

#hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

#hero .download-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 3px;
  transition: 0.5s;
  color: #fff;
  background: #3D5A3D;
  position: relative;
  vertical-align: top;
}

#hero .download-btn:hover {
  background: #6B8E6B;
}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn+.download-btn {
  margin-left: 0;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
    padding: 120px 0 60px 0;
  }

  #hero .hero-buttons {
    justify-content: center;
    gap: 16px;
  }

  #hero .download-btn {
    margin: 0;
    padding: 10px 20px 12px 42px;
    font-size: 14px;
  }

  #hero .download-btn+.download-btn {
    margin: 0;
  }

  #hero .hero-img {
    text-align: center;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 80%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 100px 0 50px 0;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  #hero .hero-img img {
    width: 90%;
  }

  #hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #hero .download-btn {
    display: block;
    width: calc(100% - 40px);
    max-width: 280px;
    margin: 0;
    text-align: center;
    padding: 12px 20px 14px 46px;
  }

  #hero .download-btn+.download-btn {
    margin: 0;
  }
}

@media (max-width: 575px) {
  #hero {
    padding: 90px 0 40px 0;
  }

  #hero h1 {
    font-size: 24px;
    line-height: 32px;
  }

  #hero h2 {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  #hero .hero-img img {
    width: 95%;
  }

  #hero .download-btn {
    font-size: 13px;
    padding: 10px 16px 12px 40px;
  }

  #hero .download-btn i {
    font-size: 18px;
    left: 14px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #F2F7F2;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #6B8E6B;
  font-family: "Poppins", sans-serif;
}

.section-title p {
  margin-bottom: 0;
}

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

  .section-title {
    padding-bottom: 20px;
  }

  .section-title h2 {
    font-size: 26px;
    padding: 0 15px;
  }

  .section-title p {
    font-size: 14px;
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  section {
    padding: 30px 0;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .section-title p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 75px;
  padding: 15px 0;
  background-color: #F6FAF6;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .content {
  padding: 30px 0;
}

.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #6B8E6B;
}

.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}

@media (max-width: 1190px) {
  .features .image {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .features .content {
    padding: 15px;
  }

  .features .content .icon-box {
    margin-top: 20px;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .features .content .icon-box {
    text-align: left;
    margin-top: 25px;
    padding: 0;
  }

  .features .content .icon-box h4 {
    font-size: 18px;
    margin: 5px 0 8px 55px;
  }

  .features .content .icon-box i {
    font-size: 40px;
  }

  .features .content .icon-box p {
    font-size: 14px;
    margin-left: 55px;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .features .content .icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: #f8faf8;
    border-radius: 8px;
    margin-top: 15px;
  }

  .features .content .icon-box i {
    float: none;
    font-size: 36px;
    margin-bottom: 10px;
  }

  .features .content .icon-box h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
  }

  .features .content .icon-box p {
    margin-left: 0;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details {
  padding: 0;
}

.details .container {
  max-width: 100%;
  padding: 0;
}

.details .content {
  align-items: center;
  padding: 60px 5%;
  margin: 0;
}

.details .content:nth-child(odd) {
  background-color: #F2F7F2;
}

.details .content:nth-child(even) {
  background-color: #fff;
}

.details .content .col-md-4 {
  padding: 0 30px;
}

.details .content .col-md-8 {
  padding: 0 30px;
}

.details .content img {
  max-width: 100%;
  height: auto;
}

.details .content+.content {
  margin-top: 0;
}

.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #3D5A3D;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #6B8E6B;
  line-height: 0;
}

.details .content p:last-child {
  margin-bottom: 0;
}

.details .details-img-mobile {
  max-height: 400px;
  width: auto;
}

@media (max-width: 991px) {
  .details .content {
    padding: 50px 20px;
  }

  .details .content+.content {
    margin-top: 0;
  }

  .details .content h3 {
    font-size: 26px;
  }

  .details .content .col-md-4,
  .details .content .col-md-8 {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .details .content {
    text-align: center;
    padding: 40px 15px;
  }

  .details .content+.content {
    margin-top: 0;
  }

  .details .content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .details .content p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .details .content ul {
    text-align: left;
    padding: 0 15px;
  }

  .details .content ul li {
    padding-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
  }

  .details .content ul i {
    font-size: 20px;
    min-width: 24px;
    margin-top: 2px;
  }

  .details .content .col-md-4 {
    margin-bottom: 20px;
  }

  .details .content .col-md-8 {
    padding-top: 10px;
  }

  .details .content img {
    max-width: 70%;
    margin: 0 auto;
    display: block;
  }

  .details .details-img-mobile {
    max-height: 300px;
    max-width: 80%;
  }
}

@media (max-width: 575px) {
  .details .content {
    padding: 30px 10px;
  }

  .details .content+.content {
    margin-top: 0;
  }

  .details .content h3 {
    font-size: 20px;
    padding: 0 10px;
  }

  .details .content p {
    font-size: 13px;
  }

  .details .content img {
    max-width: 85%;
  }

  .details .details-img-mobile {
    max-height: 250px;
    max-width: 90%;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
  padding-bottom: 40px;
}

.gallery .gallery-slider {
  overflow: visible;
}

.gallery .swiper-slide {
  transition: all 0.4s ease;
  width: 70vw !important;
  max-width: 800px !important;
}

.gallery .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #6B8E6B;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6B8E6B;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-slide {
    width: 50vw !important;
    max-width: 900px !important;
  }

  .gallery .swiper-slide-active img {
    border: 4px solid #6B8E6B;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .gallery {
    padding-bottom: 30px;
  }

  .gallery .swiper-slide {
    width: 85vw !important;
    max-width: none !important;
  }

  .gallery .swiper-slide img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  }

  .gallery .swiper-pagination {
    margin-top: 15px;
  }

  .gallery .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

@media (max-width: 575px) {
  .gallery {
    padding-bottom: 20px;
  }

  .gallery .swiper-slide {
    width: 90vw !important;
  }

  .gallery .swiper-slide img {
    border-radius: 6px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 10px 30px 50px;
  min-height: 200px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #E8F0E8;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #6B8E6B;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6B8E6B;
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 70px 20px 25px 20px;
    margin: 50px 15px 20px 15px;
    min-height: auto;
    text-align: center;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 70px;
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
    border: 4px solid #fff;
  }

  .testimonials .testimonial-item h3 {
    font-size: 16px;
    margin: 5px 0 3px 0;
  }

  .testimonials .testimonial-item h4 {
    font-size: 13px;
  }

  .testimonials .testimonial-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0;
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    font-size: 20px;
  }

  .testimonials .swiper-pagination {
    margin-top: 10px;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 65px 15px 20px 15px;
    margin: 45px 10px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 60px;
    top: -30px;
  }

  .testimonials .testimonial-item p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #6B8E6B;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #6B8E6B;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #3D5A3D;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #6B8E6B;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #6B8E6B;
}

.pricing .featured .get-started-btn:hover {
  background: #7FA37F;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 70%;
    margin: 0 auto 25px auto;
    padding: 35px 30px;
  }

  .pricing .featured {
    margin: 0 auto 25px auto;
    max-width: 70%;
  }

  .pricing h3 {
    font-size: 24px;
  }

  .pricing h4 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .pricing .row {
    padding-top: 20px;
  }

  .pricing .box {
    max-width: 85%;
    padding: 30px 25px;
  }

  .pricing .featured {
    max-width: 85%;
  }

  .pricing h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .pricing h4 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .pricing h4 span {
    font-size: 16px;
  }

  .pricing ul li {
    padding-bottom: 10px;
    font-size: 14px;
  }

  .pricing .get-started-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .pricing .box {
    max-width: 100%;
    padding: 25px 20px;
    margin: 0 0 20px 0;
  }

  .pricing .featured {
    max-width: 100%;
  }

  .pricing h3 {
    font-size: 20px;
  }

  .pricing h4 {
    font-size: 32px;
  }

  .pricing ul {
    padding-left: 5px;
  }

  .pricing ul li {
    font-size: 13px;
    padding-bottom: 8px;
  }

  .pricing ul i {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .accordion-list {
  padding: 0 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li+li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #9BB89B;
}

.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #6B8E6B;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .faq .accordion-list {
    padding: 0 10px;
  }

  .faq .accordion-list li {
    padding: 15px;
  }

  .faq .accordion-list a {
    font-size: 14px;
    line-height: 22px;
    padding: 0 25px 0 30px;
  }

  .faq .accordion-list .icon-help {
    font-size: 20px;
    left: 0;
  }

  .faq .accordion-list .icon-show,
  .faq .accordion-list .icon-close {
    font-size: 20px;
    right: -5px;
  }

  .faq .accordion-list p {
    font-size: 13px;
    line-height: 1.6;
    padding: 8px 0 0 0;
  }
}

@media (max-width: 575px) {
  .faq .accordion-list {
    padding: 0;
  }

  .faq .accordion-list li {
    padding: 12px 10px;
    border-radius: 6px;
  }

  .faq .accordion-list li+li {
    margin-top: 10px;
  }

  .faq .accordion-list a {
    font-size: 13px;
    line-height: 20px;
    padding: 0 22px 0 28px;
  }

  .faq .accordion-list .icon-help {
    font-size: 18px;
  }

  .faq .accordion-list .icon-show,
  .faq .accordion-list .icon-close {
    font-size: 18px;
  }

  .faq .accordion-list p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px 40px;
  background: #F2F7F2;
  color: #3D5A3D;
  text-align: center;
  border: 1px solid #fff;
}

.contact .info i {
  font-size: 48px;
  color: #6B8E6B;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  font-size: 15px;
}

/* Email and Phone Links */
.contact .info p a,
.contact .info a,
footer a[data-email],
footer a[data-phone] {
  color: #6B8E6B;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact .info p a:hover,
.contact .info a:hover,
footer a[data-email]:hover,
footer a[data-phone]:hover {
  color: #7FA37F;
  text-decoration: underline;
}

.contact .info p a:focus,
.contact .info a:focus,
footer a[data-email]:focus,
footer a[data-phone]:focus {
  outline: 2px solid #6B8E6B;
  outline-offset: 2px;
  border-radius: 2px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
  color: #8a8c95;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #6B8E6B;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #fff;
  border: 2px solid #6B8E6B;
  padding: 10px 24px;
  color: #6B8E6B;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #6B8E6B;
  color: #fff;
}

@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }

  .contact .info {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .contact .info i {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .contact .info h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .contact .info p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .contact .info {
    padding: 15px 10px;
  }

  .contact .info i {
    font-size: 32px;
  }

  .contact .info h4 {
    font-size: 13px;
  }

  .contact .info p {
    font-size: 12px;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer - Mobile-First Design
--------------------------------------------------------------*/
#footer {
  background: #EFF5EF;
  padding: 0;
  color: #3D5A3D;
  font-size: 14px;
}

/* Newsletter/CTA Section */
#footer .footer-newsletter {
  padding: 40px 20px;
  background: #3D5A3D;
  text-align: center;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 12px 0;
  padding: 0;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
}

#footer .footer-newsletter p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}

#footer .footer-newsletter .cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #6B8E6B;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-newsletter .cta-btn:hover {
  background: #fff;
  color: #6B8E6B;
  transform: translateY(-2px);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.3);
}

/* Footer Top Section - Mobile First */
#footer .footer-top {
  padding: 48px 20px 32px 20px;
  background: #fff;
}

#footer .footer-top .row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#footer .footer-top .row > [class*="col-"] {
  width: 100%;
  flex: 0 0 100%;
}

/* Footer Contact Section */
#footer .footer-top .footer-contact {
  margin-bottom: 0;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 700;
  color: #3D5A3D;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #6a6a6a;
}

#footer .footer-top .footer-contact p strong {
  color: #3D5A3D;
  font-weight: 600;
}

/* Footer Links Sections */
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  color: #3D5A3D;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #E8F0E8;
  position: relative;
}

#footer .footer-top .footer-links {
  margin-bottom: 0;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

#footer .footer-top .footer-links ul li:last-child {
  margin-bottom: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #6B8E6B;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 2px;
  flex-shrink: 0;
}

#footer .footer-top .footer-links ul a {
  color: #6a6a6a;
  transition: all 0.2s ease;
  display: inline-block;
  line-height: 1.5;
  font-size: 14px;
  padding: 4px 0;
  min-height: 32px;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul a:hover {
  color: #6B8E6B;
  text-decoration: none;
  padding-left: 4px;
}

/* Social Links Section */
#footer .footer-top .footer-links:last-child h4 {
  margin-bottom: 12px;
}

#footer .footer-top .footer-links p {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.6;
  margin-bottom: 16px;
}

#footer .footer-top .social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6B8E6B;
  color: #fff;
  padding: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

#footer .footer-top .social-links a:hover {
  background: #5a7a5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(107, 142, 107, 0.4);
}

#footer .footer-top .social-links a.twitter:hover {
  background: #1DA1F2;
}

#footer .footer-top .social-links a.facebook:hover {
  background: #1877F2;
}

#footer .footer-top .social-links a.instagram:hover {
  background: #E4405F;
}

#footer .footer-top .social-links a.linkedin:hover {
  background: #0077B5;
}

#footer .footer-top .social-links a.youtube:hover {
  background: #FF0000;
}

#footer .footer-top .social-links a.tiktok:hover {
  background: #000000;
}

/* Copyright Section */
#footer .container.py-4 {
  padding: 24px 20px !important;
  background: #E8F0E8;
  border-top: 1px solid #D4E4D4;
}

#footer .copyright {
  text-align: center;
  color: #3D5A3D;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

#footer .copyright strong {
  font-weight: 600;
}

#footer .credits {
  text-align: center;
  font-size: 12px;
  color: #6a6a6a;
  margin-top: 8px;
}

/* Tablet and Above (768px+) */
@media (min-width: 768px) {
  #footer .footer-newsletter {
    padding: 50px 20px;
  }

  #footer .footer-newsletter h4 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  #footer .footer-newsletter p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  #footer .footer-newsletter .cta-btn {
    padding: 14px 40px;
    font-size: 16px;
  }

  #footer .footer-top {
    padding: 60px 0 40px 0;
  }

  #footer .footer-top .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
  }

  #footer .footer-top .row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  #footer .footer-top .row > .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
  }

  #footer .footer-top .row > .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-contact {
    margin-bottom: 0;
  }

  #footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  #footer .footer-top .footer-contact p {
    font-size: 14px;
  }

  #footer .footer-top h4 {
    font-size: 17px;
    margin-bottom: 18px;
  }

  #footer .footer-top .footer-links {
    margin-bottom: 0;
  }

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

  #footer .footer-top .footer-links ul a {
    font-size: 14px;
  }

  #footer .footer-top .social-links {
    gap: 10px;
  }

  #footer .footer-top .social-links a {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  #footer .container.py-4 {
    padding: 20px !important;
  }

  #footer .copyright {
    font-size: 14px;
  }
}

/* Desktop (992px+) */
@media (min-width: 992px) {
  #footer .footer-top .row > .col-lg-3 {
    margin-bottom: 0;
  }

  #footer .footer-top .row > .col-md-6 {
    flex: 0 0 25%;
    max-width: 25%;
    margin-bottom: 0;
  }
}

/* Small Mobile (575px and below) */
@media (max-width: 575px) {
  #footer .footer-newsletter {
    padding: 32px 16px;
  }

  #footer .footer-newsletter h4 {
    font-size: 20px;
  }

  #footer .footer-newsletter p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  #footer .footer-newsletter .cta-btn {
    padding: 10px 28px;
    font-size: 14px;
  }

  #footer .footer-top {
    padding: 40px 16px 28px 16px;
  }

  #footer .footer-top .row {
    gap: 28px;
  }

  #footer .footer-top .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  #footer .footer-top h4 {
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

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

  #footer .footer-top .footer-links ul a {
    font-size: 13px;
    min-height: 28px;
  }

  #footer .footer-top .social-links {
    gap: 6px;
  }

  #footer .footer-top .social-links a {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  #footer .container.py-4 {
    padding: 20px 16px !important;
  }

  #footer .copyright {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Language Switcher
--------------------------------------------------------------*/
/* Desktop Language Switcher */
.language-switcher-desktop {
  position: relative;
  margin-left: 15px;
}

.language-switcher-desktop .language-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.language-switcher-desktop .language-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.language-switcher-desktop .current-flag {
  width: 24px;
  height: 18px;
  margin-right: 8px;
  border-radius: 2px;
  object-fit: cover;
}

.language-switcher-desktop .language-toggle .bi-chevron-down {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s;
}

.language-switcher-desktop:hover .language-toggle .bi-chevron-down {
  transform: rotate(180deg);
}

.language-switcher-desktop .language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0 0;
  min-width: 220px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.language-switcher-desktop:hover .language-dropdown,
.language-switcher-desktop.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher-desktop .language-option {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  width: 100%;
}

.language-switcher-desktop .language-option:hover {
  background-color: #f5f5f5;
}

.language-switcher-desktop .language-option.active {
  background-color: #e8f0fe;
  font-weight: 600;
}

.language-switcher-desktop .language-option img {
  width: 24px;
  height: 18px;
  margin-right: 12px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.language-switcher-desktop .language-option span {
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
  display: none;
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
}

.language-grid-mobile {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background: #f5f5f5;
  border-radius: 6px;
  width: 100%;
}

.language-flag-btn {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.language-flag-btn img {
  width: 32px;
  height: 24px;
  border-radius: 3px;
  object-fit: cover;
}

.language-flag-btn:hover {
  background-color: #e8f0e8;
  border-color: #6B8E6B;
}

.language-flag-btn.active {
  background-color: #6B8E6B;
  border-color: #6B8E6B;
  box-shadow: 0 2px 8px rgba(107, 142, 107, 0.3);
}

.language-flag-btn.active img {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Responsive: Show mobile, hide desktop */
@media (max-width: 991px) {
  .language-switcher-desktop {
    display: none;
  }

  .language-switcher-mobile {
    display: block;
  }
}

@media (max-width: 575px) {
  .language-grid-mobile {
    gap: 10px;
    padding: 8px 12px;
  }

  .language-flag-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 6px;
  }

  .language-flag-btn img {
    width: 28px;
    height: 21px;
  }
}

/*--------------------------------------------------------------
# Cookie Consent Banner
--------------------------------------------------------------*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent-text {
  flex: 1;
  min-width: 280px;
}

.cookie-consent-title {
  font-size: 18px;
  font-weight: 600;
  color: #3D5A3D;
  margin: 0 0 8px 0;
  font-family: "Raleway", sans-serif;
}

.cookie-consent-description {
  font-size: 14px;
  color: #585a61;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.cookie-consent-learn-more {
  font-size: 13px;
  color: #6a6a6a;
  margin: 0;
}

.cookie-consent-learn-more a {
  color: #6B8E6B;
  text-decoration: underline;
}

.cookie-consent-learn-more a:hover {
  color: #7FA37F;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: "Raleway", sans-serif;
  white-space: nowrap;
}

.cookie-btn-accept-all {
  background: #6B8E6B;
  color: #fff;
}

.cookie-btn-accept-all:hover {
  background: #7FA37F;
}

.cookie-btn-necessary {
  background: transparent;
  color: #3D5A3D;
  border: 2px solid #3D5A3D;
}

.cookie-btn-necessary:hover {
  background: #3D5A3D;
  color: #fff;
}

.cookie-btn-customize {
  background: transparent;
  color: #6B8E6B;
  border: 2px solid #6B8E6B;
}

.cookie-btn-customize:hover {
  background: #6B8E6B;
  color: #fff;
}

.cookie-btn-save {
  background: #6B8E6B;
  color: #fff;
}

.cookie-btn-save:hover {
  background: #7FA37F;
}

/* Customize Panel */
.cookie-consent-customize {
  padding: 20px;
  border-top: 1px solid #e8e8e8;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-option {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-option-title {
  font-size: 15px;
  font-weight: 600;
  color: #3D5A3D;
}

.cookie-option-description {
  font-size: 13px;
  color: #6a6a6a;
  margin: 8px 0 0 52px;
  line-height: 1.5;
}

/* Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: #6B8E6B;
}

.cookie-switch input:disabled + .cookie-slider {
  background-color: #6B8E6B;
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 16px;
  }

  .cookie-consent-text {
    text-align: center;
    min-width: auto;
  }

  .cookie-consent-title {
    font-size: 16px;
  }

  .cookie-consent-description {
    font-size: 13px;
  }

  .cookie-consent-actions {
    justify-content: center;
  }

  .cookie-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .cookie-consent-customize {
    padding: 16px;
  }

  .cookie-option-description {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .cookie-consent-content {
    padding: 14px;
    gap: 14px;
  }

  .cookie-consent-title {
    font-size: 15px;
  }

  .cookie-consent-description {
    font-size: 12px;
  }

  .cookie-consent-learn-more {
    font-size: 12px;
  }

  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .cookie-option-header {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Legal Pages (Privacy Policy, Terms & Conditions)
--------------------------------------------------------------*/
.legal-page {
  padding-top: 100px;
}

.legal-page .legal-content {
  padding: 60px 0;
}

.legal-page h1 {
  font-size: 32px;
  color: #3D5A3D;
  margin-bottom: 10px;
  font-weight: 600;
}

.legal-page .last-updated {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 22px;
  color: #3D5A3D;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-page h3 {
  font-size: 18px;
  color: #4A5E4A;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 600;
}

.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: #585a61;
  margin-bottom: 15px;
}

.legal-page ul, .legal-page ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: #585a61;
  margin-bottom: 8px;
}

.legal-page a {
  color: #6B8E6B;
}

.legal-page a:hover {
  color: #7FA37F;
  text-decoration: underline;
}

.legal-page .contact-info {
  background: #F2F7F2;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}

.legal-page .contact-info h3 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: 80px;
  }

  .legal-page .legal-content {
    padding: 40px 0;
  }

  .legal-page h1 {
    font-size: 26px;
  }

  .legal-page h2 {
    font-size: 20px;
    margin-top: 30px;
  }

  .legal-page h3 {
    font-size: 16px;
  }

  .legal-page p, .legal-page li {
    font-size: 14px;
  }
}

/* Cookie Settings Link in Footer */
.cookie-settings-link {
  cursor: pointer;
  color: #6a6a6a;
  transition: color 0.2s;
}

.cookie-settings-link:hover {
  color: #6B8E6B;
  text-decoration: underline;
}