/* Contact Page Specific Styles */
.contact-image-container {
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8f9fa;
}

.contact-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.contact-image-container:hover .contact-location-image {
    transform: scale(1.03);
}

/* Ensure the image column has proper height on all screens */
@media (min-width: 992px) {
    .contact-image-container {
        min-height: 500px;
    }
}

/* Adjust for mobile view */
@media (max-width: 991.98px) {
    .contact-image-container {
        height: 300px;
        margin-bottom: 30px;
    }
}

/* Contact Info Box Styles */
.contact-info-box {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    padding: 30px;
}

.contact-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

.contact-item:hover {
    background-color: rgba(1, 166, 230, 0.05);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--accent-color);
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-content h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-content p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 767.98px) {
    .contact-info-box {
        padding: 20px !important;
    }
    
    .contact-item {
        padding: 12px 10px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        margin-right: 12px;
        margin-top: 4px;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    .contact-content h5 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-content p {
        font-size: 0.95rem;
    }
}
