footer {
  background: linear-gradient(135deg, #d9fdd3 0%, #e7fce4 50%, #f9fff8 100%);
  border-top: 1px solid rgba(44, 119, 68, 0.2);
  padding: 50px 20px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.logo img {
    width: 180px;
}

.footer-about p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c7744;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #2c7744, #5cd85a);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(44, 119, 68, 0.3);
}

.footer-links h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c7744;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #2c7744, #5cd85a);
    border-radius: 3px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links ul li:hover {
    transform: translateX(5px);
}

.footer-links ul li a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links ul li a i {
    font-size: 12px;
    color: #2c7744;
}

.footer-links ul li a:hover {
    color: #2c7744;
}

.footer-contact h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c7744;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #2c7744, #5cd85a);
    border-radius: 3px;
}

.footer-contact p {
    margin: 15px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact i {
    color: #2c7744;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(44, 119, 68, 0.2);
    font-size: 14px;
    color: #555;
}

/* Floating elements for visual enhancement */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(44, 119, 68, 0.1);
    z-index: 0;
}

.float-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.float-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 8%;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links h3 {
        margin-bottom: 15px;
    }
    
    .floating-element {
        display: none;
    }
}