/* Footer */
footer {
    background: #fff;
    color: #333;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
    padding-top: 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo-section {
    width: 250px;
    flex-shrink: 0;
}

.footer-logo {
    max-height: 100px;
    margin-bottom: 15px;
}

.footer-slogan {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-around;
    margin: 0 40px;
}

.footer-col {
    min-width: 100px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

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

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

.footer-col ul li a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-contact {
    width: 250px;
    flex-shrink: 0;
    text-align: right;
}

.footer-contact p {
    color: #666;
    margin-bottom: 10px;
}

.footer-phone {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #003D8F;
}


/* Contact Section */
.contact-section {
    background: url('/images/new_bg2.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: 30px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-contact {
    display: inline-block;
    padding: 10px 50px;
    background-color: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {

    .contact-content h2 {
        font-size: 32px;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-logo-section, .footer-contact {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        margin: 20px 0;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-col {
        flex: 1;
        min-width: 140px;
    }
}
