/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Lato:wght@400;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --primary: #209d2f;
  --primary-rgb: 32, 157, 47;
  --green-dark: #25723e;
  --white: #ffffff;
  --dark: #222222;
  --text-light: #f3f4f6;
  --text-muted: #5e5b5b;
  --gray-bg: #f2f2f2;
  --black: #000000;
  --badge: #DCFCE7;

  /* Fonts */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Lato', sans-serif;
  --font-tertiary: 'Inter', sans-serif;
}


/* ===== Global Typography ===== */
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
}

html, body {
  overflow-x: hidden;
}

h1 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -1.8px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 36px;
  font-weight: 600;
}

h4 {
  font-size: 28px;
  font-weight: 600;
}

h5 {
  font-size: 24px;
  font-weight: 500;
}

h6 {
  font-size: 20px;
  font-weight: 500;
}

p {
  font-size: 16px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== Section Spacing ===== */
.section {
  padding-top: 80px;
}

.section-padding {
  padding-left: 150px;
  padding-right: 150px;
}

/* ===== Buttons ===== */
.btn-green,
.btn-white {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 90px;
  border: none;
  padding: 15px 30px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-green {
  background-color: var(--primary);
  color: var(--white);
}

.btn-green:hover {
  background-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-white {
  background-color: var(--white);
  color: var(--dark);
  padding: 18px 42px;
  border: 1px solid var(--primary);
}

.btn-white:hover {
  background-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Topbar ===== */
.topbar {
  background-image: url('../img/topbar-bg.png');
  background-size: cover;
  background-position: center;
  height: 50px;
}

.topbar-item {
  font-family: var(--font-tertiary);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.topbar-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== Header ===== */
.header-box {
  background-color: var(--white);
  border-radius: 0 0 10px 10px;
  overflow: visible;
  width: 85%;
  margin: 0px auto;
  position: relative;
  padding: 40px 0px 0px;
}

/* Header Top */
.header-top {
  padding: 15px 0;
  padding-left: 180px;
  justify-content: flex-end !important;
}

.header-logo {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.header-logo img {
  height: 150px;
  width: auto;
}

.header-info-icon {
  color: var(--primary);
  font-size: 30px;
  flex-shrink: 0;
}

.header-info-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}

.header-info-text {
  font-family: var(--font-tertiary);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Navbar Toggler */
.navbar-toggler {
  padding: 6px 10px;
  font-size: 22px;
  color: var(--dark);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23222222' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header Bottom / Navbar */
.header-navbar {
  padding: 0 24px !important;
  padding-left: 180px !important;
}

.header-navbar .navbar-nav {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.header-navbar .nav-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
  padding: 10px 0 !important;
  border-left: 1px solid #ddd;
  padding-left: 24px !important;
  margin-left: 24px;
}

.header-navbar .nav-item:first-child .nav-link {
  border-left: none;
  padding-left: 0 !important;
  margin-left: 0;
}

.header-navbar .nav-link:hover,
.header-navbar .nav-link.active {
  color: var(--primary);
}

.header-navbar .nav-link.active {
  border-bottom: 2px solid var(--primary);
}

.navbar-search-btn {
  font-size: 22px;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: 50px;
}

.navbar-search-btn:hover {
  color: var(--primary);
}

/* Dropdown Menu */
.header-navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin-top: 0;
}

@media (min-width: 993px) {
  .header-navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.header-navbar .dropdown-item {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.header-navbar .dropdown-item:hover,
.header-navbar .dropdown-item:focus {
  background-color: var(--badge);
  color: var(--primary);
}

.header-navbar .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: 2px;
  border-top-width: 5px;
  border-right-width: 5px;
  border-left-width: 5px;
}

/* Sticky Navbar */
#sticky-nav {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--white);
  padding: 5px 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  border-radius: 0;
  transition: top 0.3s ease;
  display: none;
}

#sticky-nav.active {
  top: 0;
}

#sticky-nav .sticky-nav-logo {
  display: flex;
  align-items: center;
  margin-right: 30px;
  flex-shrink: 0;
}

#sticky-nav .sticky-nav-logo img {
  height: 60px;
  width: auto;
}

#sticky-nav .navbar-nav {
  display: flex;
  flex-direction: row;
  margin-left: auto;
}

#sticky-nav .nav-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
  padding: 15px 0 !important;
  border-left: 1px solid #ddd;
  padding-left: 24px !important;
  margin-left: 24px;
}

#sticky-nav .nav-item:first-child .nav-link {
  border-left: none;
  padding-left: 0 !important;
  margin-left: 0;
}

#sticky-nav .nav-link:hover,
#sticky-nav .nav-link.active {
  color: var(--primary);
}

#sticky-nav .dropdown {
  position: relative;
}

#sticky-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin-top: 0;
}

#sticky-nav .dropdown:hover > .dropdown-menu {
  display: block;
}

#sticky-nav .dropdown-item {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 20px;
}

#sticky-nav .dropdown-item:hover {
  background-color: var(--badge);
  color: var(--primary);
}

#sticky-nav .navbar-search-btn {
  font-size: 22px;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: 30px;
}

@media (max-width: 992px) {
  #sticky-nav {
    display: none !important;
  }
}

/* ===== Banner / Hero ===== */
.hero-section {
  background-image: url('../img/banner.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}


.hero-content {
  padding: 130px 0px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.2);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 999px;
  padding: 9px 18px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--badge);
  border-radius: 999px;
  padding: 9px 18px;
}

.hero-section h1 {
  color: var(--white);
  line-height: 90px;
}

.hero-desc {
  gap: 21px !important;
}

.hero-desc p {
  color: var(--text-light);
  font-weight: 500;
}

.hero-desc .lead-text {
  font-size: 20px;
  line-height: 28px;
}

.hero-desc .sub-text {
  font-size: 20px;
  line-height: 28px;
}

/* ===== USPs Section ===== */
.usps-card {
  background-image: url('../img/usps-bg.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 50px 30px;
}

.usps-card h5 {
  font-family: var(--font-primary);
  color: var(--dark);
}

.usps-icon {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.usps-card p {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

/* ===== About Section ===== */
.about-img {
  border-radius: 12px;
  object-fit: cover;
  height: 100%;
}

.about-heading span {
  color: var(--primary);
}

.about-text {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

.about-icon {
  height: auto;
  flex-shrink: 0;
  border-right: 1px solid #ddd;
  padding-right: 24px;
}

.about-features {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-checklist li {
  font-family: var(--font-tertiary);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  text-transform: uppercase;
  padding: 6px 0;
}

.about-checklist li i {
  color: var(--primary);
  margin-right: 8px;
}

/* ===== Supplies Section ===== */
.text-green {
  color: var(--primary);
}

.supplies-section{
    background: url('../img/supplies-bg.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    padding: 80px 0px;
    margin-top: 80px;
}

.supplies-subtitle {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

.supplies-card {
  background-color: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background-color 0.4s ease;
  position: relative;
}

.supplies-card:hover {
  background-color: var(--dark);
}

.supplies-card h5,
.supplies-card h6 {
  font-family: var(--font-primary);
  color: var(--dark);
  transition: color 0.4s ease;
}

.supplies-card:hover h5,
.supplies-card:hover h6 {
  color: var(--white);
}

.supplies-card p {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
  font-size: 14px;
  flex-grow: 1;
  transition: color 0.4s ease;
}

.supplies-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.supplies-card-btn {
  width: 42px;
  height: 42px;
  border-radius: 0px 0px 10px 10px;
  background-color: var(--primary);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  display: none;
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  -webkit-border-radius: 0px 0px 10px 10px;
  -moz-border-radius: 0px 0px 10px 10px;
  -ms-border-radius: 0px 0px 10px 10px;
  -o-border-radius: 0px 0px 10px 10px;
}

.supplies-card:hover .supplies-card-btn {
  display: flex;
}

.supplies-card-btn:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

.supplies-img {
  border-radius: 12px;
}

.supplies-carousel .owl-stage {
  display: flex;
  padding: 50px 0px;
}

.supplies-carousel .owl-item {
  padding: 15px;
  display: flex;
}

.supplies-carousel-wrapper {
  padding: 0 50px;
}

.supplies-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.supplies-nav:hover {
  background-color: var(--primary);
  color: var(--white);
}

.supplies-prev {
  left: 0;
}

.supplies-next {
  right: 0;
}

/* ===== Garden Design & Planting Services Section ===== */
.garden-content {
  padding: 0 80px 0 100px;
  margin-left: 60px;
}

.garden-subtitle {
  color: var(--dark);
}

.garden-text {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

.garden-card {
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid #D9D9D9;
  padding: 16px;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.garden-card:hover, .garden-card:hover p{
  color: var(--white);
  background: var(--primary);
}



.garden-section {
  overflow: hidden;
}


.garden-card-stripe {
    position: absolute;
    right: -34px;
    top: 5%;
    transform: translateY(-50%) rotate(45deg);
    width: 80px;
    height: 64px;
    background-color: var(--primary);
}

.garden-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: -80px;
}

/* ===== CTA Banner Section ===== */
.cta-banner {
  background-image: url('../img/cta-top-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  margin-top: 80px;
  overflow: hidden;
}

.cta-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.cta-banner h4 {
  font-family: var(--font-primary);
  max-width: 600px;
}

.cta-phones {
  font-family: var(--font-tertiary);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.cta-banner .btn-white:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== What Makes Us Different Section ===== */
.why-subtitle {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

.why-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 0px 0px 20px;
  transition: all 0.3s ease;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.why-card-img-wrapper {
  position: relative;
}

.why-card-img {
  width: 100%;
  object-fit: cover;
}

.why-card h5 {
  font-family: var(--font-primary);
  color: var(--dark);
}

.why-card p {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

.why-card-content{
  padding: 0px 20px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background-image: url('../img/testimonials-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
  padding: 50px 0px;
  overflow: hidden;
}

.testimonials-section .owl-item {
  display: flex;
}

.testimonial-img {
  width: unset !important;
}

.testimonial-content {
  padding-left: 0;
}

.testimonial-badge {
  background-color: var(--white);
  border-radius: 999px;
  padding: 8px 20px;
}

.testimonial-stars {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-divider {
  color: #ddd;
  font-size: 14px;
}

.testimonial-label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-text {
  font-family: var(--font-tertiary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.testimonial-author {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.testimonial-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover,
.testimonial-next {
  background-color: var(--primary);
  color: var(--white);
}

.testimonial-prev {
  background-color: transparent;
  color: var(--primary);
}

/* ===== Where We Deliver Section ===== */
.deliver-subtitle {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

.deliver-card {
  background-color: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 30px;
  width: 80%;
  margin: 0px auto;
}

.deliver-item {
  background-color: #F0F7F2;
  border: 1px solid #888E8A;
  border-radius: 20px;
  padding: 20px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  justify-content: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.deliver-item:hover{
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
}

.deliver-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.deliver-notice {
  background-color: #F0F7F2;
  border-radius: 16px;
  padding: 20px 30px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid rgba(22, 163, 74, 0.20);
}

.deliver-notice p {
  font-family: var(--font-tertiary);
  font-size: 14px;
  color: var(--text-muted);
}

.deliver-notice strong {
  color: var(--primary);
  text-transform: uppercase;
}

/* ===== Gallery Section ===== */
.gallery-subtitle {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

.gallery-img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

/* ===== Contact Section ===== */

.contact-section{
    background: linear-gradient(180deg, #FAFAF9 0%, #FFF 100%);
    margin-top: 80px;
}

.contact-subtitle {
  font-family: var(--font-tertiary);
  color: var(--text-muted);
}

.contact-info-card {
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 20px 15px;
  background: #fff;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-info-card h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark);
}

.contact-info-card p {
  font-family: var(--font-tertiary);
  font-size: 12px;
  color: var(--text-muted);
}

.contact-open {
  font-family: var(--font-tertiary);
  font-size: 12px;
  color: var(--primary);
}

.contact-map iframe{
  border-radius: 24px;
  border: 1.18px solid var(--color-grey-90, #E5E5E5);
  background: #F8F8F8;
  box-shadow: 0 9.441px 28.322px 0 rgba(149, 157, 165, 0.20);
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

.contact-map-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.contact-map h5 {
  font-family: var(--font-primary);
  color: var(--dark);
}

.contact-map p {
  font-family: var(--font-tertiary);
  font-size: 14px;
  color: var(--text-muted);
}

.contact-map-note {
  font-style: italic;
  color: var(--text-muted);
}

.contact-form-card {
    border-radius: 24px;
    border: 1.18px solid var(--color-grey-90, #E5E5E5);
    background: #F8F8F8;
    box-shadow: 0 9.441px 28.322px 0 rgba(149, 157, 165, 0.20);
    padding: 40px;
}

.contact-input {
  font-family: var(--font-tertiary);
  font-size: 16px;
  padding: 14px 18px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  color: var(--dark);
}

textarea.form-control{
  height: 120px;
}

.contact-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.contact-check-label {
  font-family: var(--font-tertiary);
  font-size: 14px;
  color: var(--text-muted);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* ===== Bottom CTA Section ===== */
.cta-bottom-inner {
  background-image: url('../img/cta-bottom-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 60px 40px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.cta-bottom-text {
  font-family: var(--font-tertiary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.cta-bottom .btn-white {
  border-radius: 20px;
}

/* ===== Footer ===== */
.footer-section {
  background-image: url('../img/footer-bg.png');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-top: 80px;
  margin-top: 80px;
}

.footer-logo img {
  height: 100px;
  width: auto;
}

.footer-desc {
  font-family: var(--font-tertiary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #3a3a3a;
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social:hover{
  background-color: var(--primary);
  color: var(--white);
}

.footer-title {
  font-family: var(--font-primary);
  color: var(--white);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}

.col-lg-3 .footer-links {
  columns: 1;
}

.footer-links li {
  padding: 5px 0;
}

.footer-links li a {
  font-family: var(--font-tertiary);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links li a::before {
  content: '\2022';
  color: var(--white);
  margin-right: 8px;
}

.footer-links li a:hover {
  color: var(--primary);
}

.footer-blog-img-wrapper {
  position: relative;
  flex-shrink: 0;
}

.footer-blog-date {
  font-family: var(--font-tertiary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-blog h6 {
  font-family: var(--font-primary);
  color: var(--white);
  font-weight: 600;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
}

.footer-copyright p {
  font-family: var(--font-tertiary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-powered img {
  height: 40px;
}

/* ===== Inner Page Header ===== */
.inner-header {
  background-color: transparent;
  padding: 15px 0px 0px;
}

.inner-header-wrap {
  gap: 20px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.20);
  padding-bottom: 15px;
}

.inner-header-logo img {
  height: 90px;
  width: auto;
}

.inner-navbar .nav-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px !important;
  transition: all 0.3s ease;
}

.inner-navbar .nav-link:hover,
.inner-navbar .nav-link.active {
  color: var(--primary);
}

.inner-navbar .nav-link.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.inner-search-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.inner-search-btn:hover {
  color: var(--primary);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 700px;
  padding: 0 20px;
  position: relative;
}

.search-overlay-close {
  position: absolute;
  top: -60px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-overlay-close:hover {
  color: var(--primary);
}

.search-overlay-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.search-overlay-input {
  flex: 1;
  border: none;
  padding: 18px 24px;
  font-family: var(--font-primary);
  font-size: 18px;
  color: var(--dark);
  outline: none;
}

.search-overlay-input::placeholder {
  color: var(--text-muted);
}

.search-overlay-submit {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 18px 24px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-overlay-submit:hover {
  background: var(--dark);
}

.inner-navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin-top: 0;
}

.inner-navbar .dropdown-item {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.inner-navbar .dropdown-item:hover,
.inner-navbar .dropdown-item:focus {
  background-color: var(--primary);
  color: var(--white);
}

.inner-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 993px) {
  .inner-navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* ===== Page Banner ===== */
.page-banner {
  background-image: url('../img/about/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.products-banner {
  background-image: url('../img/products/banner.png');
}

.gallery-banner {
  background-image: url('../img/products/banner.png');
}

.services-banner {
  background-image: url('../img/services/banner.png');
}

/* ===== Services Grid Section ===== */
.service-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  position: relative;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/services/card-bg.png') center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 12px;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  box-shadow: 0 8px 24px 0 rgba(149, 157, 165, 0.20);
  border-color: transparent;
}

.service-card:hover .service-card-title,
.service-card:hover .service-card-desc,
.service-card:hover .service-card-readmore span {
  color: #fff;
}

.service-card:hover .service-card-corner {
  background: var(--primary);
}

.service-card-arrow-white {
  display: none;
}

.service-card:hover .service-card-arrow-dark {
  display: none;
}

.service-card:hover .service-card-arrow-white {
  display: block;
}

.service-card:hover .service-card-readmore-btn {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.service-card-header {
  position: relative;
  height: 110px;
  overflow: visible;
  border-radius: 12px 12px 0 0;
  z-index: 2;
}

.service-card-corner {
  position: absolute;
  top: 0;
  left: 33px;
  width: 12%;
  height: 60px;
  background: var(--dark);
}

.service-card-icon {
  position: absolute;
  bottom: 0px;
  left: 20px;
  width: 90px;
  height: 90px;
  z-index: 2;
}

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-arrow {
  position: absolute;
  top: 5px;
  left: 16%;
}

.service-card-number {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: #fff;
  border-radius: 0 12px 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  z-index: 3;
}

.service-card-body {
  padding: 0 25px 25px;
  position: relative;
  z-index: 2;
}

.service-card-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card-btn {
  width: 100%;
  padding: 10px 30px;
}

.service-card:hover .service-card-btn.btn-white {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.service-card-readmore {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-readmore span {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  letter-spacing: 1px;
}

.service-card-readmore-btn {
  width: 35px;
  height: 35px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}



/* ===== Service Detail Section ===== */

.service-detail-text {
  color: var(--text-muted);
}

.service-detail-quote {
  background-color: #2F70031A;
  border-radius: 20px;
  border: 1px solid #D9D9D9;
  padding: 16px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-detail-quote:hover {
  background: var(--primary);
}

.service-detail-quote:hover p {
  color: var(--white);
}

.service-detail-quote .service-detail-quote-stripe {
  position: absolute;
  right: -49px;
  top: 1%;
  transform: translateY(-50%) rotate(45deg);
  width: 80px;
  height: 64px;
  background-color: var(--primary);
}

.service-detail-quote p {
  color: var(--dark);
}

/* ===== Tree Types Section ===== */
.tree-types-section {
  position: relative;
}

.tree-types-bg {
  background: url('../img/services/trees-for-sale/trees-bg.png') center/cover no-repeat;
  padding: 80px 0;
  margin-top: 80px;
}

.tree-types-cards {
  margin-top: -80px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.tree-type-card {
  background: #EAF0EC;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tree-type-title {
  color: var(--dark);
  margin-bottom: 12px;
}

.tree-type-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.tree-type-label {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.tree-type-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.tree-type-list li {
  color: var(--dark);
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tree-type-list li i {
  color: var(--primary);
  font-size: 16px;
}

.tree-type-btn {
  width: 100%;
  padding: 10px 30px;
}

.tree-type-card:hover .tree-type-btn.btn-white {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== What Trees Section ===== */
.what-trees-subtitle {
  color: var(--text-muted);
}

.what-trees-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.what-trees-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--dark);
}

.what-trees-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

/* ===== Tree Supply Section ===== */
.tree-supply-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
}

.tree-supply-card-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.tree-supply-label {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.tree-supply-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tree-supply-list li {
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tree-supply-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.tree-dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tree-dot-list li {
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== Tree CTA Section ===== */
.tree-cta-section {
  background: url('../img/services/trees-for-sale/cta.png') center/cover no-repeat;
  margin-top: 80px;
}

.tree-cta-overlay {
  padding: 80px 20px;
}

/* ===== Gallery Grid Section ===== */
.gallery-grid-img {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.gallery-page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  border: none;
  color: var(--dark);
  font-family: var(--font-primary);
  font-weight: 500;
  background-color: transparent;
  margin: 0 4px;
}

.gallery-page-link:hover,
.page-item.active .gallery-page-link {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== Blog Page Cards ===== */
.blog-card {
  background-color: var(--white);
  border-radius: 16px;
  height: 100%;
}

.blog-card-img-wrap {
  overflow: hidden;
}

.blog-card-img {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.blog-card-body {
  padding: 20px;
  width: 95%;
  box-shadow: 0 4px 23.7px 0 rgba(115, 115, 115, 0.15);
  margin: -24px auto 0px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.blog-card-meta span {
  font-family: var(--font-tertiary);
  font-size: 14px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta span i {
  color: var(--primary);
}

.blog-card-title {
  font-family: var(--font-primary);
  color: var(--dark);
}

.blog-card-btn {
  border-radius: 90px;
  padding: 14px 30px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== Products Section ===== */
.product-card {
  display: block;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 15px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.product-card-content {
  position: relative;
  z-index: 2;
}

.product-card-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
}

.product-card-price {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark);
  display: none;
  transition: opacity 0.3s ease;
}

.product-card-text {
  font-family: var(--font-secondary);
  color: var(--text-muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-card-img-wrap {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-btn {
  position: absolute;
  bottom: -15px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 5px solid #fff;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.product-card-leaf {
  position: absolute;
  top: 53px;
  width: 80px;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.product-card-leaf-right {
  right: 0;
}

.product-card-leaf-left {
  left: 0;
}

.product-card:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}

.product-card:hover .product-card-title {
  color: var(--white);
  text-align: left;
  width: auto;
}

.product-card:hover .product-card-price {
  color: var(--primary);
  display: block;
}

.product-card:hover .product-card-text {
  color: rgba(255, 255, 255, 0.7);
}

.product-card:hover .product-card-btn {
  opacity: 1;
}

.product-card:hover .product-card-leaf {
  opacity: 1;
}

.page-banner-content {
  padding: 150px 0px;
}

.page-banner-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-breadcrumb a {
  font-family: var(--font-tertiary);
  font-size: 16px;
  color: var(--white);
}

.page-breadcrumb a:hover {
  color: var(--primary);
}

.page-breadcrumb span {
  font-family: var(--font-tertiary);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb .current {
  color: var(--primary);
}

.page-breadcrumb .current:hover {
  color: var(--white);
}

/* ===== About Page CTA ===== */
.about-cta-section {
  background-image: url('../img/about/cta-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
}

.about-cta-overlay {
  padding: 80px 20px;
}

.about-cta-badge {
  font-family: var(--font-tertiary);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.about-cta-badge i {
  margin-right: 4px;
}

.about-cta-phones {
  font-family: var(--font-tertiary);
  font-size: 16px;
  color: var(--white);
}

.about-cta-section .btn-white {
  border: none;
}

/* ===== About Blog Section ===== */
.about-blog-card {
  background-color: var(--white);
  box-shadow: 0 4px 23.7px 0 rgba(115, 115, 115, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-blog-card-img {
  width: 100%;
  object-fit: cover;
}

.about-blog-card-body {
  padding: 20px 24px 24px;
}

.about-blog-card-body h6 {
  font-family: var(--font-primary);
  color: var(--dark);
}

.about-blog-meta span {
  font-family: var(--font-tertiary);
  font-size: 14px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-blog-meta span i {
  color: var(--primary);
}

.about-blog-btn {
  width: 100%;
  border-radius: 90px;
  padding: 14px 30px;
}

/* ===== Team Section ===== */
.team-header {
  gap: 40px;
  border-bottom: 1px solid #83A790;
  padding-bottom: 20px;
}


.team-header-right p {
  color: var(--text-muted);
}

.team-card {
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.70);
}

.team-card:hover .team-card-name {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.team-card-img-wrapper img {
  width: 100%;
  display: block;
}

.team-card-name {
  margin-top: -64px;
  margin-bottom: 0;
  background: #fff;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
  position: relative;
  border: 1.095px solid #C7CEC9;
  -webkit-border-radius: 0px 0px 20px 20px;
  -moz-border-radius: 0px 0px 20px 20px;
  -ms-border-radius: 0px 0px 20px 20px;
  -o-border-radius: 0px 0px 20px 20px;
  font-weight: 700;
}

/* ===== Contact Page ===== */
.contact-heading {
  font-family: var(--font-primary);
  color: var(--dark);
}

.contact-subtitle {
  color: var(--text-muted);
  font-family: var(--font-secondary);
}

.contact-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.contact-social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.contact-info-card:hover .contact-info-title,
.contact-info-card:hover .contact-info-text,
.contact-info-card:hover .contact-info-text a,
.contact-info-card:hover .contact-info-open {
  color: var(--white);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 15px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.contact-info-card:hover .contact-info-icon {
  background-color: var(--white);
  color: var(--primary);
}

.contact-info-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info-text {
  font-family: var(--font-secondary);
  color: var(--text-muted);
  font-size: 14px;
}

.contact-info-text a {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-info-open {
  color: var(--primary);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
}

.contact-form-card {
  background-color: #F8F8F8;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 40px;
}

.contact-form-heading {
  font-family: var(--font-primary);
  color: var(--dark);
}

.contact-input {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: var(--font-secondary);
  color: var(--dark);
}

.contact-input:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.contact-input::placeholder {
  color: #999;
}

.form-check-label {
  font-family: var(--font-secondary);
  color: var(--text-muted);
  font-size: 14px;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.contact-submit-btn {
  border-radius: 90px;
  padding: 16px 30px;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  -ms-border-radius: 90px;
  -o-border-radius: 90px;
}

/* ===== FAQ Section ===== */
.faq-heading {
  font-family: var(--font-primary);
  color: var(--dark);
}

.faq-accordion {
  border: none;
}

.faq-item {
  border: none;
  border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.faq-item .accordion-button {
  background-color: transparent;
  box-shadow: none;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark);
  padding: 20px 0;
}

.faq-item .accordion-button::after {
  content: "+";
  background-image: none;
  font-size: 24px;
  font-weight: 300;
  color: var(--dark);
  width: auto;
  height: auto;
  transform: none;
}

.faq-item .accordion-button:not(.collapsed)::after {
  content: "\2212";
  transform: none;
}

.faq-item .accordion-body {
  padding: 0 0 20px;
  font-family: var(--font-secondary);
  color: var(--text-muted);
}

.map-area iframe{
  width: 100%;
  height: 500px;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  margin-bottom: -85px;
} 