/* ============================================================
   Global front-end styles (extracted from layout-2 inline blocks)
   Order preserved: cookie banner / responsive sidebar / global base
   ============================================================ */

/* ============================================
   GLOBAL HEADING TYPOGRAPHY
   All headings (H1–H6) site-wide use Libre Baskerville.
   !important intentionally overrides the many per-page
   class-based font-family declarations (Outfit, Inter, etc.).
   ============================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Libre Baskerville', serif !important;
}
h1, .h1 { font-weight: 500 !important; }

/* ============================================
       COOKIE CONSENT BANNER
    ============================================ */
    #cookie-consent-banner {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 860px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(0, 144, 149, 0.1);
        padding: 20px 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        z-index: 99999;
        border: 1px solid rgba(0, 144, 149, 0.1);
        flex-wrap: wrap;
    }

    .cookie-icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

    .cookie-content {
        flex: 1;
        min-width: 200px;
    }

    .cookie-title {
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 4px;
        font-size: 1rem;
    }

    .cookie-text {
        font-size: 0.85rem;
        color: #64748b;
        margin: 0;
        line-height: 1.5;
    }

    .cookie-policy-link {
        color: #009095;
        font-weight: 600;
        text-decoration: underline;
    }

    .cookie-actions {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }

    .cookie-btn {
        padding: 10px 22px;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
    }

    .cookie-btn-reject {
        background: #f1f5f9;
        color: #475569;
        border: 1px solid #e2e8f0;
    }

    .cookie-btn-reject:hover {
        background: #e2e8f0;
        color: #1e293b;
    }

    .cookie-btn-accept {
        background: linear-gradient(135deg, #009095, #006e72);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 144, 149, 0.3);
    }

    .cookie-btn-accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0, 144, 149, 0.4);
    }

    .cookie-close {
        position: absolute;
        top: 10px;
        right: 14px;
        background: none;
        border: none;
        font-size: 0.85rem;
        color: #94a3b8;
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 4px;
        transition: color 0.2s ease;
    }

    .cookie-close:hover {
        color: #1e293b;
        background: #f1f5f9;
    }

    /* ============================================
       LOGIN BANNER
    ============================================ */
    .login-banner {
        width: 100%;
        background: linear-gradient(135deg, #009095 0%, #006e72 100%);
        color: #ffffff;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-size: 0.875rem;
        position: relative;
        z-index: 9999;
        flex-wrap: wrap;
    }

    .login-banner-content {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .login-banner-content i {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .login-banner-content span {
        opacity: 0.95;
        font-weight: 400;
    }

    .login-banner-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .login-banner-btn {
        padding: 6px 20px;
        background: #ffffff;
        color: #009095;
        border: none;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .login-banner-btn:hover {
        background: #f0fdfa;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .login-banner-close {
        background: none;
        border: none;
        color: rgba(255,255,255,0.7);
        font-size: 1rem;
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 4px;
        transition: all 0.2s ease;
        line-height: 1;
    }

    .login-banner-close:hover {
        color: #ffffff;
        background: rgba(255,255,255,0.15);
    }

    /* ============================================
       ANIMATIONS
    ============================================ */
    @keyframes slideUpIn {
        from { opacity: 0; transform: translate(-50%, 40px); }
        to   { opacity: 1; transform: translate(-50%, 0);    }
    }

    @keyframes slideDownOut {
        from { opacity: 1; transform: translate(-50%, 0);    }
        to   { opacity: 0; transform: translate(-50%, 40px); }
    }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 600px) {
        #cookie-consent-banner {
            bottom: 0;
            left: 0;
            right: 0;
            transform: none;
            width: 100%;
            border-radius: 16px 16px 0 0;
            flex-direction: column;
            align-items: flex-start;
        }

        @keyframes slideUpIn {
            from { opacity: 0; transform: translateY(100%); }
            to   { opacity: 1; transform: translateY(0);    }
        }

        .cookie-actions {
            width: 100%;
        }

        .cookie-btn {
            flex: 1;
            text-align: center;
        }

        .login-banner {
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }
    }

@media (max-width: 768px) {
    .sidebar-content-1 {
        display: none;
    }

    .sidebar-content {
        width: 100%;
    }

    .mobile-sub-list,
    .mobile-service-list {
        margin-left: 15px;
        padding-top: 10px;
    }

    .mobile-sub-list li,
    .mobile-service-list li {
        display: block !important;
    }
    .nav-column .nav-right {
        display: none;

    }

    .view-all-services-wrapper {
        margin-left: 15px;
        margin-top: 20px;
    }

    /* ── Mobile L2: expandable row with chevron ── */
    .mobile-sub-list .main-category-link-sub:not(.service-group-link):not(.disabled) {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
        touch-action: manipulation;
        padding-right: 4px;
    }

    .mobile-expand-chevron {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 50%;
        background: rgba(0, 144, 149, 0.08);
        color: #009095;
        font-size: 0.65rem;
        transition: transform 0.22s cubic-bezier(0.165, 0.84, 0.44, 1),
                    background 0.22s ease;
    }

    .mobile-sub-expanded > a .mobile-expand-chevron {
        transform: rotate(90deg);
        background: rgba(0, 144, 149, 0.18);
    }

    /* ── Mobile L3: compact modern panel ── */
    .mobile-service-list {
        background: #ffffff !important;
        border: 1px solid #eef2f7 !important;
        margin: 4px 0 8px 0 !important;
        padding: 5px 6px !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
        overflow: hidden;
    }

    .mobile-service-list li {
        display: block !important;
    }

    /* "Visit page →" — slim inline teal link at bottom of panel */
    .mobile-visit-category {
        border-top: 1px solid #f1f5f9;
        margin-top: 4px;
        padding-top: 4px;
    }

    .mobile-visit-category a {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 8px 10px !important;
        font-size: 0.67rem !important;
        font-weight: 700 !important;
        color: #009095 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        min-height: 36px !important;
        touch-action: manipulation;
        transition: background 0.14s ease !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .mobile-visit-category a:active {
        background: rgba(0, 144, 149, 0.07) !important;
    }

    .mobile-visit-category a i {
        font-size: 0.58rem !important;
    }

    /* Service item rows — slim, clean, no heavy card */
    .mobile-service-list .service-item {
        position: relative;
        margin-bottom: 2px;
    }

    .mobile-service-list .service-item > a {
        display: block !important;
        padding: 9px 30px 9px 10px !important;
        font-size: 0.82rem !important;
        font-weight: 500 !important;
        color: #1e293b !important;
        text-decoration: none !important;
        min-height: 40px !important;
        background: transparent !important;
        border-radius: 9px !important;
        border: none !important;
        line-height: 1.35 !important;
        touch-action: manipulation;
        transition: background 0.14s ease !important;
    }

    .mobile-service-list .service-item > a:active {
        background: rgba(0, 144, 149, 0.07) !important;
    }

    /* Subtle chevron */
    .mobile-service-list .service-item::after {
        content: '›';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        line-height: 1;
        color: #009095;
        opacity: 0.3;
        pointer-events: none;
    }

    /* Hairline divider between service items */
    .mobile-service-list .service-item + .service-item > a {
        border-top: 1px solid #f8fafc !important;
        border-radius: 0 0 9px 9px !important;
    }

    /* Empty state */
    .mobile-no-services span {
        display: block;
        padding: 10px 8px;
        font-size: 0.78rem;
        color: #94a3b8;
        font-style: italic;
        text-align: center;
    }
}

/* View All Services Button Styling */
.view-all-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: transparent;
    color: var(--alpha-teal) !important;
    border: 1.5px solid var(--alpha-teal);
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease,
                transform 0.22s ease, box-shadow 0.22s ease;
}

.view-all-services-btn:hover {
    background: var(--alpha-teal);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 109, 119, 0.18);
}

.view-all-services-btn i {
    font-size: 0.75rem;
    transition: transform 0.22s ease;
}

.view-all-services-btn:hover i {
    transform: translateX(5px);
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'roboto';
            background: #f8fafc;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .main-content {
            flex: 1;
            padding: 40px 20px;
            text-align: center;
            color: #334155;
        }

        .main-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #0056a6 0%, #4CAF50 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Premium Footer Styles */
        .premium-footer {
            background: linear-gradient(180deg, #009095 0%, #000000 100%);
            color: #fff;
            font-family: 'Roboto', sans-serif;
            position: relative;
            overflow: hidden;
            padding-top: 60px;
            box-shadow: 0 -10px 30px rgba(0, 86, 166, 0.1);
            margin-right: 0%;

        }

        /* Animated Background Elements */
        .footer-bg-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(76, 175, 80, 0.05);
            animation: float 20s infinite linear;
        }

        .bg-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
            animation-delay: 0s;
        }

        .bg-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: 100px;
            left: -50px;
            animation-delay: -5s;
            animation-duration: 15s;
        }

        .bg-circle:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 20%;
            animation-delay: -10s;
            animation-duration: 25s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(30px, 30px) rotate(120deg);
            }

            66% {
                transform: translate(-20px, 40px) rotate(240deg);
            }
        }

        /* Footer Content */
        .footer-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0 8%;
        }

        /* Top Section */
        .footer-top {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 100px;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Mission Statement */
        .mission-statement h3 {
            font-family: 'Outfit', sans-serif !important;
            font-size: 18px !important;
            font-weight: 600 !important;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .mission-statement h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #4CAF50, #0056a6);
            border-radius: 2px;
        }

        .mission-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #cbd5e1;
            margin-bottom: 25px;
        }

        .mission-highlight {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: rgba(76, 175, 80, 0.1);
            border-left: 4px solid #4CAF50;
            border-radius: 0 8px 8px 0;
            font-weight: 500;
            transition: transform 0.3s ease;
            background: 0.3s ease;
        }

        .mission-highlight:hover {
            transform: translateX(10px);
            background: rgba(76, 175, 80, 0.2);
        }

        .mission-highlight i {
            color: #4CAF50;
            font-size: 1.2rem;
        }

        /* Quick Links Grid */
        .quick-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .links-column h4 {
            font-family: 'Outfit', sans-serif !important;
            font-size: 18px !important;
            font-weight: 600 !important;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            padding-bottom: 8px;
        }

        .links-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: #4CAF50;
            transition: width 0.3s ease;
        }

        .links-column:hover h4::after {
            width: 40px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
            opacity: 0;
            transform: translateX(-10px);
            animation: slideIn 0.5s forwards;
        }

        .footer-links li:nth-child(1) {
            animation-delay: 0.1s;
        }

        .footer-links li:nth-child(2) {
            animation-delay: 0.2s;
        }

        .footer-links li:nth-child(3) {
            animation-delay: 0.3s;
        }

        .footer-links li:nth-child(4) {
            animation-delay: 0.4s;
        }

        .footer-links li:nth-child(5) {
            animation-delay: 0.5s;
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            padding: 4px 0;
        }

        .footer-links a::before {
            content: '\2192';
            color: #4CAF50;
            font-weight: bold;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        /* Middle Section */
        .footer-middle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
            gap: 30px;
        }

        /* Logo */
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0056a6, #4CAF50);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 86, 166, 0.3);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .logo-icon:hover {
            transform: rotateY(180deg);
            box-shadow: 0 8px 25px rgba(0, 86, 166, 0.4);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Policies */
        .footer-policies {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .policy-link {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .policy-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #4CAF50, #0056a6);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .policy-link:hover {
            color: #fff;
        }

        .policy-link:hover::after {
            width: 100%;
        }

        /* Social Media */
        .social-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .social-label {
            font-size: 0.9rem;
            color: #94a3b8;
            font-weight: 500;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cbd5e1;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.7s ease;
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .social-icon:hover {
            transform: translateY(-5px) rotate(5deg);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .social-icon:nth-child(1):hover {
            background: #0077b5;
        }

        /* X / Twitter */
        .social-icon:nth-child(2):hover {
            background: #1da1f2;
        }

        /* Facebook */
        .social-icon:nth-child(3):hover {
            background: #4267B2;
        }

        /* Instagram */
        .social-icon:nth-child(4):hover {
            background: #E4405F;
        }

        /*

        /* Bottom Section */
        .footer-bottom {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 0;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 20px;
            position: relative;
            padding-bottom: 100px !important;
        }

        .legal-text {
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.6;
            width: 100%;
            text-align: center;
            margin: 0 auto;
        }

        .legal-link {
            color: #4CAF50;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .legal-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #4CAF50;
            transition: width 0.3s ease;
        }

        .legal-link:hover {
            color: #fff;
        }

        .legal-link:hover::after {
            width: 100%;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: nowrap;   /* keep email + phone on one line on all computer screens */
        }

        .contact-email {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            background: rgba(76, 175, 80, 0.1);
            border-radius: 6px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .contact-email:hover {
            background: rgba(76, 175, 80, 0.2);
            transform: translateY(-2px);
        }

        .contact-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(0, 86, 166, 0.1);
            border-radius: 6px;
            font-weight: 500;
            color: #ffffff;
            text-decoration: none;
            white-space: nowrap;
        }
        .contact-phone:hover { color: #ffffff; text-decoration: none; }

        .contact-phone i {
            color: #0056a6;
        }

        /* Back to Top Button INSIDE Footer */
        .footer-go-to-top {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 100;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .footer-go-to-top.show {
            opacity: 1;
            transform: translateY(0);
        }

        .go-to-top-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0056a6 0%, #4CAF50 100%);
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 86, 166, 0.4);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .go-to-top-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4CAF50 0%, #0056a6 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 50%;
        }

        .go-to-top-btn:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 35px rgba(0, 86, 166, 0.6);
        }

        .go-to-top-btn:hover::before {
            opacity: 1;
        }

        .go-to-top-btn i {
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease;
        }

        .go-to-top-btn:hover i {
            transform: translateY(-3px);
        }

        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 8px 25px rgba(0, 86, 166, 0.4);
            }

            50% {
                box-shadow: 0 8px 30px rgba(0, 86, 166, 0.7);
            }

            100% {
                box-shadow: 0 8px 25px rgba(0, 86, 166, 0.4);
            }
        }

        .go-to-top-btn.pulse {
            animation: pulse 2s infinite;
        }

        /* Tooltip */
        .go-to-top-btn::after {
            content: 'Scroll to Top';
            position: absolute;
            bottom: 100%;
            right: 50%;
            transform: translateX(50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
            margin-bottom: 10px;
        }

        .go-to-top-btn:hover::after {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .mission-statement h3 {
                font-size: 1.6rem;
            }

            .footer-go-to-top {
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 768px) {
            .footer-middle {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }

            .footer-policies {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 25px;
                padding-bottom: 90px !important;
            }

            .contact-info {
                justify-content: center;
            }

            /* Hide the full About AHG + Resources block on mobile */
            .quick-links-grid {
                display: none;
            }

            .go-to-top-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .footer-policies {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .social-section {
                flex-direction: column;
                gap: 15px;
            }

            /* allow email + phone to stack only on very small phones to avoid overflow */
            .contact-info {
                flex-wrap: wrap;
                justify-content: center;
            }

            .mission-statement h3 {
                font-size: 1.4rem;
            }

            .logo-text {
                font-size: 1.5rem;
            }

            .footer-go-to-top {
                bottom: 15px;
                right: 15px;
            }
        }

        /* Particle Animation */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(76, 175, 80, 0.1);
            border-radius: 50%;
            animation: particleFloat 15s infinite linear;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }
