/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a472a, #2d6a4f, #1a472a);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffc107, #28a745, #ffc107);
}
.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo i {
    color: #ffc107;
    font-size: 2.5rem;
}
.footer-about {
    margin-bottom: 20px;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}
.footer-social a:hover {
    background: linear-gradient(135deg, #ffc107, #ffd700);
    color: #1a472a;
    transform: translateY(-3px);
    border-color: transparent;
}
.footer-title {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ffc107;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links a:hover {
    color: #ffc107;
    transform: translateX(5px);
}
.footer-links i {
    color: #ffc107;
    font-size: 0.8rem;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact i {
    color: #ffc107;
    font-size: 1.2rem;
    width: 30px;
}
.footer-newsletter {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-newsletter p {
    margin-bottom: 15px;
}
.footer-newsletter .input-group {
    background: white;
    border-radius: 5px;
    overflow: hidden;
}
.footer-newsletter input {
    border: none;
    padding: 10px 15px;
}
.footer-newsletter button {
    background: #ffc107;
    color: #1a472a;
    border: none;
    padding: 0 20px;
    font-weight: bold;
}
.footer-newsletter button:hover {
    background: #ffd700;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}
.footer-plant-icon {
    position: absolute;
    opacity: 0.1;
    font-size: 2rem;
    color: #ffc107;
}
.footer-plant-icon:nth-child(1) { top: 10%; left: 5%; }
.footer-plant-icon:nth-child(2) { top: 20%; right: 10%; }
.footer-plant-icon:nth-child(3) { bottom: 15%; left: 15%; }
.footer-plant-icon:nth-child(4) { bottom: 25%; right: 5%; }
