/* ===================================
   Modern Contact Footer Section
   =================================== */

.modern-contact-footer {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modern-contact-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.contact-footer-content {
    position: relative;
    z-index: 2;
}

.modern-contact-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    height: 100%;
}

.modern-contact-footer .contact-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modern-contact-footer .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.modern-contact-footer .contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.modern-contact-footer .contact-details h5 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modern-contact-footer .contact-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.modern-contact-footer .contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.modern-contact-footer .contact-link:hover {
    color: white;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.modern-contact-footer .contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.3s ease;
}

.modern-contact-footer .contact-link:hover::after {
    width: 100%;
}

/* Responsive Design for Contact Footer */
@media (max-width: 768px) {
    .modern-contact-footer {
        padding: 60px 0;
    }

    .modern-contact-footer .contact-item {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .modern-contact-footer .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .modern-contact-footer .contact-details h5 {
        font-size: 1.2rem;
    }

    .modern-contact-footer .contact-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .modern-contact-footer {
        padding: 40px 0;
    }

    .modern-contact-footer .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }

    .modern-contact-footer .contact-icon {
        margin: 0 auto;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .modern-contact-footer .contact-details h5 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
}