/* --- Modern Dark Footer Styles --- */

:root {
    --footer-bg: #02315a;
    --footer-bg-alt: #033e70;
    /* Slightly lighter blue for contrast */
    --footer-text: #f8fafc;
    --footer-text-muted: #cbd5e1;
    --footer-primary: #38bdf8;
    /* Lighter sky blue for high visibility on dark blue */
    --footer-accent: #0ea5e9;
    --footer-border: rgba(255, 255, 255, 0.08);
}

.footer-modern {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* .footer-modern::before removed to reduce extra borders */

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer__title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--footer-primary);
    border-radius: 2px;
}

/* About Column */
.footer__logo-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__emblem {
    max-height: 70px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.gov-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--footer-primary);
    font-weight: 600;
}

.ministry-name {
    font-size: 1.15rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
}

.location-text {
    font-size: 0.9rem;
    color: var(--footer-text-muted);
}

/* Links List */
.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav-list li {
    margin-bottom: 12px;
}

.footer__nav-list a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer__nav-list a i {
    font-size: 0.75rem;
    color: var(--footer-primary);
}

.footer__nav-list a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Hours Column */
.hours__item {
    background: var(--footer-bg-alt);
    padding: 15px;
    border-radius: 12px;
}

.hours__season {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hours__detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--footer-text-muted);
}

/* Contact Column */
.contact__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact__list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact__list i {
    width: 36px;
    height: 36px;
    background: var(--footer-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-primary);
    flex-shrink: 0;
}

.contact__text span {
    display: block;
    font-size: 0.75rem;
    color: var(--footer-text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.contact__text strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}

/* Social Icons */
.footer__social-links {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: flex;
    gap: 12px;
}

.footer__social-links a {
    width: 40px;
    height: 40px;
    background: var(--footer-bg-alt);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer__social-links a:hover {
    background: var(--footer-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Bottom Bar */
.footer__bottom-info {
    border-top: 1px solid var(--footer-border);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--footer-text-muted);
}

.footer__dev-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--footer-text-muted);
}

.footer__dev-info a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Map */
.footer-map-wrap iframe {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    border: none;
    grayscale: 100%;
    transition: all 0.5s ease;
}

.footer-map-wrap iframe:hover {
    grayscale: 0%;
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 50px 0 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom-info {
        flex-direction: column;
        text-align: center;
    }
}

.footer__slogan-bar {
    border-top: 1px solid var(--footer-border);
    padding: 20px 0;
    text-align: center;
}

.footer__slogan-bar p {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-family: Noto Serif Devanagari, serif !important;
    ;
}