/* Premium Footer Redesign */
.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding-top: 70px;
    padding-bottom: 30px;
    margin-top: 60px;
    position: relative;
    border-top: 4px solid var(--primary-color, #3b82f6);
}

/* Titles */
.main-footer .footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: -0.5px;
}

.main-footer .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color, #3b82f6);
    border-radius: 2px;
}

/* Links */
.main-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-links li {
    margin-bottom: 12px;
}

.main-footer .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
    position: relative;
}

.main-footer .footer-links a::before {
    content: '›';
    margin-right: 5px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: var(--primary-color, #3b82f6);
}

.main-footer .footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.main-footer .footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Logo & Desc */
.main-footer .logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.main-footer p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* Newsletter Input */
.main-footer input[type="email"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.main-footer input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.main-footer button {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.main-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Social Icons */
.main-footer .social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.main-footer .social-icons a:hover {
    background: var(--primary-color, #3b82f6);
    color: white !important;
    transform: scale(1.1);
}

/* Footer Bottom */
.main-footer .footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-footer {
        padding-top: 40px;
        text-align: center;
    }

    .main-footer .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .main-footer form {
        justify-content: center;
    }

    .main-footer .logo {
        display: flex;
        justify-content: center;
    }

    .main-footer p {
        margin-left: auto;
        margin-right: auto;
    }
}