:root {
  --primary-color: rgb(18, 220, 59);
  --primary-dark: rgb(14, 176, 47); /* Slightly darker for hover */
  --text-color: #333;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --font-main: "Open Sans", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  border: none;
  outline: none;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(18, 220, 59, 0.6); /* Vibrant Theme Glow */
  box-shadow: 0 0 20px rgba(18, 220, 59, 0.6); /* Vibrant Theme Glow */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white);
  border-radius: 5px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

/* Sticky Header State */
header.sticky {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: padding 0.3s ease;
  border: none;
  outline: none;
}

header.sticky .navbar {
  padding: 10px 15px;
}

.logo img {
  height: 70px;
  transition: height 0.3s ease;
}

header.sticky .logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* Sticky header - dark text */
header.sticky .nav-links a {
  color: var(--text-color);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

header.sticky .nav-links a:hover,
header.sticky .nav-links a.active {
  color: var(--primary-color);
}

/* CTA Button transitions */
.cta-btn .btn {
  transition: all 0.3s ease;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #333;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Overlay for slides - Further darkened */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    0,
    0,
    0.6
  ); /* Further increased opacity for better text visibility */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding-top: 80px; /* Offset for header */
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Animation for text */
.slide.active .hero-content h1 {
  animation: fadeInUp 1s ease forwards;
}

.slide.active .hero-content p {
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.slide.active .hero-content .btn {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.services {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
}

.section-subtitle {
  margin-bottom: 50px;
  color: #666;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #222;
  color: #ddd;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Contact Links Hover Styles */
footer a[href^="tel:"]:hover,
footer a[href^="mailto:"]:hover {
  color: var(--primary-color) !important;
  transition: color 0.3s ease;
}

.copyright {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.9rem;
}

/* Contact Page Links Hover Styles */
section a[href^="tel:"]:hover,
section a[href^="mailto:"]:hover {
  color: var(--primary-color) !important;
  transition: color 0.3s ease;
}

/* ========================================
   MOBILE NAVIGATION & RESPONSIVE STYLES
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

header.sticky .mobile-menu-toggle {
  color: var(--text-color);
}

.mobile-menu-toggle:hover {
  color: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: var(--bg-light);
}

.mobile-menu-header .logo img {
  height: 50px;
}

/* Mobile Menu Actions */
.mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-action-icon.whatsapp-icon {
  background: #25d366;
  color: var(--white);
}

.mobile-action-icon.whatsapp-icon:hover {
  background: #1da851;
  transform: scale(1.1);
}

.mobile-action-icon.phone-icon {
  background: #4285f4;
  color: var(--white);
}

.mobile-action-icon.phone-icon:hover {
  background: #3367d6;
  transform: scale(1.1);
}

.mobile-menu-close {
  font-size: 1.8rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
  padding: 20px 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav > ul > li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav > ul > li > a {
  display: block;
  padding: 15px 20px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav > ul > li > a:hover,
.mobile-nav > ul > li > a.active {
  color: var(--primary-color);
  background: var(--bg-light);
  padding-left: 30px;
}

/* Mobile Dropdown */
.mobile-dropdown > a i {
  float: right;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active > a i {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9f9f9;
}

.mobile-dropdown.active .mobile-dropdown-content {
  max-height: 500px;
}

.mobile-dropdown-content li a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-dropdown-content li a:hover {
  color: var(--primary-color);
  background: var(--white);
  padding-left: 50px;
}

/* Mobile CTA Button */
.mobile-cta {
  margin: 20px;
  text-align: center;
  display: block !important;
  width: calc(100% - 40px);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  /* Show mobile menu toggle, hide desktop nav */
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links,
  .cta-btn {
    display: none;
  }

  /* Header adjustments */
  .navbar {
    padding: 10px 0;
  }

  .logo img {
    height: 50px;
  }

  header.sticky .logo img {
    height: 45px;
  }

  /* Hero Section */
  .hero-slider {
    height: 60vh;
    min-height: 500px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }

  /* Section Spacing */
  .services,
  .working-process,
  .client-logos,
  .about-preview,
  .testimonials-section,
  .cta-section {
    padding: 50px 0;
  }

  .highlight-section {
    padding: 60px 0;
  }

  /* Typography */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* Container */
  .container {
    padding: 0 15px;
  }
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 300px; /* Increased usage width */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 5px;
  padding: 10px 0;
  top: 100%;
  left: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  padding: 0;
}

.dropdown-content a {
  color: var(--text-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: 0.2s;
  white-space: nowrap; /* Prevent text wrapping */
}

.dropdown-content a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* Page Headers */
.page-header {
  height: 320px; /* Increased from 220px to make it less congested */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 0 20px; /* Added horizontal padding for small screens */
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* Slightly lighter overlay */
}

.page-header h1,
.page-header p {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 2.2rem; /* Reduced from 3rem */
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-header p {
  font-size: 1rem; /* Reduced from 1.2rem */
  font-weight: 500;
  max-width: 800px;
}

/* ========================================
   NEW HOMEPAGE SECTIONS STYLES
   ======================================== */

/* Featured Categories (Overlapping Cards) */
.featured-categories {
  position: relative;
  margin-top: -80px;
  padding: 0 0 80px 0;
  z-index: 10;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.featured-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.featured-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.featured-card:hover .featured-icon {
  transform: scale(1.1) rotate(5deg);
}

.featured-card h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.featured-card p {
  color: #666;
  line-height: 1.6;
}

/* Services Grid Enhanced */
.services-grid-section {
  padding: 80px 0;
  background: var(--bg-light);
}

/* Service Grid Section for Landscaping */
.service-grid-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.service-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.service-grid-item {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

/* Dark overlay for better text readability */
.service-grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: all 0.3s ease;
  z-index: 1;
}

.service-grid-item:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.service-grid-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-solid-green {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}

.service-solid-light {
  background: #f5f5f5;
}

.service-grid-content {
  text-align: center;
  padding: 30px;
  z-index: 2;
  position: relative;
  width: 100%;
}

.service-grid-item i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.service-grid-item.service-solid-green i,
.service-grid-item.service-solid-green h3,
.service-grid-item.service-solid-green p {
  color: var(--white);
}

.service-grid-item.service-solid-light i {
  color: var(--primary-color);
}

.service-grid-item.service-solid-light h3,
.service-grid-item.service-solid-light p {
  color: var(--text-color);
}

.service-grid-item:not(.service-solid-green):not(.service-solid-light) i,
.service-grid-item:not(.service-solid-green):not(.service-solid-light) h3,
.service-grid-item:not(.service-solid-green):not(.service-solid-light) p {
  color: var(--white);
}

.service-grid-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-grid-content p {
  font-size: 0.95rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .service-grid-enhanced {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .service-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-grid-content h3 {
    font-size: 1.2rem;
  }

  .service-grid-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .service-grid-enhanced {
    grid-template-columns: 1fr;
  }
}

/* Highlight Section */
.highlight-section {
  padding: 100px 0;
  background: var(--white);
}

.highlight-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.highlight-text {
  flex: 1;
}

.highlight-text h2 {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.highlight-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
  margin-top: 20px;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  margin-right: 8px;
}

.highlight-image {
  flex: 1;
}

.image-placeholder {
  background: var(--bg-light);
  border-radius: 10px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  border: 2px dashed #ddd;
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.image-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Working Process */
.working-process {
  padding: 80px 0;
  background: #f5f5f5;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(18, 220, 59, 0.3);
}

.step-icon {
  margin: 30px 0 20px;
}

.step-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.process-step h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.process-step p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Client Logos */
.client-logos {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.logo-carousel {
  margin-top: 50px;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
}

.client-logo {
  min-width: 150px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.client-logo:hover {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.client-logo i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.client-logo span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-track:hover {
  animation-play-state: paused;
}

/* About Preview */
.about-preview {
  padding: 80px 0;
  background: #f1f1f1;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.about-image {
  flex: 1;
}

/* Testimonials Carousel */
.testimonials-carousel {
  padding: 80px 0;
  background: var(--white);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
  pointer-events: auto;
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar i {
  font-size: 3rem;
  color: var(--primary-color);
}

.author-info {
  text-align: left;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: #999;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Call to Action Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d8a2f, var(--primary-color));
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-cta {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  font-size: 1.1rem;
  padding: 15px 40px;
}

.btn-cta:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Bar */
.contact-bar {
  padding: 40px 0;
  background: #222;
  color: var(--white);
}

.contact-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.contact-bar-text h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-bar-text p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ======================================== */

@media (max-width: 1024px) {
  .services-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-categories {
    margin-top: -40px;
    padding: 0 0 50px 0;
  }

  .featured-card {
    padding: 30px 20px;
  }

  .services-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-grid-item {
    min-height: 220px;
  }

  .service-grid-content h3 {
    font-size: 1.3rem;
  }

  .service-grid-content p {
    font-size: 0.9rem;
  }

  .highlight-content {
    flex-direction: column;
    gap: 30px;
  }

  .highlight-text h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .highlight-text p {
    font-size: 1rem;
  }

  .highlight-image img,
  .image-placeholder {
    height: 300px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-step {
    padding: 25px 15px;
  }

  .step-icon i {
    font-size: 2.5rem;
  }

  .process-step h3 {
    font-size: 1.2rem;
  }

  .process-step p {
    font-size: 0.9rem;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-image img,
  .about-image .image-placeholder {
    height: 300px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .contact-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .contact-bar-item {
    justify-content: center;
  }

  .logo-track {
    gap: 30px;
  }

  .client-logo {
    min-width: 120px;
    height: 80px;
    padding: 15px;
  }

  .client-logo i {
    font-size: 2rem;
  }

  /* Testimonials */
  .testimonials-carousel {
    padding: 50px 0;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-author h4 {
    font-size: 1rem;
  }

  .testimonial-author p {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .footer-col ul li {
    font-size: 0.9rem;
  }

  /* Page Headers */
  .page-header {
    height: 200px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  /* Touch-friendly adjustments */
  .btn {
    min-height: 44px;
    padding: 12px 25px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-icon {
    font-size: 2.5rem;
  }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
  font-size: 2rem;
  color: var(--white);
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(37, 211, 102, 0.6),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

/* Tooltip for WhatsApp button */
.whatsapp-button::before {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  background: #333;
  color: var(--white);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.whatsapp-button::after {
  content: "";
  position: absolute;
  right: 60px;
  border: 6px solid transparent;
  border-left-color: #333;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.whatsapp-button:hover::before,
.whatsapp-button:hover::after {
  opacity: 1;
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .whatsapp-button i {
    font-size: 1.8rem;
  }

  .whatsapp-button::before {
    display: none;
  }

  .whatsapp-button::after {
    display: none;
  }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* About Intro Section (Who We Are) */
.about-intro-section {
  padding: 80px 0;
  background: var(--white);
}

.about-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-section-title {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -1px;
}

.about-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

/* Experience Highlight Section */
.experience-highlight-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(18, 220, 59, 0.05),
    rgba(18, 220, 59, 0.1)
  );
  border-top: 1px solid rgba(18, 220, 59, 0.1);
  border-bottom: 1px solid rgba(18, 220, 59, 0.1);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.stat-card {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(18, 220, 59, 0.2);
}

.stat-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.experience-content h3 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.experience-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

/* Vision Section */
.vision-section {
  padding: 80px 0;
  background: var(--white);
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-choose-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-top-color: var(--primary-color);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-choose-card h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.why-choose-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* About CTA Section */
.about-cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: movePattern 20s linear infinite;
  opacity: 0.3;
}

@keyframes movePattern {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-cta-content p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 35px;
  opacity: 0.95;
}

.btn-light-cta {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-light-cta:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
  .about-section-title {
    font-size: 2rem;
  }

  .about-intro-text,
  .vision-text {
    font-size: 1rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .experience-content h3 {
    font-size: 1.6rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-cta-content h2 {
    font-size: 1.8rem;
  }

  .about-cta-content p {
    font-size: 1rem;
  }

  .btn-light-cta {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .about-intro-section,
  .experience-highlight-section,
  .vision-section,
  .why-choose-section {
    padding: 50px 0;
  }

  .about-cta-section {
    padding: 60px 0;
  }
}

/* ========================================
   ENHANCED SERVICE PAGES STYLES
   ======================================== */

/* Two-Column Introduction Section */
.service-intro-enhanced {
  padding: 80px 0;
  background: var(--white);
}

.intro-two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.3;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.intro-content ul {
  list-style: none;
  margin: 25px 0;
}

.intro-content ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  color: #555;
}

.intro-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1rem;
}

.intro-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.intro-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.intro-image:hover img {
  transform: scale(1.05);
}

/* Benefits Grid Section */
.benefits-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top-color: var(--primary-color);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Process Timeline Section */
.process-section {
  padding: 80px 0;
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-dark)
  );
  z-index: 0;
}

.process-step-card {
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--white);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(18, 220, 59, 0.3);
  transition: all 0.3s ease;
}

.process-step-card:hover .process-number {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.process-step-card h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.process-step-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Enhanced Service Grid with Better Layout */
.service-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card-enhanced {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.service-card-enhanced:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-card-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-card-image::before {
  background: linear-gradient(
    to bottom,
    rgba(18, 220, 59, 0.3) 0%,
    rgba(18, 220, 59, 0.7) 100%
  );
}

.service-card-body {
  padding: 30px;
}

.service-card-body h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card-body p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-card-body .btn {
  padding: 10px 25px;
  font-size: 0.9rem;
}

/* ========================================
   SERVICE PAGES STYLES
   ======================================== */

/* Service Intro Section */
.service-intro {
  padding: 60px 0;
  background: var(--white);
}

.intro-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Service Grid Section */
.service-grid-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.service-grid-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-grid-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-grid-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  transition: all 0.3s ease;
}

.service-grid-item:hover .service-grid-image::before {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(18, 220, 59, 0.4) 100%
  );
}

/* Gallery Overlay Icon Fix */
.service-grid-enhanced .service-grid-item {
  position: relative;
  overflow: hidden;
}

/* Contact & FAQ Section */
.contact-faq-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

/* Contact Form Box */
.contact-form-box {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  padding: 40px;
  border-radius: 10px;
  color: var(--white);
}

.contact-form-box h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--white);
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.consultation-form textarea {
  resize: vertical;
  min-height: 100px;
}

.consultation-form .btn {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
}

.consultation-form .btn:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Box */
.faq-box h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--text-color);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-item.active .faq-question {
  background: var(--primary-color);
  color: var(--white);
}

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Mobile Responsive Styles for Service Pages */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .contact-faq-grid {
    gap: 40px;
  }

  /* Enhanced Service Pages Responsive */
  .intro-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-content h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }

  .service-grid-enhanced {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .service-intro {
    padding: 40px 0;
  }

  .intro-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Enhanced Service Pages Mobile */
  .service-intro-enhanced {
    padding: 50px 0;
  }

  .intro-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .intro-content p {
    font-size: 1rem;
  }

  .benefits-section,
  .process-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-body {
    padding: 25px 20px;
  }

  .service-grid-section {
    padding: 50px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-grid-image {
    height: 300px;
  }

  .service-grid-content {
    padding: 20px;
  }

  .service-grid-content h3 {
    font-size: 1.2rem;
  }

  .contact-faq-section {
    padding: 50px 0;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-box,
  .faq-box {
    padding: 30px 20px;
  }

  .contact-form-box h2,
  .faq-box h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h4 {
    font-size: 0.95rem;
  }

  .page-header {
    height: 200px;
    padding: 0 15px;
  }

  .page-header h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .page-header p {
    font-size: 0.9rem;
  }
}

/* ========================================
   GALLERY LIGHTBOX STYLES
   ======================================== */

/* Make service-grid-item clickable */
.service-grid-item.gallery-item {
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-grid-item.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Remove default gradient overlay for gallery items since there is no text */
.service-grid-item.gallery-item::before {
  display: none;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

/* Lightbox Content Container */
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox Image */
.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100001;
}

.lightbox-close:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: rotate(90deg);
}

.lightbox-close i {
  font-size: 1.5rem;
  color: var(--white);
}

/* Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100001;
}

.lightbox-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav i {
  font-size: 1.5rem;
  color: var(--white);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Image Counter */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  z-index: 100001;
}

/* Image Title */
.lightbox-title {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 10px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 80%;
  text-align: center;
  z-index: 100001;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-close,
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-close i,
  .lightbox-nav i {
    font-size: 1.2rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter,
  .lightbox-title {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .lightbox-title {
    top: 10px;
    max-width: 90%;
  }

  .lightbox-counter {
    bottom: 10px;
  }
}

/* Quote Modal Styles */
.quote-modal {
  display: none;
  position: fixed;
  z-index: 10001; /* Above mobile menu overlay */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quote-modal.show {
  display: block;
  opacity: 1;
}

.quote-modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.modal-header p {
  color: #666;
  font-size: 0.95rem;
}

.quote-form .form-group {
  margin-bottom: 20px;
}

.quote-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(18, 220, 59, 0.1);
}

.quote-form .btn-block {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .quote-modal-content {
    margin: 10% auto;
    padding: 30px 20px;
    width: 95%;
  }
}
/* Toast Notification */
.toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 10002;
  left: 50%;
  top: 30px;
  font-size: 17px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition:
    opacity 0.5s,
    top 0.5s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  top: 80px;
}

.toast.success {
  background-color: #28a745;
}

.toast.error {
  background-color: #dc3545;
}
