
/* Modern Contact Page Styles */
.modern-contact {
    padding: 80px 0 100px;
    background-color: #f8f9fa;
}

.contact-info-wrap {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info-wrap .title {
    font-family: "Jost", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d0d0d;
}

.contact-info-wrap .description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-card:hover {
    background: #fdf0ea; /* Light accent background */
    border-color: #fdf0ea;
    transform: translateX(10px);
}

.info-card .icon-box {
    width: 50px;
    height: 50px;
    background: #0d0d0d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .icon-box {
    background: #0e382a;
    transform: rotate(360deg);
}

.info-card .content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0d0d0d;
}

.info-card .content p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.info-card .content p a {
    color: #666;
    transition: color 0.3s ease;
}

.info-card .content p a:hover {
    color: #0e382a;
}

.social-connect {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.social-connect h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0d0d0d;
}

.social-list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-list li a {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d0d;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-list li a:hover {
    background: #0e382a;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(238, 123, 123, 0.4);
}

.map-wrap {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    filter: grayscale(100%); /* Cool grayscale map effect */
    transition: filter 0.5s ease;
}

.map-wrap:hover iframe {
    filter: grayscale(0%);
}

@media (max-width: 991px) {
    .modern-contact {
        padding: 60px 0;
    }
    
    .contact-info-wrap {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .map-wrap iframe {
        min-height: 400px;
    }
}
