/* 서비스 선택 모달 (공통 푸터용) */
#serviceSelectModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

#serviceSelectModal.show {
    display: flex;
}

.service-select-modal-content {
    width: 704px;
    height: 433px;
    padding: 40px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-select-modal-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    text-align: center;
    margin: 0 0 32px;
}

.service-select-modal-cards {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.service-select-modal-card {
    flex: 1;
    padding: 16px 32px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 296px;
    height: 227px;
}

.service-select-modal-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #0A7535;
}

.service-select-modal-card-icon {
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 8px;
}

.service-select-modal-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #000000;
    margin: 0;
}

.service-select-modal-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #6B7280;
    margin: 0;
}

.service-select-modal-footer {
    display: flex;
    justify-content: center;
}

.service-select-modal-close-btn {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    background: #E5E7EB;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.service-select-modal-close-btn:hover {
    background: #D1D5DB;
}
