/* Footer */
.footer {
    background-color: #000000;
    background-image: url('/Images/background%20Footer%20(1).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    color: #e0e0e0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Dark overlay to mix with the background image */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    max-width: 100%;
    width: 100%;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

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

/* Brand Column */
.brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #f8f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 10px;
    border: 2px solid #ffffff;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}



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

.follow-us p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.social-icons a:hover {
    color: #ce754c;
    opacity: 1;
}

/* Footer Links & Headings */
.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffffff;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: none;
    padding-left: 5px;
}

/* Newsletter */
.newsletter-col p {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #555;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

/* Timings */
.footer-timings {
    text-align: right;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
}

.footer-links a {
    color: #666;
    margin-left: 25px;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .footer .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer .container {
        padding: 0 18px;
    }

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

    .footer-links a {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer-timings {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer .container {
        padding: 0 14px;
    }

    .footer-links a {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer {
        padding-top: 45px;
    }

    .footer .container {
        padding: 0 14px;
    }

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

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer {
        padding-top: 35px;
    }

    .footer .container {
        padding: 0 12px;
    }

    .footer-bottom {
        padding-bottom: 25px;
    }
}