
:root {
  --primary: #2f4f2f;
  --primary-light: #3d6b3d;
  --primary-dark: #1a2e1a;
  --accent: #8fc93a;
  --accent-light: #a5d655;
  --accent-dark: #7ab02f;
  --secondary: #f39c12;
  --light-bg: #f8fdf9;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --border-light: #e5e7eb;
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #2f4f2f, #3d6b3d);
  --gradient-light: linear-gradient(135deg, #f8fdf9, #e8f5e8);
  --gradient-accent: linear-gradient(135deg, #8fc93a, #a5d655);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --container-padding: 0 5%;
  --section-padding: 120px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
/*  padding: var(--container-padding);*/
}

.container-fluid {
  width: 100%;
  padding: var(--container-padding);
}

/* Typography */
.heading-primary {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.heading-secondary {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 1rem;
}

.heading-tertiary {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.text-lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 2rem;
}

#home .text-lead{
    color: var(--white);
}

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

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-primary .fas{
    padding-right: 10px;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline .fas{
    padding-right: 10px;
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-light);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-accent .fas{
    padding-right: 10px;
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-group {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-light);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
/*  color: var(--primary);*/
}

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

.logo a{
    color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: var(--transition);
}



/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  list-style: none;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--light-bg);
  color: var(--accent);
  padding-left: 2rem;
}

/* Mobile Dropdown Styles */
    /* MOBILE STYLES */
    @media (max-width: 768px) {
        
        /* Remove blue focus outline from mobile menu */
        .nav-menu a:focus,
        .nav-menu li:focus,
        .nav-link:focus {
          outline: none !important;
          box-shadow: none !important;
        }        

        .navbar.container{
            padding: 1rem;
        }    
        
        
        
      /* Show mobile toggle */
      .nav-toggle {
        display: flex;
      }

      /* Hide desktop menu initially */
      .nav-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-light);
        z-index: 999;
        overflow-y: auto;
        gap: 0;
      }

      /* Show mobile menu when active */
      .nav-menu.active {
        left: 0;
      }

      /* Mobile menu items */
      .nav-menu li {
        width: 100%;
        margin-bottom: 0;
      }

      .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 0;
        color: var(--text-dark);
        border-bottom: 1px solid var(--border-light);
        font-size: 1.1rem;
      }

      .nav-link:hover {
        background: var(--light-bg);
        color: var(--primary);
        padding-left: 1rem;
      }

      .nav-link::after {
        display: none;
      }

      /* Mobile Dropdown Styles */
      .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 0;
      }

      .dropdown-menu {
        position: static;
        background: var(--light-bg);
        box-shadow: none;
        border: none;
        border-radius: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
        padding: 0;
        margin-left: 1rem;
      }

      .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
      }

      .dropdown-toggle i {
        transition: transform 0.3s ease;
      }

      .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
      }

      .dropdown-link {
        padding: 0.75rem 1rem;
        color: var(--text-dark);
        font-size: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
      }

      .dropdown-link:hover {
        background: var(--white);
        color: var(--accent);
        padding-left: 1.5rem;
      }

      /* Mobile CTA Button */
      .nav-menu .btn {
        margin-top: 2rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
      }

      /* Prevent body scroll when menu is open */
      body.nav-open {
        overflow: hidden;
      }

      /* Overlay for mobile menu */
      .nav-overlay {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }

      .nav-overlay.active {
        opacity: 1;
        visibility: visible;
      }
    }

    /* Tablet adjustments */
    @media (max-width: 1024px) and (min-width: 769px) {
      .nav-menu {
        gap: 1.5rem;
      }
      
      .nav-menu .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
      }
    }

    /* Large mobile */
    @media (max-width: 480px) {
      .container {
        padding: 0 0.75rem;
      }

      .logo {
        font-size: 1.3rem;
      }

      .logo i {
        font-size: 1.8rem;
      }

      .nav-menu {
        padding: 1.5rem;
      }

      .nav-link {
        font-size: 1rem;
      }
    }

/* Hide toggle on desktop */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  
  .nav-menu {
    position: static;
    flex-direction: row;
    height: auto;
    background: transparent;
    box-shadow: none;
    left: 0;
    top: auto;
    width: auto;
    padding: 0;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    max-height: none;
    overflow: visible;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}



/* Hero Section */
.hero {
  padding: 140px 0 120px;
  background: linear-gradient(
    135deg,
    rgba(47, 79, 47, 0.85) 0%,
    rgba(61, 107, 61, 0.75) 50%,
    rgba(26, 46, 26, 0.9) 100%
  ),
  url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagon)"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-text .heading-primary {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.hero-feature i {
  color: var(--accent);
}

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

.hero-image-main {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
  animation: pulse 2s infinite;
}

.hero-image-badge i {
  font-size: 1.5rem;
  color: var(--accent);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.service-features i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* Process Section */
.process {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  z-index: 1;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.process-description {
  color: var(--text-light);
}

/* Guarantee Section */
.guarantee {
  padding: var(--section-padding);
  background: var(--primary);
  color: var(--white);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.guarantee-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.guarantee-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.guarantee-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.guarantee-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.guarantee-description {
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: var(--section-padding);
  background: var(--gradient-light);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-phone i {
  color: var(--accent);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

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

.footer-section .fas{
    padding-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a{
    color: var(--white);
}

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

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: left;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --container-padding: 0 4%;
    --section-padding: 80px 0;
  }

  .hero {
    background-attachment: scroll;
  }


    
  .container{
     padding: var(--container-padding);      
  }



  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content > div:first-child {
    order: 2;
  }

  .hero-content > div:last-child {
    order: 1;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    width: 100%;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }




/* Additional CSS for About Us Page */

/* About Hero Section */
.about-hero {
  padding: var(--section-padding);
  background: var(--white);
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.highlight-content h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.about-image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 1rem;
}

.overlay-item {
  background: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-medium);
  min-width: 80px;
}

.overlay-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.overlay-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Mission & Values Section */
.mission-values {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.mission-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mission-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mission-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.member-image {
  position: relative;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(47, 79, 47, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.member-overlay .social-links {
  display: flex;
  gap: 1rem;
}

.member-overlay .social-links a {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.member-overlay .social-links a:hover {
  background: var(--white);
  color: var(--primary);
}

.member-info {
  padding: 1.5rem;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.member-position {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.member-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.credential {
  background: var(--light-bg);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-list {
  margin-top: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.why-content h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.why-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

.stat-number-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label-large {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.certifications {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

.certifications h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.cert-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.cert-item i {
  color: var(--accent);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 1rem;
}

.testimonial-stars i {
  font-size: 1rem;
  margin-right: 0.25rem;
}

.testimonial-card blockquote {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
}

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

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Company Timeline */
.company-timeline {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  flex: 1;
  margin: 0 2rem;
}

.timeline-content h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
  .about-hero-content,
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-text {
    order: 1;
  }

  .why-choose-stats {
    order: 2;
  }

  .timeline-container::before {
    left: 40px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 100px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
  }

  .timeline-content {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .cert-logos {
    grid-template-columns: 1fr;
  }

  .about-image-overlay {
    position: static;
    margin-top: 1rem;
    justify-content: center;
  }
}



/* Additional CSS for Services Page */

/* Services Hero Section */
.services-hero {
  padding: var(--section-padding);
  background: var(--white);
}

.services-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.services-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--accent);
  font-size: 1rem;
  width: 20px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.hero-stats {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-bubble {
  background: var(--white);
  padding: 1rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  min-width: 80px;
  animation: float 3s ease-in-out infinite;
}

.stat-bubble:nth-child(2) {
  animation-delay: 1.5s;
}

.stat-bubble .stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-bubble .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Service Categories */
.service-categories {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}

.service-card.eco-friendly {
  border: 2px solid var(--accent);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-badge.eco {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.service-content {
  padding: 1rem;
}

.service-content .service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-content .service-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-content .service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-content .service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-content .service-features i {
  color: var(--accent);
  font-size: 0.875rem;
  width: 16px;
}

.service-pricing {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1rem;
  color: var(--text-light);
}

.price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.service-actions {
  display: flex;
  gap: 1rem;
}

.service-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 0.875rem 1rem;
  font-size: 0.8rem;
}

/* Service Packages */
.service-packages {
  padding: var(--section-padding);
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 2px solid var(--border-light);
/*  overflow: hidden;*/
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.package-card.popular {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.package-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-header {
  background: var(--light-bg);
  padding: 2rem;
  text-align: center;
}

.package-card.popular .package-header {
  background: var(--gradient-accent);
  color: var(--white);
}

.package-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.package-card.popular .package-name {
  color: var(--white);
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.package-card.popular .amount {
  color: var(--white);
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

.package-card.popular .period {
  color: rgba(255, 255, 255, 0.8);
}

.package-features {
  padding: 2rem;
}

.package-features ul {
  list-style: none;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.package-features .fa-check {
  color: var(--accent);
}

.package-features .fa-times {
  color: var(--text-muted);
}

.package-action {
  padding: 0 2rem 2rem;
}

.package-action .btn {
  width: 100%;
  justify-content: center;
}

/* Process Section */
.process-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--gradient-accent);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--accent);
}

.step-icon i {
  font-size: 1.75rem;
  color: var(--accent);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Emergency Services */
.emergency-services {
  padding: var(--section-padding);
  background: var(--primary);
  color: var(--white);
}

.emergency-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--danger);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.emergency-text .heading-secondary {
  color: var(--white);
}

.emergency-text .text-lead {
  color: rgba(255, 255, 255, 0.9);
}

.emergency-situations {
  margin: 2rem 0;
}

.emergency-situations h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.emergency-situations ul {
  list-style: none;
}

.emergency-situations li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.emergency-situations i {
  color: var(--accent);
  width: 20px;
}

.emergency-contact {
  margin-top: 2rem;
}

.emergency-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.emergency-image {
  position: relative;
}

.emergency-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-heavy);
}

.emergency-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.time-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.available {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.hours {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* Responsive Design for Services Page */
@media (max-width: 968px) {
  .services-hero-content,
  .emergency-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-actions {
    flex-direction: column;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .emergency-overlay {
    position: static;
    margin-top: 1rem;
    justify-content: center;
  }
}


/* Additional CSS for Service Details Page */

/* Additional Color Variables */
:root {
  --danger: #e74c3c;
  --warning: #f1c40f;
  --info: #3498db;
}

/* Breadcrumb */
.breadcrumb {
  padding: 120px 0 40px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: var(--text-light);
  transition: var(--transition);
}

.breadcrumb-nav a:hover {
  color: var(--primary);
}

.breadcrumb-nav i {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.breadcrumb-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.breadcrumb-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* Service Hero */
.service-hero {
  padding: var(--section-padding);
  background: var(--white);
}

.service-hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Service Info Sidebar */
.service-info {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 120px;
}

.service-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-light);
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--accent);
  font-size: 1rem;
  width: 20px;
}

/* Urgency Banner */
.urgency-banner {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.urgency-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.urgency-subtext {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Content Sections */
.content-section {
  padding: 0 0 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.content-section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* Icon List */
.icon-list {
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon-list .icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.icon-list .icon i {
  color: var(--white);
  font-size: 1rem;
}

.icon-list .content h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.icon-list .content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2rem;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.125rem;
}

.timeline-content h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(47, 79, 47, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
}


/* Enhanced Before/After Gallery */
.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.before-after-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: var(--transition);
}

.before-after-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.comparison-container {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);  
}

.after-image {
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  transition: clip-path 0.3s ease;
}

.comparison-container:hover .after-image {
  clip-path: polygon(0% 20%, 100% 0%, 100% 100%, 20% 100%);
}

.image-label {
  position: absolute;
  top: 15px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.before-label {
  left: 15px;
  background: rgba(231, 76, 60, 0.9);
  color: var(--white);
}

.after-label {
  right: 15px;
  background: rgba(143, 201, 58, 0.9);
  color: var(--white);
}

.comparison-slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
}

.slider-button {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  color: var(--primary);
  font-size: 1.25rem;
  animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(143, 201, 58, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(143, 201, 58, 0);
  }
}

.comparison-details {
  padding: 2rem;
  text-align: center;
}

.comparison-details h4 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.comparison-details p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Results Stats */
.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
  background: var(--gradient-light);
  border-radius: var(--border-radius-lg);
}

.results-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.results-stats .stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.results-stats .stat-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.results-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.results-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Interactive hover effects */
.comparison-container::before {
  content: 'Hover to reveal transformation';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  z-index: 20;
  opacity: 1;
  transition: var(--transition);
}

.comparison-container:hover::before {
  opacity: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .before-after-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .comparison-container {
    height: 200px;
  }
  
  .comparison-container::before {
    content: 'Tap to see results';
  }
  
  .results-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .results-stats .stat-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Touch device interactions */
@media (hover: none) {
  .comparison-container:active .after-image {
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 20% 100%);
  }
}

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-question i {
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

/* CTA Section for Service Pages */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive Design for Service Details */
@media (max-width: 968px) {
  .service-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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



/* Additional CSS for Contact/Quote Page */

/* Contact Hero Section */
.contact-hero {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.highlight-content h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.contact-card h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-detail {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-note {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.contact-card .btn {
  width: 100%;
  justify-content: center;
}

/* Quote Form Section */
.quote-form-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.quote-form-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header .heading-secondary {
  margin-bottom: 0.5rem;
}

.form-header .text-lead {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInSlide 0.3s ease-in-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-header {
  display: grid;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  grid-template-columns: 1fr auto;
}

.step-header h3 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.25rem;
}

.step-indicator {
  background: var(--light-bg);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.current-step {
  color: var(--accent);
  font-weight: 600;
}

/* Form Elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(143, 201, 58, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: var(--white);
}

.checkbox-item:hover {
  border-color: var(--accent);
  background: var(--light-bg);
}

.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  transition: var(--transition);
  z-index: 10;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
  display: inline-block;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 4px;
/*  top: 2px;*/
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pest-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  padding-right: 30px; /* Make room for checkmark */
}

.pest-option i {
  font-size: 1.5rem;
  color: var(--accent);
}

.pest-option span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
}

.checkbox-item input[type="checkbox"]:checked ~ .pest-option {
  color: var(--primary);
}

.checkbox-item input[type="checkbox"]:checked ~ .pest-option i {
  color: var(--primary);
}

.checkbox-item {
  user-select: none;
}


/* Consent Checkbox */
.checkbox-item.consent {
  border: none;
  padding: 0;
  background: none;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-item.consent .checkmark {
  position: relative;
  margin-top: 0.25rem;
  flex-shrink: 0;
  display: inline-block;
  left: 0;
  top: 4px;    
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.form-actions .btn {
  flex: 1;
  justify-content: center;
  gap: 0.5rem;
}

/* Quote Benefits */
.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefits-card,
.guarantee-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

.benefits-header {
  margin-bottom: 2rem;
}

.benefits-header h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefits-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-number {
  width: 30px;
  height: 30px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.guarantee-card {
  text-align: center;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.guarantee-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.guarantee-card h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.guarantee-card ul {
  list-style: none;
  text-align: left;
}

.guarantee-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.guarantee-card li i {
  color: var(--accent);
  font-size: 0.875rem;
  width: 16px;
}

/* Emergency Contact */
.emergency-contact {
  padding: 3rem 0;
  background: var(--primary);
}

.emergency-banner {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--white);
}

.emergency-icon {
  width: 60px;
  height: 60px;
  background: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.emergency-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.emergency-text {
  flex: 1;
}

.emergency-text h3 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.9);
}

.emergency-action .btn {
  white-space: nowrap;
}

/* Map Section */
.map-section {
  padding: var(--section-padding);
  background: var(--white);
}

.map-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 400px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
}

.info-card h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.info-item i {
  color: var(--accent);
  font-size: 1.25rem;
  width: 20px;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.info-item div {
  color: var(--text-light);
  line-height: 1.5;
}

.info-item strong {
  color: var(--primary);
}

.service-areas {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

.service-areas h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-areas p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.area-item i {
  color: var(--accent);
  font-size: 0.75rem;
}

.service-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.service-note a {
  color: var(--accent);
  font-weight: 500;
}

.service-note a:hover {
  text-decoration: underline;
}

/* Success Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-heavy);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  margin-bottom: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.success-icon i {
  color: var(--white);
  font-size: 2rem;
}

.modal-header h3 {
  color: var(--primary);
  font-weight: 600;
}

.modal-body p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.next-steps h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.next-steps ul {
  text-align: left;
  color: var(--text-light);
}

.next-steps li {
  margin-bottom: 0.5rem;
}

.modal-actions {
  margin-top: 2rem;
}

.modal-actions .btn {
  min-width: 120px;
}

/* Error Styles */
.error-message {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.error-message i {
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .error-message {
    display: block !important;
    text-align: center;
  }
  
  .error-message h1,
  .error-message p {
    display: block;
    width: 100%;
  }
  
  .error-message h1 {
    margin-bottom: 1rem;
  }
}


/* Responsive Design for Contact Page */
@media (max-width: 968px) {
  .contact-hero-content,
  .quote-form-content,
  .map-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-container {
    order: 1;
  }

  .quote-benefits {
    order: 2;
  }

  .emergency-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .emergency-action {
    width: 100%;
  }

  .emergency-action .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .form-actions {
    flex-direction: column;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem;
  }
}











/* Additional CSS for Blog Pages */

/* Blog Hero Section */
.blog-hero {
  padding: var(--section-padding);
  background: var(--white);
}

.blog-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.blog-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.blog-stats .stat-item {
  text-align: center;
}

.blog-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.blog-stats .stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Blog Search */
.blog-search-container {
  display: flex;
  justify-content: center;
}

.search-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 400px;
}

.search-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.search-input-group {
  display: flex;
  margin-bottom: 1.5rem;
}

.search-input-group input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.search-btn {
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 0.875rem 1.25rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  transform: translateY(-1px);
}

.popular-topics h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-tag {
  background: var(--light-bg);
  color: var(--primary);
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}

.topic-tag:hover {
  background: var(--accent);
  color: var(--white);
}

/* Featured Article */
.featured-article {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-top: 2rem;
}

.featured-image {
  position: relative;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.post-category {
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: 500;
}

.post-date,
.read-time {
  color: var(--text-light);
}

.featured-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-excerpt {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  flex: 1;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Blog Categories */
.blog-categories {
  padding: var(--section-padding);
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.category-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.category-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.category-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.category-stats {
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.post-count {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Recent Articles */
.recent-articles {
  padding: var(--section-padding);
  background: var(--white);
}

.blog-content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
  text-decoration: none;
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-mini img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.author-mini span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.read-more {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.pagination-dots {
  color: var(--text-light);
  padding: 0 0.5rem;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

.sidebar-widget h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* Newsletter Widget */
.newsletter-widget .widget-header p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form .btn {
  justify-content: center;
}

.newsletter-note {
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-note i {
  color: var(--accent);
}

/* Popular Posts Widget */
.popular-post-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.popular-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-image {
  width: 80px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.popular-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post-content h4 {
  margin-bottom: 0.5rem;
}

.popular-post-content h4 a {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  transition: var(--transition);
}

.popular-post-content h4 a:hover {
  color: var(--accent);
}

.popular-post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Categories Widget */
.category-list {
  list-style: none;
}

.category-list li {
  border-bottom: 1px solid var(--border-light);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.category-list a:hover {
  color: var(--accent);
}

.category-list span {
  background: var(--light-bg);
  color: var(--text-light);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: var(--gradient-light);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.newsletter-text h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: var(--text-light);
}

.newsletter-form-large {
  display: flex;
  gap: 1rem;
/*  min-width: 400px;*/
}

.newsletter-form-large input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form-large .btn {
  white-space: nowrap;
}

/* Article Header */
.article-header {
  padding: 3rem 0;
  background: var(--light-bg);
}

.article-header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.article-category {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.article-date,
.read-time,
.view-count {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.article-excerpt {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details strong {
  display: block;
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-details span {
  display: block;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.author-bio {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.4;
}

.article-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.social-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-share span {
  color: var(--text-light);
  font-weight: 500;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.copy { background: var(--text-dark); }

.share-btn:hover {
  transform: translateY(-2px);
}

.bookmark-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Article Content */
.article-content-section {
  padding: var(--section-padding);
  background: var(--white);
}

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.article-image {
  margin-bottom: 2rem;
}

.article-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.image-caption {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

.article-body {
  max-width: none;
  color: var(--text-dark);
  line-height: 1.7;
}

.table-of-contents {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
  border-left: 4px solid var(--accent);
}

.table-of-contents h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.table-of-contents ul {
  list-style: none;
}

.table-of-contents li {
  margin-bottom: 0.5rem;
}

.table-of-contents a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.table-of-contents a:hover {
  color: var(--accent);
}

.lead-paragraph {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-body h2 {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.article-body h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

/* Callout Boxes */
.callout-box {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  display: flex;
  gap: 1rem;
}

.callout-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.callout-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Pest Grid */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pest-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  text-align: center;
}

.pest-card .pest-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pest-card .pest-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.pest-card h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pest-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 1.5rem 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
}

.checklist i {
  color: var(--accent);
  font-size: 1rem;
}

/* Pro Tip */
.pro-tip {
  background: var(--gradient-light);
  border: 1px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
}

.tip-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tip-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.tip-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.tip-content p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Two Column List */
.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.two-column-list .column h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.two-column-list ul {
  list-style: none;
  padding: 0;
}

.two-column-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* Maintenance Calendar */
.maintenance-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.month-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

.month-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.month-card ul {
  list-style: none;
  padding: 0;
}

.month-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Warning Box */
.warning-box {
  background: rgba(231, 76, 60, 0.05);
  border-left: 4px solid var(--danger);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  display: flex;
  gap: 1rem;
}

.warning-icon {
  width: 40px;
  height: 40px;
  background: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.warning-content h4 {
  color: var(--danger);
  margin-bottom: 1rem;
}

.warning-content ul {
  list-style: none;
  padding: 0;
}

.warning-content li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

/* Article Footer */
.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-light);
}

.article-tags {
  margin-bottom: 2rem;
}

.article-tags h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-block;
  margin-right: 1rem;
}

.tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  text-decoration: none;
  margin: 0.25rem;
  transition: var(--transition);
}

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

.author-cta {
  background: var(--gradient-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 2rem;
}

.author-cta h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.author-cta p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.article-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.nav-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-item:hover {
  box-shadow: var(--shadow-light);
}

.nav-item.prev {
  text-align: left;
}

.nav-item.next {
  text-align: right;
}

.nav-label {
  color: var(--text-light);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.nav-title {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.nav-title:hover {
  color: var(--accent);
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Author Widget */
.author-widget .author-card {
  text-align: center;
}

.author-widget .author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.author-widget .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-widget h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.author-title {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.author-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.author-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.author-stats .stat {
  text-align: center;
}

.author-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.author-stats .stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* TOC Widget */
.toc-widget {
/*
  position: sticky;
  top: 120px;
*/
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

.toc-list a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.toc-list a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

/* Related Articles Widget */
.related-article-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.related-article-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-image {
  width: 80px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-content h4 {
  margin-bottom: 0.5rem;
}

.related-content h4 a {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  transition: var(--transition);
}

.related-content h4 a:hover {
  color: var(--accent);
}

.related-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Comments Section */
.comments-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.comments-container {
  max-width: 800px;
  margin: 0 auto;
}

.comments-container h3 {
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

.comment-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  margin-bottom: 3rem;
}

.comment-form h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comment-form .form-group {
  margin-bottom: 1rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(143, 201, 58, 0.1);
}

.comment-form textarea {
  resize: vertical;
  min-height: 100px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.comment-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 1rem;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comment-header strong {
  color: var(--primary);
  font-weight: 600;
}

.comment-date {
  color: var(--text-light);
  font-size: 0.875rem;
}

.comment-content p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.reply-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Responsive Design for Blog Pages */
@media (max-width: 968px) {
  .blog-hero-content,
  .featured-post,
  .blog-content-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-content {
    order: 2;
  }

  .featured-image {
    order: 1;
    height: 250px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .newsletter-form-large {
    min-width: auto;
    width: 100%;
  }

  .article-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .article-navigation {
    grid-template-columns: 1fr;
  }

  .nav-item.next {
    text-align: left;
  }

  .toc-widget {
    position: static;
  }
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .article-author {
    flex-direction: column;
    text-align: center;
  }

  .social-share {
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-column-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .maintenance-calendar {
    grid-template-columns: 1fr;
  }

  .pest-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .comment-form .form-row {
    grid-template-columns: 1fr;
  }

  .comment-item {
    flex-direction: column;
  }

  .comment-avatar {
    align-self: center;
  }

  .newsletter-form-large {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .blog-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .topic-tags {
    justify-content: center;
  }

  .pagination {
    flex-wrap: wrap;
  }
}



/* Additional CSS for 404 Error Page */

/* 404 Error Section */
.error-404-section {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Animated Bug Illustration */
.error-illustration {
  position: relative;
  margin-bottom: 3rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bug-container {
  position: relative;
  z-index: 2;
}

.bug-body {
  animation: bugWalk 3s ease-in-out infinite;
}

.bug-body i {
  font-size: 4rem;
  color: var(--accent);
  filter: drop-shadow(0 4px 8px rgba(143, 201, 58, 0.3));
}

.bug-trail {
  position: absolute;
  top: 50%;
  left: -120px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.trail-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: trailFade 3s ease-in-out infinite;
}

.trail-dot:nth-child(1) { animation-delay: 0s; }
.trail-dot:nth-child(2) { animation-delay: 0.2s; }
.trail-dot:nth-child(3) { animation-delay: 0.4s; }
.trail-dot:nth-child(4) { animation-delay: 0.6s; }

.error-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.1;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}

@keyframes bugWalk {
  0%, 100% { 
    transform: translateX(0) rotate(0deg);
  }
  25% { 
    transform: translateX(10px) rotate(-2deg);
  }
  50% { 
    transform: translateX(0) rotate(0deg);
  }
  75% { 
    transform: translateX(-10px) rotate(2deg);
  }
}

@keyframes trailFade {
  0%, 100% { 
    opacity: 0;
    transform: scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Error Message */
.error-message {
  margin-bottom: 3rem;
}

.error-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.error-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Error Actions */
.error-actions {
  margin-bottom: 4rem;
}

.primary-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.secondary-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-actions .btn {
  min-width: 160px;
}

/* Error Search */
.error-search {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
  max-width: 500px;
  margin: 0 auto;
}

.error-search h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.error-search .search-input-group {
  display: flex;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.error-search input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  font-size: 1rem;
  background: var(--white);
}

.error-search input:focus {
  outline: none;
  background: var(--light-bg);
}

.error-search .search-btn {
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.error-search .search-btn:hover {
  background: var(--accent-dark);
}

.search-suggestions {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.search-suggestions span {
  margin-right: 1rem;
  font-weight: 500;
}

.search-suggestions a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: var(--transition);
}

.search-suggestions a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Quick Links Section */
.quick-links-section {
  padding: var(--section-padding);
  background: var(--white);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.quick-link-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.quick-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.quick-link-card:hover::before {
  transform: scaleX(1);
}

.quick-link-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.quick-link-icon i {
  color: var(--white);
  font-size: 1.75rem;
}

.quick-link-card h3 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.quick-link-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-list a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.service-list a:hover {
  background: var(--light-bg);
  color: var(--accent);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--accent);
  width: 16px;
}

.about-highlights {
/*
  display: flex;
  justify-content: space-around;
*/
  margin-bottom: 2rem;
}

.highlight {
  text-align: center;
}

.highlight strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.quick-link-btn {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.quick-link-btn:hover {
  color: var(--primary);
  gap: 0.75rem;
}

/* Emergency Contact Banner */
.emergency-contact-banner {
  padding: 3rem 0;
  background: var(--primary);
  color: var(--white);
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.emergency-icon {
  width: 60px;
  height: 60px;
  background: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.emergency-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.emergency-text {
  flex: 1;
}

.emergency-text h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.emergency-action .btn {
  white-space: nowrap;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }
}

/* Responsive Design for 404 Page */
@media (max-width: 768px) {
  .error-404-section {
    padding: 120px 0 60px;
  }

  .error-number {
    font-size: 6rem;
  }

  .bug-trail {
    display: none;
  }

  .primary-actions,
  .secondary-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .emergency-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .emergency-action .btn {
    width: 100%;
  }

  .about-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .search-suggestions span {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .error-illustration {
    height: 150px;
  }

  .error-number {
    font-size: 4rem;
  }

  .bug-body i {
    font-size: 3rem;
  }

  .error-search {
    padding: 2rem 1.5rem;
  }

  .quick-link-card {
    padding: 2rem 1.5rem;
  }
}

/* Loading Animation for Search */
.search-loading {
  display: none;
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.search-loading.active {
  display: block;
}

.search-loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}