 /* FOOTER – updated address & social */
        .footer {
            background: var(--navy);
            color: #cdddee;
            padding: 60px 0 20px;
            font-size: 0.95rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 40px;
        }
        .footer-col .logo {
            font-size: 1.6rem;
            background: none;
            -webkit-text-fill-color: white;
            color: white;
            margin-bottom: 15px;
            display: inline-block;
        }
        .footer-col p {
            margin: 8px 0;
            line-height: 1.6;
        }
        .footer-col a {
            color: #b5cfdd;
            text-decoration: none;
            transition: 0.2s;
        }
        .footer-col a:hover {
            color: var(--orange);
        }
        .footer-col h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 12px;
        }
        .footer-col ul a {
            display: inline-block;
            position: relative;
        }
        .footer-col ul a:hover {
            transform: translateX(5px);
        }
        .footer-col ul a::before {
            content: '›';
            margin-right: 8px;
            opacity: 0;
            transition: 0.2s;
            display: inline-block;
            color: var(--orange);
        }
        .footer-col ul a:hover::before {
            opacity: 1;
            transform: translateX(3px);
        }
        .social-icons {
            margin-top: 20px;
            display: flex;
            gap: 20px;
        }
        .social-icons i {
            font-size: 1.6rem;
            color: #cdddee;
            transition: 0.2s;
        }
        .social-icons i:hover {
            color: var(--orange);
            transform: translateY(-3px);
        }
        .footer-bottom {
            border-top: 1px solid #2a4b5a;
            padding-top: 20px;
            font-size: 0.85rem;
            text-align: center;
            color: #8faec9;
        }