* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8fafc;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .footer {
            background: linear-gradient(135deg, #3d5073 0%, #2a3f5f 100%);
            position: relative;
            overflow: hidden;
        }

        /* Subtle geometric patterns*/
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(49, 118, 186, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(192, 52, 53, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 40px 60px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        /* Logo Section */
        .footer-logo-section {
            display: flex;
            flex-direction: column;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .footer-logo {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(49, 118, 186, 0.3);
            background: #ffffff;
            padding: 8px;
        }

        .brand-text h2 {
            color: #ffffff;
            font-size: 2rem;
            font-weight: 800;
            margin: 0;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: rgba(239, 234, 225, 0.9);
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 400;
            text-align: justify;
            margin-bottom: 30px;
        }

        /* Section headers */
        .footer-section h3 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(49, 118, 186, 0.2), rgba(61, 80, 115, 0.2));
            padding: 8px 16px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .footer-section h3::before {
            content: '';
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #3176ba, #c03435);
            border-radius: 50%;
        }

        /* link styling */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 16px;
        }

        .footer-links a {
            color: rgba(239, 234, 225, 0.9);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 8px 0;
            position: relative;
        }

        .footer-links a::before {
            content: '';
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #3176ba, #c03435);
            border-radius: 50%;
            transition: all 0.3s ease;
            transform: scale(0.8);
        }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(8px);
            text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
        }

        .footer-links a:hover::before {
            transform: scale(1.2);
            box-shadow: 0 0 12px rgba(49, 118, 186, 0.6);
        }

        /* Contact info styling */
        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            font-size: 1rem;
            color: rgba(239, 234, 225, 0.9);
            font-weight: 500;
        }

        .contact-info i {
            color: #3176ba;
            font-size: 1.1rem;
            margin-top: 2px;
            background: linear-gradient(135deg, rgba(49, 118, 186, 0.2), rgba(61, 80, 115, 0.2));
            padding: 8px;
            border-radius: 8px;
            border: 1px solid rgba(49, 118, 186, 0.3);
        }

        .contact-info a {
            color: rgba(239, 234, 225, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .contact-info a:hover {
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
        }

        .contact-info strong {
            color: #ffffff;
            font-weight: 600;
        }

        /* social media buttons */
        .social-media {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            color: #ffffff;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .social-link:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link.instagram {
            background: linear-gradient(135deg, rgba(234, 37, 40, 0.2), rgba(234, 37, 40, 0.1));
        }

        .social-link.instagram::before {
            background: linear-gradient(135deg, #ea2528, #ff6b6b);
        }

        .social-link.linkedin {
            background: linear-gradient(135deg, rgba(49, 118, 186, 0.2), rgba(49, 118, 186, 0.1));
        }

        .social-link.linkedin::before {
            background: linear-gradient(135deg, #3176ba, #4a90e2);
        }

        .social-link.facebook {
            background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(24, 119, 242, 0.1));
        }

        .social-link.facebook::before {
            background: linear-gradient(135deg, #1877f2, #42a5f5);
        }
        

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-container {
                grid-template-columns: 1.2fr 1fr 1fr;
                gap: 50px;
                padding: 80px 30px 50px;
            }
        }

        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-stats {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 60px 20px 40px;
            }

            .footer-brand {
                gap: 15px;
            }

            .footer-logo {
                width: 50px;
                height: 50px;
            }

            .brand-text h2 {
                font-size: 1.5rem;
            }

            .social-media {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                padding: 40px 15px 30px;
            }

            .footer-section h3 {
                font-size: 0.9rem;
                padding: 6px 12px;
            }
        }