 /* --- FOOTER --- */
        footer {
            background-color: var(--pmii-dark);
            color: rgba(255, 255, 255, 0.8);
            padding-top: 80px;
            border-top: 5px solid var(--pmii-yellow);
        }
        footer h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
        }
        footer h5::after {
            content: '';
            width: 30px;
            height: 3px;
            background: var(--pmii-yellow);
            position: absolute;
            bottom: -8px;
            left: 0;
        }
        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: 0.3s;
            display: block;
            margin-bottom: 12px;
        }
        .footer-link:hover {
            color: var(--pmii-yellow);
            padding-left: 8px;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: 0.3s;
            text-decoration: none;
        }
        .social-icon:hover {
            background: var(--pmii-yellow);
            color: var(--pmii-blue);
            transform: translateY(-5px);
        }
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .copyright {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            margin-top: 60px;
            font-size: 0.9rem;
        }