@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: "Ubuntu",  sans-serif;
  --nav-font: "Poppins",  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: #363f40; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1f2f31; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #099aa7; /* 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: #363f40;  /* The default color of the main navmenu links */
  --nav-hover-color: #099aa7; /* 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: #363f40; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #099aa7; /* 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: #f7f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# YBCleaners Modern Logo
--------------------------------------------------------------*/
.header .logo h1 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1px;
  color: var(--heading-color);
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
}

.header .logo h1 span {
  color: var(--accent-color);
  position: relative;
  margin-left: 2px;
}

.header .logo h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-color);
  opacity: 0.2;
  border-radius: 2px;
}

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

/* Deleted: .php-email-form styles removed as per requirements */

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  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: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  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 .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
  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-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.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 20%);
  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 30%);
  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: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 8px;
  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 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: 500;
  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 {
  padding: 140px 0 100px;
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .hero-content {
  max-width: 900px;
  margin: 0 auto 60px;
}

.hero .badge-container {
  margin-bottom: 1.5rem;
}

.hero .hero-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.hero .hero-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 750px;
  margin: 0 auto;
}

.hero .hero-image-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.hero .image-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero .main-image {
  border-radius: 40px;
  box-shadow: 0 40px 100px color-mix(in srgb, var(--accent-color), transparent 85%);
  border: 8px solid var(--surface-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .image-wrapper:hover .main-image {
  transform: translateY(-10px);
  box-shadow: 0 50px 120px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.hero .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: all 0.4s ease;
}

.hero .floating-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.95);
}

.hero .emergency-card {
  top: 15%;
  left: -10%;
}

.hero .stats-card {
  bottom: 15%;
  right: -10%;
  display: flex;
  gap: 2rem;
}

.hero .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .card-content i {
  font-size: 2.25rem;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 12px;
  border-radius: 18px;
}

.hero .card-content .text {
  text-align: left;
}

.hero .card-content .label {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.hero .card-content .number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
}

.hero .stat-item {
  text-align: center;
}

.hero .stat-item .number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero .stat-item .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.hero .cta-section {
  margin-top: 60px;
}

.hero .cta-buttons .btn {
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .cta-buttons .btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-stats {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero .hero-stats .stat-group {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.hero .hero-stats .stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .hero-stats .stat i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-stats .stat .stat-text {
  text-align: left;
}

.hero .hero-stats .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .hero-stats .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero .background-elements {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero .bg-shape {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 50%;
}

.hero .shape-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-color);
  top: -100px;
  right: -100px;
}

.hero .shape-2 {
  width: 400px;
  height: 400px;
  background: color-mix(in srgb, var(--accent-color), transparent 40%);
  bottom: -50px;
  left: -100px;
}

@media (max-width: 1200px) {
  .hero .emergency-card {
    left: -5%;
  }
  .hero .stats-card {
    right: -5%;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
  }
  .hero .hero-stats .stat-group {
    gap: 2rem;
  }
  .hero .emergency-card, .hero .stats-card {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 20px auto;
    width: fit-content;
    display: inline-flex;
  }
  .hero .image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero .main-image {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .hero .hero-stats .stat-group {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .hero .cta-buttons .btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.home-about .section-heading {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .home-about .section-heading {
    font-size: 2.25rem;
  }
}

.home-about .lead-description {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
  margin: 0 auto;
}

.home-about .image-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  height: 500px;
}

@media (max-width: 768px) {
  .home-about .image-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1rem;
  }
}

.home-about .image-grid .primary-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 88%);
}

.home-about .image-grid .primary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-about .image-grid .primary-image:hover img {
  transform: scale(1.08);
}

.home-about .image-grid .primary-image .certification-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--surface-color);
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.home-about .image-grid .primary-image .certification-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.home-about .image-grid .primary-image .certification-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

.home-about .image-grid .secondary-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .home-about .image-grid .secondary-images {
    flex-direction: row;
    height: 180px;
  }
}

.home-about .image-grid .secondary-images .small-image {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 92%);
}

.home-about .image-grid .secondary-images .small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-about .image-grid .secondary-images .small-image:hover img {
  transform: scale(1.1);
}

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

@media (max-width: 992px) {
  .home-about .content-wrapper {
    padding-left: 0;
    text-align: center;
  }
}

.home-about .content-wrapper .highlight-box {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

@media (max-width: 992px) {
  .home-about .content-wrapper .highlight-box {
    text-align: left;
  }
}

.home-about .content-wrapper .highlight-box .highlight-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-about .content-wrapper .highlight-box .highlight-icon i {
  color: var(--accent-color);
  font-size: 1.75rem;
}

.home-about .content-wrapper .highlight-box .highlight-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.home-about .content-wrapper .highlight-box .highlight-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

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

.home-about .content-wrapper .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .home-about .content-wrapper .feature-list .feature-item {
    justify-content: center;
  }
}

.home-about .content-wrapper .feature-list .feature-item .feature-icon i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.home-about .content-wrapper .feature-list .feature-item .feature-text {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 400;
}

.home-about .content-wrapper .metrics-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .home-about .content-wrapper .metrics-row {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .home-about .content-wrapper .metrics-row {
    gap: 1rem;
  }
}

.home-about .content-wrapper .metrics-row .metric-box {
  text-align: center;
}

.home-about .content-wrapper .metrics-row .metric-box .metric-number {
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.home-about .content-wrapper .metrics-row .metric-box .metric-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.home-about .content-wrapper .action-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .home-about .content-wrapper .action-buttons {
    justify-content: center;
  }
}

.home-about .content-wrapper .action-buttons .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.home-about .content-wrapper .action-buttons .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--contrast-color);
}

.home-about .content-wrapper .action-buttons .btn-contact {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.home-about .content-wrapper .action-buttons .btn-contact i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.home-about .content-wrapper .action-buttons .btn-contact:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .home-about {
    padding: 80px 0;
  }

  .home-about .content-wrapper {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.featured-services .service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-services .service-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.featured-services .service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.featured-services .service-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--surface-color), transparent);
}

.featured-services .service-content {
  padding: 30px 25px;
}

.featured-services .service-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  line-height: 1.4;
}

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

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

.featured-services .service-link:hover {
  color: var(--heading-color);
  gap: 12px;
}

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

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

@media (max-width: 768px) {
  .featured-services .service-icon {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
  }

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

  .featured-services .service-image {
    height: 180px;
  }

  .featured-services .service-content {
    padding: 20px;
  }

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


/* Call To Action Section removed as per requirements */

/* About Section removed as per requirements */

/* Services Section removed as per requirements */

/*--------------------------------------------------------------
# Service Details Sections
--------------------------------------------------------------*/
.section-title.text-start h2 {
  padding-bottom: 15px;
}

.section-title.text-start h2:before {
  margin: 0;
  left: 0;
}

.section-title.text-start h2::after {
  margin: 0;
  left: 0;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/*--------------------------------------------------------------
# Service Area Section
--------------------------------------------------------------*/
.service-area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.service-area-grid .area-pill {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-area-grid .area-pill:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 25px 30px 25px 60px;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  left: 20px;
  top: 26px;
  font-size: 24px;
  color: var(--accent-color);
  line-height: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--heading-color);
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 28px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  color: var(--default-color);
  background: var(--surface-color);
  padding: 40px 30px;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.contact .info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .info-box i {
  font-size: 36px;
  color: var(--accent-color);
  border-radius: 12px;
  padding: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  margin-bottom: 25px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.contact .info-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .info-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--heading-color);
}

.contact .info-box p {
  padding: 0;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .info-box a {
  color: inherit;
  transition: 0.3s;
}

.contact .info-box a:hover {
  color: var(--accent-color);
}

.contact .map-container {
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.contact .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .contact .map-container {
    min-height: 350px;
    margin-top: 20px;
  }
}

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

@media (max-width: 992px) {
  .contact .info-box {
    margin-bottom: 20px;
    padding: 20px;
  }
}

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

  .contact .info-box i {
    font-size: 28px;
    padding: 12px;
  }

  .contact .info-box h3 {
    font-size: 18px;
  }
}
