 .mediadost-footer {
            background: #01031b;
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 60px 0 30px;
            position: relative;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
            align-items: start;
        }

        .footer-brand {
            text-align: left;
        }

        .footer-logo {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .footer-tagline {
            font-size: 1rem;
            line-height: 1.6;
            color: #b8c5d6;
            margin-bottom: 25px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #4facfe;
            font-weight: 600;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            border-radius: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li a {
            color: #b8c5d6;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            padding: 8px 16px 8px 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .footer-section ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .footer-section ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-section ul li a:hover {
            color: #4facfe;
            transform: translateY(-2px);
            text-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
            background: rgba(79, 172, 254, 0.05);
        }

        .footer-section ul li a:hover::before {
            left: 100%;
        }

        .footer-section ul li a:hover::after {
            width: 100%;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            fill: #4facfe;
            flex-shrink: 0;
        }

        .contact-item a {
            color: #b8c5d6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #4facfe;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #8a9bb0;
            font-size: 0.9rem;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-container {
                padding: 0 30px;
            }

            .footer-content {
                gap: 35px;
            }
        }

        @media (max-width: 1024px) {
            .footer-container {
                padding: 0 25px;
            }

            .footer-content {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .mediadost-footer {
                padding: 50px 0 25px;
            }

            .footer-container {
                padding: 0 20px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }

            .footer-brand {
                grid-column: 1 / -1;
                text-align: left;
                margin-bottom: 20px;
                padding-bottom: 25px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-logo {
                font-size: 2rem;
            }


            .footer-tagline {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .social-media {
                justify-content: flex-start;
                gap: 12px;
            }
        }

        @media (max-width: 640px) {
            .mediadost-footer {
                padding: 40px 0 25px;
            }

            .footer-container {
                padding: 0 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-brand {
                text-align: left;
                margin-bottom: 15px;
                padding-bottom: 20px;
            }

            .footer-logo {
                font-size: 2rem;
            }

            .footer-tagline {
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .contact-info {
                padding: 20px;
            }

            .social-media {
                justify-content: flex-start;
                gap: 12px;
            }

            .social-link {
                width: 42px;
                height: 42px;
            }

            .social-icon {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 480px) {
            .mediadost-footer {
                padding: 35px 0 20px;
            }

            .footer-container {
                padding: 0 16px;
            }

            .footer-brand {
                margin-bottom: 25px;
                padding-bottom: 20px;
            }

            .footer-logo {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }

            .footer-tagline {
                font-size: 0.9rem;
                line-height: 1.4;
                margin-bottom: 18px;
            }

            .footer-section h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            .footer-section ul li a {
                font-size: 0.9rem;
            }

            .contact-info {
                padding: 16px;
            }

            .contact-item {
                font-size: 0.9rem;
                margin-bottom: 12px;
            }

            .social-media {
                gap: 10px;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .social-icon {
                width: 16px;
                height: 16px;
            }

            .footer-bottom {
                padding-top: 20px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 360px) {
            .footer-container {
                padding: 0 12px;
            }

            .footer-logo {
                font-size: 1.6rem;
            }

            .footer-tagline {
                font-size: 0.85rem;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .contact-info {
                padding: 12px;
            }

            .social-media {
                gap: 8px;
            }

            .social-link {
                width: 36px;
                height: 36px;
            }

            .social-icon {
                width: 14px;
                height: 14px;
            }
        }

        /* Animation for footer reveal */
        .mediadost-footer {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Social Media Styles */
        .social-media {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            background: #4facfe;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
            border-color: #4facfe;
        }

        .social-icon {
            width: 20px;
            height: 20px;
            fill: #b8c5d6;
            transition: fill 0.3s ease;
        }

        .social-link:hover .social-icon {
            fill: #ffffff;
        }

        /* Hover effect for sections */
        .footer-section {
            transition: transform 0.3s ease;
        }

        .footer-section:hover {
            transform: translateY(-2px);
        }