/* --- Premium Footer Section --- */
.footer {
    background-color: #2e7055;
    /* Darker, richer forest green for contrast */
    color: #e0e0e0;
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* 4 Columns */
    gap: 40px;
    margin-bottom: 60px;
}

.text-white {
    color: #fff !important;
}

/* Column Titles */
.footer h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Brand Section */
.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: #0f3f2d;
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

/* Links List */
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter */
.newsletter-desc {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.btn-newsletter {
    padding: 0 20px;
    background: var(--secondary-color);
    color: #0f3f2d;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-newsletter:hover {
    background: white;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
}

.payment-img {
    height: 24px;
    width: auto;
    background: #fff;
    padding: 2px 5px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}