
        .footer {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
            backdrop-filter: blur(30px);
            padding: 4rem 0;
            margin-top: 6rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffeb3b, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin: 0.8rem 0;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            border-radius: 5px;
            font-weight: 500;
        }

        .footer-section a:hover {
            color: white;
            transform: translateX(10px);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo img {
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-input,
.footer-textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-input::placeholder,
.footer-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-input:focus,
.footer-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.footer-textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-submit-btn {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.footer-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.6);
}

.footer-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-message {
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-message.success {
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.4);
    color: #4ecdc4;
}

.footer-message.error {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
}



 

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-section a {
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-contact-form {
        max-width: 100%;
    }
}
