:root {
    --white: #ffffff;
    --blue-mid: #0056b3;
    --navy-blue: #001f3f;
    --orange-accent: #ff8c00;
    --text-black: #1a1a1a;
    --text-muted: #4a4a4a;
}

.main-footer {
    background-color: var(--white);
    padding: 80px 5% 30px;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    border-top: 5px solid var(--navy-blue); /* Navy Blue border */
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

/* Logo and Branding */
.logo-black { color: var(--text-black); font-weight: 800; font-size: 24px; }
.logo-orange { color: var(--orange-accent); font-weight: 800; font-size: 24px; }
.logo-navy { color: var(--navy-blue); font-weight: 800; font-size: 24px; }

.brand-text {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-col h3 {
    color: var(--navy-blue); /* Navy Blue Headings */
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Link Styling following image_e97606.png layout */
.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Chevron indicator */
.footer-col ul li a::before {
    content: '›';
    color: var(--orange-accent); /* Orange elements */
    font-weight: bold;
    margin-right: 8px;
}

.footer-col ul li a:hover {
    color: var(--blue-mid); /* Blue shade on hover */
    padding-left: 5px;
}

/* Social Box Styling */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--navy-blue);
    color: var(--navy-blue);
    text-decoration: none;
    transition: 0.3s;
}

.social-box:hover {
    background-color: var(--orange-accent);
    color: var(--white);
    border-color: var(--orange-accent);
}

/* Contact Section Icons */
.icon-orange {
    color: var(--orange-accent);
    margin-right: 10px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1300px;
    margin: 60px auto 0;
    padding-top: 25px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-black);
}

.bottom-links a {
    text-decoration: none;
    color: var(--blue-mid);
    margin-left: 20px;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .social-icons, .contact-item { justify-content: center; }
}