/* Footer Styles */
.footer {
    background: #57401a;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Gilroy', sans-serif;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(245, 245, 220, 0.1);
    border: 1px solid rgba(245, 245, 220, 0.3);
    border-radius: 50%;
    color: #F5F5DC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #F5F5DC;
    color: #57401a;
    transform: translateY(-2px);
}

/* Individual social media colors on hover */
.whatsapp-link:hover {
    background: #25D366;
    color: #fff;
}

.facebook-link:hover {
    background: #1877F2;
    color: #fff;
}

.instagram-link:hover {
    background: linear-gradient(45deg, #F56040, #E1306C, #833AB4);
    color: #fff;
}

.mail-link:hover {
    background: #EA4335;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info .contact-item i {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info .contact-item span {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
}

.newsletter-text {
    color: #fff;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(155, 119, 59, 0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #9B773B;
    background: rgba(255,255,255,0.15);
}

.newsletter-btn {
    padding: 12px 15px;
    background: #9B773B;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #775d30;
    transform: translateY(-1px);
}

/* Credits Section */
.credits-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credit-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.credit-item strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.legal-item strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.credit-item span {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid #FAEBD7;
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.footer-bottom-content p {
    color: #fff;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #9B773B;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-logo img {
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 60px !important;
        object-fit: cover !important;
        width: 60px !important;
        border-radius: 5px;
    }
}