@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #263a31;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #103524;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #077f46;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.7);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #263a31;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #077f46;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #edf6f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f3028;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #077f46;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a8f5f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #077f46;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo svg {
  height: 32px;
  margin-right: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -1px;
  text-transform: uppercase;
}

/* Branded Logo Styles */
.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  line-height: 0;
}

.logo:hover .brand-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px) rotate(-5deg);
  border-color: rgba(163, 235, 197, 0.4);
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  transform: translateY(1px);
  /* Optical centering nudge */
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--nav-font);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-transform: none;
}

.brand-sub {
  font-family: var(--nav-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #a3ebc5;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Adjust for mobile */
@media (max-width: 576px) {
  .brand-logo-wrapper {
    gap: 10px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-icon svg {
    width: 20px;
    height: 20px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-sub {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }


  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 100px;
  background-color: #f8faf9;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(7, 127, 70, 0.05);
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(7, 127, 70, 0.03);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(7, 127, 70, 0.03);
  border-radius: 50%;
  z-index: 1;
}

.hero .hero-wrapper {
  position: relative;
  z-index: 2;
}

.hero .hero-content .content-header {
  margin-bottom: 48px;
}

.hero .hero-content .content-header .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .content-header .hero-label i {
  font-size: 16px;
}

.hero .hero-content .content-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .content-header h1 {
    font-size: 2.4rem;
  }
}

.hero .hero-content .content-header p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}



.hero .hero-content .search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--accent-color);
  color: #ffffff !important;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(7, 127, 70, 0.2);
  border: none;
  cursor: pointer;
}

.hero .hero-content .search-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(7, 127, 70, 0.3);
  background-color: #066d3c;
}

.hero .hero-content .search-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero .hero-content .search-btn:hover i {
  transform: rotate(15deg) scale(1.1);
}

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

@media (max-width: 576px) {
  .hero .hero-content .achievement-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.hero .hero-content .achievement-grid .achievement-item {
  text-align: center;
  padding: 24px 16px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.hero .hero-content .achievement-grid .achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(7, 127, 70, 0.08);
  border-color: rgba(7, 127, 70, 0.1);
}

.hero .hero-content .achievement-grid .achievement-item .achievement-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.hero .hero-content .achievement-grid .achievement-item .achievement-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 600;
}

.hero .hero-visual .visual-container {
  position: relative;
  height: 650px;
}

.hero .hero-visual .visual-container .featured-property {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  border: 8px solid #ffffff;
}

.hero .hero-visual .visual-container .featured-property img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .visual-container .featured-property .property-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 40px 24px 24px;
  color: white;
}

.hero .hero-visual .visual-container .featured-property .property-info .property-price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero .hero-visual .visual-container .featured-property .property-info .property-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero .hero-visual .visual-container .featured-property .property-info .property-details span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.hero .hero-visual .visual-container .featured-property .property-info .property-details span i {
  font-size: 13px;
}

.hero .hero-visual .visual-container .overlay-images .overlay-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 4px solid var(--surface-color);
}

.hero .hero-visual .visual-container .overlay-images .overlay-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-visual .visual-container .overlay-images .overlay-1 {
  top: 60px;
  right: -40px;
  width: 140px;
  height: 140px;
}

.hero .hero-visual .visual-container .overlay-images .overlay-2 {
  top: 240px;
  right: -20px;
  width: 120px;
  height: 120px;
}


@media (max-width: 992px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero .hero-visual {
    margin-top: 60px;
  }

  .hero .hero-visual .visual-container {
    height: 500px;
  }

  .hero .hero-visual .visual-container .featured-property {
    height: 380px;
  }

  .hero .hero-visual .visual-container .overlay-images .overlay-1 {
    top: 40px;
    right: -20px;
    width: 120px;
    height: 120px;
  }

  .hero .hero-visual .visual-container .overlay-images .overlay-2 {
    top: 180px;
    right: 0;
    width: 100px;
    height: 100px;
  }

  .hero .hero-visual .visual-container .agent-card {
    bottom: -10px;
    left: -20px;
    width: 280px;
    padding: 16px;
  }

  .hero .hero-visual .visual-container .agent-card .agent-profile .agent-photo {
    width: 50px;
    height: 50px;
  }

  .hero .search-container {
    padding: 28px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 0 40px;
  }

  .hero .hero-content .content-header .hero-label {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero .search-container {
    padding: 20px;
  }

  .hero .search-container .search-header h3 {
    font-size: 1.3rem;
  }

  .hero .achievement-grid .achievement-item {
    padding: 16px 12px;
  }

  .hero .achievement-grid .achievement-item .achievement-number {
    font-size: 1.8rem;
  }

  .hero .hero-visual .visual-container .featured-property {
    height: 300px;
  }

  .hero .hero-visual .visual-container .featured-property .property-info {
    padding: 30px 20px 20px;
  }

  .hero .hero-visual .visual-container .featured-property .property-info .property-price {
    font-size: 1.5rem;
  }

  .hero .hero-visual .visual-container .overlay-images .overlay-1 {
    width: 100px;
    height: 100px;
  }

  .hero .hero-visual .visual-container .overlay-images .overlay-2 {
    width: 80px;
    height: 80px;
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .image-gallery {
  position: relative;
  height: 100%;
}

.home-about .image-gallery .primary-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.home-about .image-gallery .primary-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image img {
    height: 300px;
  }
}

.home-about .image-gallery .primary-image .experience-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--accent-color);
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--contrast-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image .experience-badge {
    top: 1rem;
    left: 1rem;
    padding: 1rem;
  }
}

.home-about .image-gallery .primary-image .experience-badge .badge-content {
  text-align: center;
}

.home-about .image-gallery .primary-image .experience-badge .badge-content .number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image .experience-badge .badge-content .number {
    font-size: 1.5rem;
  }
}

.home-about .image-gallery .primary-image .experience-badge .badge-content .text {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.9;
}

.home-about .image-gallery .secondary-image {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--surface-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .home-about .image-gallery .secondary-image {
    display: none;
  }
}

.home-about .image-gallery .secondary-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.home-about .content {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .home-about .content {
    padding-left: 0;
    margin-top: 2rem;
  }
}

.home-about .content .section-header {
  margin-bottom: 2rem;
}

.home-about .content .section-header .section-label {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.home-about .content .section-header h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 768px) {
  .home-about .content .section-header h2 {
    font-size: 1.8rem;
  }
}

.home-about .content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.home-about .content .achievements-list {
  margin-bottom: 2.5rem;
}

.home-about .content .achievements-list .achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.home-about .content .achievements-list .achievement-item:last-child {
  margin-bottom: 0;
}

.home-about .content .achievements-list .achievement-item .achievement-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about .content .achievements-list .achievement-item .achievement-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.home-about .content .achievements-list .achievement-item .achievement-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.home-about .content .achievements-list .achievement-item .achievement-content p {
  font-size: 0.9rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.home-about .content .action-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .home-about .content .action-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.home-about .content .action-section .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.home-about .content .action-section .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

.home-about .content .action-section .btn-cta:hover i {
  transform: translateX(3px);
}

.home-about .content .action-section .btn-cta i {
  transition: transform 0.3s ease;
}

.home-about .content .action-section .contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-about .content .action-section .contact-info .contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about .content .action-section .contact-info .contact-icon i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.home-about .content .action-section .contact-info .contact-details {
  display: flex;
  flex-direction: column;
}

.home-about .content .action-section .contact-info .contact-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.1rem;
}

.home-about .content .action-section .contact-info .contact-details strong {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 700;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-height: 280px;
}

.featured-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  transition: width 0.4s ease;
  z-index: 1;
}

.featured-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-services .service-card:hover::before {
  width: 4px;
}

.featured-services .service-card:hover .service-visual img {
  transform: scale(1.05);
}

.featured-services .service-card:hover .service-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.featured-services .service-card:hover .service-icon i {
  color: var(--contrast-color);
}

.featured-services .service-card .service-icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.featured-services .service-card .service-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.featured-services .service-card .service-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.featured-services .service-card .service-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-services .service-card .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-services .service-card .service-info h3 a:hover {
  color: var(--accent-color);
}

.featured-services .service-card .service-info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-services .service-card .service-info .service-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.featured-services .service-card .service-info .service-highlights li {
  display: flex;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
  color: var(--default-color);
}

.featured-services .service-card .service-info .service-highlights li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.featured-services .service-card .service-info .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.featured-services .service-card .service-info .service-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.featured-services .service-card .service-info .service-link:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.featured-services .service-card .service-info .service-link:hover::after {
  width: 100%;
}

.featured-services .service-card .service-info .service-link:hover i {
  transform: translate(3px, -3px);
}

.featured-services .service-card .service-info .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.featured-services .service-card .service-visual {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.featured-services .service-card .service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-services .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.featured-services .btn-view-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

.featured-services .btn-view-all:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-services .btn-view-all:hover::before {
  left: 100%;
}

.featured-services .btn-view-all:hover i {
  transform: translateX(4px);
}

.featured-services .btn-view-all i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .featured-services .service-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    min-height: auto;
  }

  .featured-services .service-card .service-visual {
    width: 100px;
    height: 100px;
    align-self: center;
  }

  .featured-services .service-card .service-icon {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .featured-services .service-card {
    padding: 24px 20px;
  }

  .featured-services .service-card .service-info h3 {
    font-size: 20px;
  }

  .featured-services .service-card .service-info p {
    font-size: 14px;
  }

  .featured-services .service-card .service-info .service-highlights li {
    font-size: 13px;
  }

  .featured-services .service-card .service-visual {
    width: 80px;
    height: 80px;
  }

  .featured-services .service-card .service-icon {
    width: 56px;
    height: 56px;
  }

  .featured-services .service-card .service-icon i {
    font-size: 24px;
  }

  .featured-services .btn-view-all {
    padding: 16px 28px;
    font-size: 15px;
    margin-top: 32px;
  }
}





/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--surface-color);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.services .service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-block:hover .service-image img {
  transform: scale(1.05);
}

.services .service-block:hover .image-overlay {
  opacity: 0.9;
}

.services .service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.services .service-block:nth-child(even) .service-content {
  text-align: right;
}

.services .service-block:nth-child(even) .service-content .service-number {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #ff6b35 20%), var(--accent-color));
}

.services .service-content {
  flex: 1;
  min-width: 0;
}

.services .service-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4285f4 20%));
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-info h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.services .service-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.services .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services .service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--default-color);
}

.services .service-features li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.services .service-features li:last-child {
  margin-bottom: 0;
}

.services .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.services .service-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateX(5px);
  color: var(--contrast-color);
}

.services .service-btn:hover i {
  transform: translateX(3px);
}

.services .service-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services .service-image {
  width: 280px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.services .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.services .service-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 30%), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services .service-image .image-overlay i {
  font-size: 48px;
  color: var(--contrast-color);
}

.services .cta-section {
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 30px;
  padding: 60px 50px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.services .cta-section:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url("../img/bg/dotted-world-1.webp") no-repeat center;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.services .cta-section .cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.services .cta-section .cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services .cta-section .cta-content p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services .cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.services .cta-section .cta-buttons .btn-primary,
.services .cta-section .cta-buttons .btn-secondary {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services .cta-section .cta-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .cta-section .cta-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.services .cta-section .cta-buttons .btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.services .cta-section .cta-buttons .btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .cta-section .cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.services .cta-section .cta-stats .stat-item {
  text-align: center;
}

.services .cta-section .cta-stats .stat-item .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.services .cta-section .cta-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .services .service-block {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }

  .services .service-block .service-content {
    text-align: center !important;
  }

  .services .service-block .service-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }

  .services .cta-section {
    padding: 40px 30px;
  }

  .services .cta-section .cta-content h3 {
    font-size: 28px;
  }

  .services .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services .cta-section .cta-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .services .service-block {
    padding: 30px 25px;
  }

  .services .service-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .services .service-info h4 {
    font-size: 24px;
  }

  .services .service-features li {
    font-size: 14px;
  }

  .services .cta-section .cta-content h3 {
    font-size: 24px;
  }

  .services .cta-section .cta-stats .stat-number {
    font-size: 36px;
  }
}



/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
}

.contact-2 .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.contact-2 .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  margin-bottom: 15px;
}

.contact-2 .contact-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-2 .contact-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-2 .contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 180px;
}

.contact-2 .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 13px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
}

.contact-2 .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-info-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: 0.3s;
  height: 100%;
}

.contact-2 .contact-info-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-5px);
}

.contact-2 .contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-2 .contact-info-card .icon-box i {
  font-size: 26px;
}

.contact-2 .contact-info-card .info-content h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact-2 .contact-info-card .info-content p {
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

.contact-2 .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-2 .map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact-2 .contact-form-wrapper {
    padding: 30px;
  }

  .contact-2 .contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact-2 .contact-info-card {
    padding: 25px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-2 .contact-info-card .icon-box {
    margin-bottom: 15px;
  }

  .contact-2 .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact-2 .contact-form-wrapper {
    padding: 20px;
  }

  .contact-2 .contact-form-wrapper h2 {
    font-size: 22px;
  }

  .contact-2 .contact-info-card {
    padding: 20px;
  }

  .contact-2 .map-container iframe {
    height: 350px;
  }
}

/* Service Area Section Enhanced */
.service-area-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.area-item {
  background: var(--surface-color);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--default-color);
  border: 1px solid rgba(7, 127, 70, 0.1);
  cursor: default;
}

.area-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(7, 127, 70, 0.15);
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.area-item i {
  font-size: 1.1rem;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.area-item:hover i {
  color: #fff !important;
}

/* FAQ Section Enhanced */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(7, 127, 70, 0.08);
}

.faq-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
  padding-right: 40px;
  line-height: 1.4;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-item .faq-icon {
  font-size: 1.4rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.faq-active {
  border-left: 6px solid var(--accent-color);
  background: linear-gradient(to right, rgba(7, 127, 70, 0.02), var(--surface-color));
}

.faq-item.faq-active .faq-content {
  max-height: 500px;
  padding-top: 15px;
  opacity: 1;
}

.faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: 0.3s;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}

@media (max-width: 576px) {
  .area-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }
}

/* Service Card Enhanced Styling */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(7, 127, 70, 0.15);
}

.service-card .service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: -30px auto 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(7, 127, 70, 0.3);
}

.service-card .service-icon i {
  font-size: 24px;
}

.service-card .service-info {
  padding: 0 20px 20px;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--default-color);
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card .list-unstyled {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card .list-unstyled li {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Detailed Service Sections */
.service-details-section {
  padding: 100px 0;
}

.service-details-section .service-img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-details-section .service-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.service-details-section .content-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.service-details-section .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  opacity: 0.85;
  margin-bottom: 25px;
}

.service-details-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details-section .feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
}

.service-details-section .feature-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Custom CTA Sections */
.custom-cta-section {
  padding: 80px 0;
  background-color: var(--accent-color);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.custom-cta-section .cta-content {
  position: relative;
  z-index: 2;
}

.custom-cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.custom-cta-section p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.custom-cta-section .btn-light-cta {
  display: inline-block;
  background-color: #ffffff;
  color: var(--accent-color) !important;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-cta-section .btn-light-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background-color: #f0fdf4;
}

.custom-cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.custom-cta-section::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

@media (max-width: 992px) {
  .service-details-section {
    padding: 60px 0;
    text-align: center;
  }

  .service-details-section .content-wrapper h2 {
    font-size: 2rem;
  }

  .service-details-section .feature-list li {
    justify-content: center;
  }

  .custom-cta-section h2 {
    font-size: 2.2rem;
  }
}