/********** Executive Theme CSS - Professional, Business & Sleek **********/

/********** 1. Variables **********/
:root {
  /* Primary Colors - Rich Teal */
  --primary: #00796b;      /* Rich Teal - Professional & Contemporary */
  --primary-light: #009688; /* Slightly lighter teal */
  --primary-dark: #004d40;  /* Deeper teal for hover states */
  
  /* Secondary Colors - Deep Gold */
  --secondary: #ffc107;    /* Gold - Suggests premium quality & trust */
  --secondary-light: #ffca28; /* Brighter gold for highlights */
  --secondary-dark: #ffa000; /* Deeper gold for hover states */
  
  /* UI Colors */
  --accent: #5c6bc0;       /* Indigo - Modern secondary accent */
  --light: #f8f9fa;        /* Off-white background */
  --dark: #263238;         /* Almost black - Rich dark text */
  --body-bg: #f5f5f5;      /* Light gray background - Clean and minimal */
  --text-color: #37474f;   /* Dark blue-gray for readability */
  
  /* Grayscale */
  --gray-100: #f8f9fa;     /* Lightest gray */
  --gray-200: #e9ecef;     /* Light gray */
  --gray-300: #dee2e6;     /* Medium light gray */
  --gray-400: #ced4da;     /* Medium gray */
  --gray-500: #adb5bd;     /* Medium dark gray */
  --gray-700: #495057;     /* Dark gray */
  --gray-900: #212529;     /* Almost black */
}

/********** 2. Base Styles **********/
/* General Style */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--body-bg);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

p {
  font-size: 1rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--primary-dark);
}

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

/* Background Colors */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important; 
}

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

.bg-light {
  background-color: var(--light) !important;
}

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

/* Text Colors */
.text-primary {
  color: var(--primary) !important;
}

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

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

.text-white {
  color: #FFFFFF !important;
}

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

/* Utility Classes */
.rounded-4 {
  border-radius: 4px !important; /* Sharper corners for business look */
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
}

.shadow {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
}

/* Animations */
.animated-text {
  background: linear-gradient(90deg, #FFFFFF, #f5f5f5, #FFFFFF);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: #FFFFFF;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes blob-animate {
  0% {
    transform: scale(1) translate(0px, 0px);
  }
  33% {
    transform: scale(1.05) translate(5px, 5px);
  }
  66% {
    transform: scale(0.95) translate(-5px, 5px);
  }
  100% {
    transform: scale(1) translate(0px, 0px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 121, 107, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 121, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 121, 107, 0);
  }
}

/********** 3. Button Styles **********/
.btn {
  font-weight: 500;
  padding: 0.7rem 1.8rem;
  transition: all 0.25s ease;
  border: none;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.3px;
  font-size: 0.9rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--dark);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent);
  filter: brightness(90%);
  color: white;
}

.btn-light {
  background-color: white;
  color: var(--primary);
}

.btn-light:hover {
  background-color: var(--gray-100);
  color: var(--primary-dark);
}

.btn-outline-light {
  border: 1px solid white;
  color: white;
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.4rem;
  font-size: 0.85rem;
}

.rounded-pill {
  border-radius: 50px !important;
}

/********** 4. Section Title Styles **********/
.section-title {
  margin-bottom: 3rem;
}

.section-title .subtitle {
  display: inline-block;
  background-color: rgba(0, 121, 107, 0.08);
  color: var(--primary);
  font-weight: 500;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title .title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  letter-spacing: -0.3px;
}

.title-shape {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

.title-shape.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/********** 5. Navbar and Topbar Styles **********/
/* Topbar */
.topbar {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: var(--primary-dark);
}

.topbar-link, .topbar-social {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.topbar-link:hover, .topbar-social:hover {
  color: var(--secondary);
}

/* Navbar Container */
.navbar-fixed-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0;
  transition: all 0.3s ease;
}

/* Initial navbar style */
#mainNavbar {
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 0.8rem 0;
}

/* Navbar after scroll */
#mainNavbar.navbar-scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Text colors */
#mainNavbar .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

/* Dark text after scroll */
#mainNavbar.navbar-scrolled .navbar-nav .nav-link {
  color: var(--dark);
}

/* Active and hover states */
#mainNavbar .navbar-nav .nav-link:hover, 
#mainNavbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

#mainNavbar.navbar-scrolled .navbar-nav .nav-link:hover, 
#mainNavbar.navbar-scrolled .navbar-nav .nav-link.active {
  color: var(--primary);
}

/* Active indicator */
#mainNavbar .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: calc(100% - 2rem);
  height: 2px;
  background: var(--primary);
}

#mainNavbar.navbar-scrolled .navbar-nav .nav-link.active::after {
  background: var(--primary);
}

/* Hamburger icon color */
#mainNavbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2838, 50, 56, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNavbar.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2838, 50, 56, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu background */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }

  #mainNavbar.navbar-scrolled .navbar-collapse {
    background-color: #ffffff;
  }

  #mainNavbar .navbar-nav .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1rem;
  }

  #mainNavbar.navbar-scrolled .navbar-nav .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  #mainNavbar .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/********** 6. Hero Section **********/
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 7rem 0 0;
  overflow: hidden;
  min-height: 600px;
}

.hero-section + section {
  padding-top: 3rem;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  margin-left: 2rem;
}

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

.hero-img {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.blob-shape {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  background-color: var(--secondary);
  z-index: -1;
  animation: blob-animate 8s ease-in-out infinite;
  opacity: 0.7;
  border-radius: 4px;
  transform: rotate(15deg);
}

.badge-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-text {
  color: white;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Custom curved wave divider */
.curved-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.curved-wave-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  fill: var(--light);
}

/* Make sure content is positioned above the wave */
.z-1 {
  position: relative;
  z-index: 2;
}

/********** 7. Stats Counter Section **********/
.stats-counter {
  background-color: white;
  padding: 4rem 0;
}

.counter-item {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
}

.counter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.counter-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-size: 1.5rem;
  border-radius: 4px;
  margin-right: 1.5rem;
}

.counter-content {
  flex: 1;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
  line-height: 1;
}

.counter-text {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

/********** 8. About Section **********/
.about-section {
  padding: 5rem 0;
  background-color: white;
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--primary);
  color: white;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-shape {
  position: absolute;
  top: -3rem;
  left: -3rem;
  width: 180px;
  height: 180px;
  background-color: var(--primary);
  opacity: 0.05;
  border-radius: 4px;
  z-index: -1;
  transform: rotate(15deg);
}

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

.about-text {
  color: var(--gray-700);
  line-height: 1.8;
}

/********** 9. Why Choose Us Section **********/
.why-choose-section {
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.why-choose-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.why-shape {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 180px;
  height: 180px;
  background-color: var(--primary);
  opacity: 0.05;
  border-radius: 4px;
  z-index: -1;
  transform: rotate(15deg);
}

.why-badges {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.why-badge {
  background: white;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
}

.why-badge i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: var(--primary);
}

.why-badge span {
  font-weight: 500;
  color: var(--dark);
  font-size: 0.9rem;
}

.why-choose-text {
  color: var(--gray-700);
  line-height: 1.8;
}

/********** 10. Service Cards **********/
.service-card {
  padding: 2rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 121, 107, 0.08);
  color: var(--primary);
  font-size: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}

.service-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-content p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

/********** 11. Services Section **********/
.services-section {
  background-color: white;
  padding: 5rem 0;
}

.service-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  background: transparent;
  box-shadow: none;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item-inner {
  padding: 2rem;
  border-radius: 4px;
  background: white;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 3px solid var(--primary);
}

.service-item-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(0, 121, 107, 0.02), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.service-item:hover .service-item-inner {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.service-item:hover .service-item-inner::before {
  height: 100%;
}

.service-item .service-icon {
  margin: 0 auto 1.5rem;
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.service-link {
  color: var(--dark);
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary);
}

.service-text {
  color: var(--gray-700);
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-item .btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/********** 12. CTA Sections **********/
/* Regular CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  position: relative;
  line-height: 1.8;
}

/* Small CTA Section */
.small-cta-section {
  padding: 3rem 0;
}

.small-cta-wrapper {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.small-cta-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.small-cta-content {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  line-height: 1.8;
}

/********** 13. Service Areas Section **********/
.service-areas-section {
  padding: 5rem 0;
}

.service-areas-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.service-areas-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill- rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.zip-codes-content, .nearby-cities-content {
  position: relative;
  z-index: 2;
}

.nearby-city-link {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.nearby-city-link:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

/********** 14. Areas Section **********/
.areas-section {
  background-color: var(--body-bg);
  padding: 5rem 0;
}

.map-container {
  position: relative;
  height: 450px;
  margin-bottom: 3rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
}

.area-link {
  display: block;
  text-decoration: none;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary);
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  background-color: var(--primary);
  color: white;
  border-left: 3px solid var(--secondary);
}

.area-card i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.area-card:hover i {
  color: white;
}

.area-card span {
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.area-card:hover span {
  color: white;
}

/********** 15. FAQ Section **********/
.faq-section {
  background-color: white;
  padding: 5rem 0;
}

.accordion-item {
  border: none;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  background-color: white;
  color: var(--dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(0, 121, 107, 0.03);
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300796b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300796b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.8;
}

/********** 16. Testimonials Section **********/
.testimonials-section {
  background-color: var(--gray-100);
  padding: 5rem 0;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 121, 107, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-right: 1rem;
}

.author-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.author-info p {
  color: var(--gray-500);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/********** 17. Contact Info Section **********/
.contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 121, 107, 0.1);
  color: var(--primary);
  border-radius: 4px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-item p {
  margin-bottom: 0;
  line-height: 1.8;
}

.contact-item p a {
  color: var(--primary);
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-item p a:hover {
  color: var(--primary-dark);
}

/********** 18. Footer **********/
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

.footer-contact .contact-item i {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.footer-contact .contact-item p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact .contact-item p a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact .contact-item p a:hover {
  color: var(--secondary);
}

.hours-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.hours-list li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.hours-list li span {
  font-weight: 600;
  color: white;
}

.footer-form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 4px;
}

.disclaimer {
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.5);
}

.copyright {
  background-color: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.5);
}

/********** 19. Floating Button & Back to Top **********/
.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 99;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.back-to-top:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-5px);
}

/********** 20. Responsive Styles **********/
@media (max-width: 1199.98px) {
  .hero-section {
    padding: 5rem 0 6rem;
  }

  .section-title .title {
    font-size: 2rem;
  }

  .counter-number {
    font-size: 2.2rem;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
  }

  .experience-badge .years {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    max-height: 40px;
  }

  .hero-section {
    padding: 5rem 0;
    text-align: center;
    min-height: 500px;
  }

  .curved-wave-divider svg {
    height: 60px; /* Smaller wave on tablets */
  }

  .blob-shape {
    display: none;
  }

  .badge-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .btn {
    margin: 0 auto;
  }

  .section-title .title {
    font-size: 1.8rem;
  }

  .about-content {
    padding-left: 0;
    margin-top: 3rem;
    text-align: center;
  }

  .about-content .title-shape {
    margin-left: auto;
    margin-right: auto;
  }

  .about-content .btn {
    margin: 0 auto;
  }

  .why-choose-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .why-choose-content .title-shape {
    margin-left: auto;
    margin-right: auto;
  }

  .why-choose-content .btn {
    margin: 0 auto;
  }

  .service-areas-wrapper {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 6rem;
    margin-bottom: 30px;
  }

  .curved-wave-divider svg {
    height: 40px; /* Smaller wave on mobile */
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .section-title .title {
    font-size: 1.6rem;
  }

  .counter-item {
    margin-bottom: 1.5rem;
  }

  .experience-badge {
    right: 0;
  }

  .why-badges {
    display: none;
  }

  .service-areas-wrapper {
    padding: 2rem 1rem;
  }

  .small-cta-wrapper {
    text-align: center;
  }

  .footer {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer .contact-item {
    flex-direction: column;
    align-items: center;
  }

  .footer .contact-item i {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .footer-form {
    margin-top: 2rem;
  }

  .navbar-brand img {
    max-height: 35px;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .section-title .title {
    font-size: 1.5rem;
  }

  .floating-btn, .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
