@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: #323b3b;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #163535;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2c7a7b;
  /* 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: #323b3b;
  /* The default color of the main navmenu links */
  --nav-hover-color: #2c7a7b;
  /* 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: #323b3b;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2c7a7b;
  /* 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: #eaf9f9;
  --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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  position: relative;
}

.header .logo h1::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
  border-radius: 2px;
}

.header .logo {
  text-decoration: none;
  transition: 0.3s;
}

.header .logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s;
}

.header .logo .logo-icon i {
  color: var(--contrast-color);
  font-size: 22px;
}

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

.header .logo .logo-main {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.header .logo .logo-sub {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  font-family: var(--nav-font);
}

.header .logo:hover .logo-icon {
  transform: translateY(-2px) rotate(-5deg);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 576px) {
  .header .logo .logo-icon {
    width: 34px;
    height: 34px;
  }

  .header .logo .logo-icon i {
    font-size: 18px;
  }

  .header .logo .logo-main {
    font-size: 18px;
  }

  .header .logo .logo-sub {
    font-size: 8px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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 .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* 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);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .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: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-content .logo .logo-icon i {
  color: var(--contrast-color);
  font-size: 18px;
}

.footer .footer-content .logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer .footer-content .logo .logo-main {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.footer .footer-content .logo .logo-sub {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  font-family: var(--nav-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--contrast-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  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) 90%, white 25%);
  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 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:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--background-color), transparent 5%) 100%);
  padding: 140px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero .hero-content {
  width: 100%;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .hero-badge i {
  font-size: 12px;
}

.hero .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero .hero-text h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-text p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}


.hero .hero-stats .stat-item {
  text-align: center;
  padding: 16px;
}

.hero .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.hero .hero-stats .stat-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-weight: 500;
}

.hero .hero-images {
  position: relative;
}

.hero .hero-images .image-stack {
  position: relative;
  height: 600px;
}

.hero .hero-images .image-stack .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero .hero-images .image-stack .main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Hero Call Button Styling */
.hero .btn-search {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px 35px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .btn-search:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.hero .btn-search i {
  font-size: 20px;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Floating Emergency Badge Styling */
.hero .hero-images .image-stack .main-image .property-tag {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--surface-color);
  padding: 15px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 5;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-images .image-stack .main-image .property-tag .price {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 2px;
}

.hero .hero-images .image-stack .main-image .property-tag .type {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 992px) {
  .hero .hero-images .image-stack {
    height: 450px;
    margin-top: 50px;
  }

  .hero .hero-images .image-stack .main-image img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .hero .hero-images .image-stack {
    height: 350px;
  }

  .hero .hero-images .image-stack .main-image img {
    height: 300px;
  }

  .hero .hero-images .image-stack .main-image .property-tag {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
  }

  .hero .hero-images .image-stack .main-image .property-tag .price {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .image-section {
  position: relative;
}

.home-about .image-section .main-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.home-about .image-section .main-image-wrapper .main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .main-image {
    height: 350px;
  }
}


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

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

.home-about .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.home-about .content-wrapper .section-badge i {
  font-size: 1rem;
}

.home-about .content-wrapper h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.home-about .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.home-about .content-wrapper .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .home-about .content-wrapper .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.home-about .content-wrapper .stats-grid .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.home-about .content-wrapper .stats-grid .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-about .content-wrapper .stats-grid .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper .stats-grid .stat-item .stat-number {
    font-size: 1.7rem;
  }
}

.home-about .content-wrapper .stats-grid .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

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

.home-about .content-wrapper .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}

.home-about .content-wrapper .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.home-about .content-wrapper .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

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

.home-about .content-wrapper .cta-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.home-about .content-wrapper .cta-wrapper .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

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

.home-about .content-wrapper .cta-wrapper .btn-primary i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text {
  display: flex;
  flex-direction: column;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a {
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a:hover {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 24px 32px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  text-align: center;
  overflow: hidden;
}

.featured-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.4s ease;
  border-radius: 0 0 3px 3px;
}

.featured-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

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

.featured-services .service-card:hover .service-icon {
  background: var(--accent-color);
  transform: rotateY(360deg);
}

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

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

.featured-services .service-card.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
}

.featured-services .service-card.featured::before {
  background: var(--contrast-color);
}

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

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

.featured-services .service-card.featured .service-header .service-number {
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-content h3 a {
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-content h3 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-services .service-card.featured .service-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.featured-services .service-card.featured .service-content .service-features li {
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-content .service-features li i {
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-btn {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
}

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

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

.featured-services .service-card .service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.featured-services .service-card .service-header .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

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

.featured-services .service-card .service-header .service-number {
  font-size: 24px;
  font-weight: 800;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.featured-services .service-card .service-content {
  margin-bottom: 32px;
}

.featured-services .service-card .service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

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

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

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

.featured-services .service-card .service-content .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featured-services .service-card .service-content .service-features li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
  font-size: 14px;
  color: var(--default-color);
}

.featured-services .service-card .service-content .service-features li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
  font-weight: 600;
}

.featured-services .service-card .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.featured-services .service-card .service-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.05);
}

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

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

.featured-services .btn-all-services {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: transparent;
  color: var(--accent-color);
  text-decoration: none;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.featured-services .btn-all-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.featured-services .btn-all-services:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.featured-services .btn-all-services:hover::before {
  left: 0;
}

.featured-services .btn-all-services:hover i {
  transform: rotate(45deg);
}

.featured-services .btn-all-services i {
  font-size: 20px;
  transition: transform 0.4s ease;
}

@media (max-width: 992px) {
  .featured-services .service-card {
    margin-bottom: 30px;
    padding: 36px 20px 28px;
  }

  .featured-services .service-card .service-header {
    margin-bottom: 24px;
  }

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

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

  .featured-services .service-card .service-header .service-number {
    font-size: 22px;
  }

  .featured-services .service-card .service-content {
    margin-bottom: 28px;
  }

  .featured-services .service-card .service-content h3 {
    font-size: 19px;
  }

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

  .featured-services .service-card .service-content .service-features li {
    font-size: 13px;
  }
}

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

  .featured-services .service-card .service-header {
    flex-direction: column;
    gap: 16px;
  }

  .featured-services .service-card .service-header .service-number {
    font-size: 20px;
  }

  .featured-services .service-card .service-content h3 {
    font-size: 18px;
  }

  .featured-services .service-card .service-content .service-features {
    text-align: left;
  }

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


/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}



.why-us .content-wrapper {
  padding-left: 2rem;
}

.why-us .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.why-us .content-wrapper .section-badge i {
  color: var(--accent-color);
}

.why-us .content-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.why-us .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}



/*--------------------------------------------------------------
# Detailed Service Sections & Service Area Styling
--------------------------------------------------------------*/

/* Section Badge consistent with About Section */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.dark-background .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--contrast-color);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Detailed Headers and Body Text */
#residential-detailed,
#commercial-detailed,
#plumbing-detailed {
  padding: 100px 0;
}

#residential-detailed h2,
#commercial-detailed h2,
#plumbing-detailed h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.dark-background h2 {
  color: var(--contrast-color) !important;
}

#residential-detailed p,
#commercial-detailed p,
#plumbing-detailed p {
  font-family: var(--default-font);
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.dark-background p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%) !important;
}

#residential-detailed .lead,
#commercial-detailed .lead,
#plumbing-detailed .lead {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.dark-background .lead {
  color: #fff !important;
}

/* List Styling */
.list-unstyled li {
  font-size: 1.05rem;
}

.text-accent {
  color: var(--accent-color) !important;
}

/* Image Wrapper Effects */
.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* Service Area Icons */
#service-areas .bi-geo-alt-fill {
  color: var(--accent-color) !important;
}

#service-areas .list-unstyled li {
  transition: 0.3s;
  display: flex !important;
  align-items: center;
  padding: 4px 0;
}

#service-areas .list-unstyled li:hover {
  transform: translateX(8px);
  color: var(--accent-color);
}

/* Service Card Images */
.service-card .service-img {
  height: 240px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

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

/* Feature Grid in Domestic/Plumbing */
.features-grid .border {
  padding: 2rem !important;
  background: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 92%) !important;
  border-radius: 16px !important;
  transition: 0.4s ease;
}

.features-grid .border:hover {
  border-color: var(--accent-color) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}