 :root {
            --primary-color: #0d1b2a; /* Midnight blue */
            --accent-color: #ffb400; /* Amber */
            --text-color: #ffffff;
            --secondary-text: #d9e0e6;
        }

        body {
            font-family: 'Inter', sans-serif;
        }

        .main-footer {
            background: var(--primary-color) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="texture" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="5" height="5" fill="%23ffb400" fill-opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(#texture)"/></svg>') repeat;
            color: var(--text-color);
            padding: 35px 20px;
            position: relative;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-row {
            display: flex;
            flex-wrap: nowrap;
            align-items: flex-start;
            justify-content: space-between;
        }

        .footer-col {
            padding: 0 15px;
            flex: 1;
            min-width: 140px;
        }

        .footer-logo-img {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .footer-logo-img:hover {
            transform: scale(1.1);
            filter: brightness(1.2);
        }

        .footer-heading {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 30px;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .footer-col:hover .footer-heading::after {
            width: 50px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
        }

        .footer-col ul li a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-arrow {
            color: var(--accent-color);
            margin-right: 6px;
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-col ul li a:hover .footer-arrow {
            opacity: 1;
        }

        .footer-icon {
            color: var(--accent-color);
            margin-right: 6px;
            font-size: 0.9rem;
        }

        .footer-social p {
            font-size: 0.8rem;
            color: var(--secondary-text);
            line-height: 1.5;
            margin-bottom: 10px;
            max-width: 180px;
        }

        .footer-socials {
            display: flex;
            gap: 8px;
        }

        .footer-socials a {
            background: transparent;
            border: 1px solid var(--accent-color);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }

        .footer-socials a:hover {
            background: var(--accent-color);
            border-color: var(--secondary-text);
            transform: scale(1.1);
        }

        .footer-socials i {
            font-size: 0.9rem;
            color: var(--text-color);
        }

        .footer-socials a:hover i {
            color: var(--primary-color);
        }

        .footer-divider {
            width: 80%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--accent-color), transparent);
            margin: 20px auto;
        }

        .footer-copyright {
            text-align: center;
            font-size: 0.8rem;
            color: var(--secondary-text);
            padding-top: 15px;
        }
        .footer-contact .contact-icon-gradient {
            background: linear-gradient(to right, #ff000e, #e5d118);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 8px;
        }

        /* Link styles */
        .footer-contact ul li a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* Gradient on hover for links */
        .footer-contact ul li a:hover {
            background: linear-gradient(to right, #ff000e, #e5d118);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .footer-row {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-col {
                flex: none;
                margin-bottom: 20px;
                width: 100%;
                max-width: 300px;
            }

            .footer-logo-img {
                max-width: 225px;
            }

            .footer-heading {
                font-size: 0.95rem;
            }

            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-col ul li {
                font-size: 0.8rem;
                justify-content: center;
            }

            .footer-socials {
                justify-content: center;
            }

            .footer-social p {
                margin-left: auto;
                margin-right: auto;
            }

            .footer-arrow {
                margin-right: 5px;
            }
        }

        @media (min-width: 1200px) {
            .main-footer {
                padding: 40px 30px;
            }

            .footer-logo-img {
                max-width: 214px;
            }

            .footer-col {
                padding: 0 20px;
            }

            .footer-heading {
                font-size: 1.1rem;
            }

            .footer-col ul li {
                font-size: 0.9rem;
            }
        }
    