    /* Text color variations */
    .text-white-75 {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .text-white-50 {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    /* Hover effects for links */
    .hover-link {
        transition: all 0.3s ease;
    }

    .hover-link:hover {
        color: #fff !important;
    }

    /* Mobile-specific center alignment */
    @media (max-width: 767.98px) {
        footer .container {
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Perfect center alignment for all content */
        footer .col-12 {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center !important;
            margin-bottom: 2rem;
        }

        footer .col-12 > * {
            text-align: center;
        }

        /* Center logo container */
        footer .d-flex {
            justify-content: center !important;
        }

        /* Center quick links list */
        footer ul.list-unstyled {
            display: inline-block;
            text-align: center;
        }

        footer ul.list-unstyled li {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        footer ul.list-unstyled a {
            display: inline-block;
        }

        /* Center contact sections */
        footer .contact-section {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        footer .contact-section p {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        footer .contact-section i {
            margin-right: 8px;
            flex-shrink: 0;
        }

        footer .contact-section span,
        footer .contact-section a {
            text-align: center;
        }

        /* Typography adjustments */
        footer h5 {
            font-size: 1.5rem;
            text-align: center;
        }

        footer h6 {
            font-size: 1.1rem;
            margin-top: 1rem;
            text-align: center;
        }

        footer p {
            font-size: 0.9rem;
            text-align: center;
        }

        /* Adjust logo size on very small screens */
        @media (max-width: 575.98px) {
            footer img {
                max-height: 150px !important;
            }
        }
    }

    /* Desktop hover effect for links */
    @media (min-width: 768px) {
        .hover-link:hover {
            transform: translateX(3px);
        }
    }

    /* Scroll to top button responsive sizing */
    @media (max-width: 575.98px) {
        #scrollTopBtn {
            width: 40px !important;
            height: 40px !important;
            font-size: 0.9rem;
            margin: 15px !important;
        }
    }

    /* Remove bottom margin from last contact section */
    footer .contact-section:last-of-type {
        margin-bottom: 0 !important;
    }

    /* Ensure icons align properly in center */
    footer i.fas {
        display: inline-block;
        width: 20px;
        text-align: center;
    }