/*
 * Theme Name:		GWT-Wordpress 27.0.0
 * Theme URI:		https://bit.ly/gwtversions
 * Description:		Custom WordPress theme based on the draft Unified Web Content Policy 
 *					prepared by the PCDSPO, DOST-ASTI, and DOST-ICTO. Theme is built on 
 *					HTML5 responsive WordPress framework based on ZURB's Foundation.
 * Version:			27.0.0v2
 * Author:			J.K. | GWHS Team
 * Author URI:		https://github.com/GOSD-DICT
 * License:			MIT License
 * License URI:		http://www.opensource.org/licenses/mit-license.php
 * Tags: 			theme-options, rtl-language-support, featured-images, editor-style, custom-menu, 
 *					responsive-layout, right-sidebar, left-sidebar, one-column, two-columns, three-columns
 */


 /** Your style here **/ 

/* --- Modern 4-Column Footer --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.modern-4col-footer {
    background-color: #0a0f1c; /* Deep dark navy */
    color: #94a3b8; /* Muted slate */
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
}

.m4-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.m4-col-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.m4-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.m4-logo-local {
    height: 55px;
    width: auto;
}

.m4-logo-national {
    height: 50px;
    width: auto;
}

.m4-brand-text h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.m4-brand-text p {
    color: #94a3b8;
    font-size: 0.85rem;
}

.m4-socials {
    display: flex;
    gap: 0.75rem;
}

.m4-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #334155; /* Slate 700 */
    color: #94a3b8;
    transition: all 0.2s ease-in-out;
}

.m4-socials a:hover {
    color: #ffffff;
    border-color: #3b82f6;
    background-color: #1e293b;
}

.m4-socials svg {
    width: 16px;
    height: 16px;
}

.m4-col-links h4, .m4-col-contact h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.m4-col-links ul, .m4-col-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.m4-col-links li, .m4-col-contact li {
    margin-bottom: 0.85rem;
}

.m4-col-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.m4-col-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.m4-col-contact svg {
    width: 18px;
    height: 18px;
    color: #3b82f6; /* Accent color */
    flex-shrink: 0;
    margin-top: 2px;
}

.m4-col-contact span {
    color: #94a3b8;
}

.m4-bottom-bar {
    border-top: 1px solid #1e293b;
    padding: 1.5rem 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.8rem;
}

/* Mobile responsiveness */
@media screen and (max-width: 1024px) {
    .m4-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 640px) {
    .m4-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}