/* --- FOOTER STYLING --- */
.footer {
    background: #1e272e; /* Deep Professional Grey */
    color: #ffffff;
    padding-top: 80px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo span {
    color: var(--primary-orange);
}

.footer-desc {
    color: #a5b1be;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a5b1be;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.05);
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 10px 15px;
    width: 100%;
}

.newsletter-form button {
    background: var(--primary-orange);
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--orange-hover);
}

.contact-info p {
    font-size: 14px;
    color: #a5b1be;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-orange);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    background: #171e24;
    padding: 25px 0;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #636e72;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 8%;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}