/* Main footer container */
.site-footer {
    background-color: #eeeeee;
    padding: 40px 0 20px;
    margin-top: 50px;
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    max-height: 400px;
    padding: 0 20px;
  }
  
  /* Main footer content area */
  .footer-main {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  /* Logo section containing logo, locations, phone, and social icons */
  .footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Logo styling */
  
  .footer-brand-logo {
    /* margin-bottom: 20px; */
    width: 60px;
    height: 60px;
    filter: brightness(1.1); /* Subtle brightness for logo on dark bg */
    transform: scale(5); /* Zoom in 2x */
    transform-origin: center center;
  }
  
  /* Location list styling */
  .footer-service-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
    max-width: 1200px;
}

.service-location-item {
    margin: 55px 20px 30px;
    padding: 0 10px;
    /* margin: 5px 0; */
    font-size: 24px;
    color: #1e1e1e;
    position: relative;
  }
  
  /* Separator between locations */
  .service-location-item:not(:last-child):after {
    content: "|";
    position: absolute;
    right: -25px;
    color: #4add30;
  }
  
  /* Phone number styling */
  .footer-contact-phone {
    font-size: 18px;
    font-weight: 500;
    color: #8cc63f; /* Green accent color */
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .footer-contact-phone:hover {
    color: #a8d85b; /* Lighter green on hover */
    text-shadow: 0 0 8px rgba(140, 198, 63, 0.3);
  }
  
  /* Social media links section */
  .footer-social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .social-link-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c2c2c;
    border: 1px solid #404040;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-link-item:hover {
    background-color: #333;
    border-color: #8cc63f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .social-icon-text {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
  }
  
  /* Copyright section */
  .footer-copyright-section {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
  }
  
  .copyright-text {
    font-size: 14px;
    color: #888;
    margin: 0;
  }
  
  .copyright-credit-link {
    color: #8cc63f;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .copyright-credit-link:hover {
    text-decoration: underline;
    color: #a8d85b;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-service-locations {
      flex-direction: column;
      align-items: center;
      margin: 4px 0;
    }
    
    .service-location-item {
      margin: 3px 0;
    }
    
    .service-location-item:not(:last-child):after {
      display: none;
    }
    
    .footer-contact-phone {
      margin-top: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .site-footer {
      padding: 30px 0 15px;
    }
    
    .footer-brand-logo {
      width: 40px;
      height: 40px;
      margin-bottom: 20px;
    }
    
    .footer-contact-phone {
      font-size: 16px;
    }
    
    .social-link-item {
      width: 35px;
      height: 35px;
    }
    
    .social-icon-text {
      font-size: 13px;
    }
    
    .copyright-text {
      font-size: 13px;
    }
  }
  
  /* Accessibility enhancement for focus states */
  .footer-contact-phone:focus,
  .social-link-item:focus,
  .copyright-credit-link:focus {
    outline: 2px solid #8cc63f;
    outline-offset: 2px;
  }
  
  /* Subtle hover animation for location items */
  .service-location-item {
    transition: color 0.3s ease;
  }
  
  .service-location-item:hover {
    color: #08f14e;
  }
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1280px;
    position: relative
}

@media (max-width:1280px) {
    .container {
        padding-left: 60px;
        padding-right: 60px;
        width: calc(100%)
    }
}

@media (max-width:1279px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
        width: calc(100%)
    }
}

@media (max-width:500px) {
    .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (max-width:375px) {
    .container {
        padding-left: 15px;
        padding-right: 15px
    }
}