/* Footer Styles - Darker Blue Gradient */
.site-footer {
    background: linear-gradient(135deg, #05101a 0%, #0d2233 50%, #1a3a52 100%);
    color: #fff;
}

.footer-top {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-widget-area h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-widget-area ul {
    list-style: none;
    padding: 0;
}

.footer-widget-area a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget-area a:hover {
    color: #fff;
}

/* Footer Bottom - Three Column Layout with Darker Blue Gradient */
.footer-bottom {
    background: linear-gradient(135deg, #05101a 0%, #0d2233 50%, #1a3a52 100%);
    padding: 50px 0;
    color: #fff;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-right {
    text-align: left;
}

.footer-contact-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-left p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #e8e8e8;
}

.footer-left a {
    color: #ffd700;
    text-decoration: none;
}

.footer-left a:hover {
    text-decoration: underline;
}

/* Company Logo in Footer */
.footer-logo {
    margin: 0 0 20px;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
    display: block;
    filter: brightness(1.1);
}

.footer-map {
    margin-bottom: 20px;
}

.footer-map iframe {
    width: 100%;
    border-radius: 8px;
}

.footer-links {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}



.footer-links a:hover {
    color: #ffd700;
}

.copyright {
    font-size: 13px;
    color: #ccc;
    margin-top: 20px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
    }

    .footer-logo img {
        max-width: 300px;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 25px;
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }

    .footer-logo img {
        max-width: 250px;
    }
}