﻿/* ----------------------------------Footer ------------------------------- */
/* Footer Styles */
.site-footer {
    background-color: #2c3e50; /* Nice dark blue color */
    color: #ffffff;
    padding: 30px 1.5rem 60px;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.site-footer .footer-top,
.site-footer .footer-bottom-links,
.site-footer .footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.site-footer .footer-middle {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 1.5rem;
}

.site-footer .footer-logo-company {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.footer-logo {
    height: 60px;
    margin-right: 15px;
}

.footer-company-info {
    flex: 1;
    min-width: 200px;
    text-align: left; /* Align company info to the left */
}

.footer-company-name {
    color: #fff;
    font-size: 1.6em;
    margin: 0 0 5px 0;
}

.footer-contact-email a {
    color: #ddd;
    text-decoration: none;
    font-size: 1.1em;
}

.footer-contact-email a:hover {
    color: #f0f0f0;
}

/* Middle Row - 3 Columns */
.site-footer .footer-middle.flexible-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Space out the columns */
    margin-top: 20px;
}

.site-footer .footer-middle .flexible-item {
    box-sizing: border-box;
    padding: 0 10px;
    margin-bottom: 20px;
    width: 100%; /* Default for mobile */
}

.site-footer .footer-middle h3 {
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1em;
    text-align: left;
}

.site-footer .footer-middle ul {
    list-style: none;
    padding: 0;
    margin: 20px;
    text-align: left;
}

.site-footer .footer-middle ul li {
    margin-bottom: 5px;
}

.site-footer .footer-middle ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9em; /* Slightly larger than before (0.85em) */
    display: block;
    padding: 3px 0;
    transition: color 0.3s ease;
}

.site-footer .footer-middle ul li a:hover {
    color: #f0f0f0;
}

/* Address Section Styling */
.site-footer .footer-middle .footer-address {
    font-size: 0.95em; /* Slightly larger than menu links */
    line-height: 1.6;
}

.site-footer .footer-middle .footer-address strong {
    font-weight: 600; /* Slightly less bold than default 700 */
    color: #007bff;
}

.site-footer .footer-middle .footer-address .address-section {
    margin-bottom: 15px;
}

/* Bottom Navigation Links */
.footer-bottom-links {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 10px 10px;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

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

/* Copyright Notice */
.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    font-size: 0.75em;
    
}

/* Desktop Layout for 3 Columns */
@media (min-width: 769px) {
    .site-footer .footer-middle.flexible-container {
        justify-content: space-between; /* Ensure even spacing */
    }
    .site-footer .footer-middle .flexible-item {
        width: calc(33.33% - 20px); /* Approximately one-third width with spacing */
        margin-bottom: 0; /* Remove bottom margin on desktop */
    }
    .footer-bottom-links {
        border-top: none;
        padding-top: 0;
        text-align: center; /* Center bottom links on desktop */
    }
}
/* ----------------------------------Footer END ------------------------------- */
