// Standalone Custom Footer SCSS - Won't disturb Bootstrap 5
.custom-footer {
  background-color: $bg-dark;
  background-image: url("./images/Pattern.png");
  position: relative;
  
  // Logo Section
  .footer-logo {
    .custom-logo-link {
      img {
        max-height: 72px;
        width: auto;
        transition: transform 0.3s ease;
        
        &:hover {
          transform: scale(1.05);
        }
      }
    }
    
    .site-title {
      font-size: 1.75rem;
      font-weight: 700;
      margin: 0;
      text-decoration: none;
      
      &:hover {
      }
    }
  }
  
  // Contact Information
  .footer-phone {
    font-size: 1rem;
    display: inline-flex ;
    align-items: center;
    gap: 20px;
  }
  
  .footer-email {
    font-size: 1rem;
     display: inline-flex ;
    align-items: center;
    gap: 20px;
  }
  
  // Address Section
  .footer-address {
    p {
      line-height: 1.6;
    }
  }
  
  // Social Media Section
  .footer-social {
    .small {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.8);
    }
  }
  
.apol-social-icons{
    display: inline-flex;
    gap: 15px;
}
  
  // Enhanced Button Styling (only for this footer)
  .btn {
     padding: 6px 12px;
      border-radius: $btn-radius;
      text-decoration: none;
      min-height: 40px;
      transition: $transition;
      min-width: 140px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    &.btn-primary {
    
      &:hover {
   
     
      }
      
      &:focus {
      
      }
      
      &:active {
     
      }
    }
  }
  
.footer-links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  
}

.footer-links a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ddd;
}

.footer-links a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #fff;
  margin-left: 2rem;
  position: relative;
  top: 3px;
}

  // Animation for enhanced UX
  .footer-animate {
    animation: fadeInUp 0.6s ease-out;
  }
  .apol-social-icons a{
    font-size: 20px;
    color: #fff;
    transition: color 0.3s ease;
    &:hover{
        color: $primary-color;
    }
  }
}

.map{
    min-height: 350px;
}



@media screen and (max-width: 768px) {
    .custom-footer{
        .footer-email,
        .footer-phone{
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px
        }
    }
}