/* ==========================================================================
   CARE-HOSPITAL - CONTACT PAGE STYLES (contact.css)
   ========================================================================== */

.contact-details-section {
    background-color: var(--bg-surface, #ffffff);
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: stretch;
}

.contact-address-card {
    background-color: #F8F9FA;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.contact-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2C2E3B;
    margin: 0;
    line-height: 1.3;
    margin-bottom: 15px;
}

.contact-address-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 27px;
}

.contact-address-label {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2C2E3B;
    margin: 0;
    line-height: 1.3;
}

.contact-address-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #475569;
    margin: 0;
    line-height: 1.5;
    white-space: pre-line;
}

.contact-map-link {
    display: inline-flex;
    margin-top: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #164D92;
    text-decoration: none;
}

.contact-map-link:hover {
    text-decoration: underline;
}

.contact-map-card {
    border-radius: 20px;
    overflow: hidden;
    height: 305px;
    width: 100%;
    border: 1px solid #EDEDED;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 20px;
}

/* Responsive styles */
/* Contact Channels Section */
.contact-channels-section {
    background-color: var(--bg-surface, #ffffff);
    padding-top: 20px;
    padding-bottom: 30px;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    /* Gap on desktop is 23px */
}

.channel-card {
    background-color: #ffffff;
    border: 1px solid #EDEDED;
    border-radius: 20px;
    padding: 24px;
    /* Padding is 24px */
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.channel-icon-wrapper {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.channel-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    /* 16px 600 */
    font-weight: 600;
    color: #2C2E3B;
    margin: 0;
    line-height: 1.3;
}

.channel-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    /* 14px 400 */
    font-weight: 400;
    color: #475569;
    margin: 0;
    line-height: 1.4;
    margin-bottom: 4px;
}

.channel-info-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.channel-info-item {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.channel-info-label {
    font-weight: 600;
    /* 14px 600 */
    color: #164D92;
    /* Color for Email and Phone word is #164D92 */
    margin-right: 4px;
}

.channel-info-value {
    color: #475569;
    text-decoration: none;
    transition: color var(--transition-fast, 0.15s ease);
}

.channel-info-value:hover {
    color: #164D92;
}

/* Responsive styles */
@media (max-width: 991px) {
    .contact-details-grid {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 768px) {
    .contact-details-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-address-card {
        padding: 30px 20px;
        gap: 0;
    }

    .contact-map-card {
        height: 305px;
    }

    .contact-channels-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        /* Gap on mobile is 15px */
    }
}

@media (max-width: 479px) {

    .channel-desc,
    .channel-info-value {
        font-size: 12px;
    }

    .channel-title {
        font-size: 14px;
    }
}